blob: 09f0be93105a78e16d3c0e4e62b4e9c77aa50bcb [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
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001131ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1132M: Kyungmin Park <kyungmin.park@samsung.com>
1133M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1134L: linux-arm-kernel@lists.infradead.org
1135L: linux-media@vger.kernel.org
1136S: Maintained
1137F: arch/arm/plat-s5p/dev-fimc*
1138F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001139F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001140
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001141ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1142M: Kyungmin Park <kyungmin.park@samsung.com>
1143M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001144M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001145L: linux-arm-kernel@lists.infradead.org
1146L: linux-media@vger.kernel.org
1147S: Maintained
1148F: arch/arm/plat-s5p/dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001149F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001150
1151ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1152M: Kyungmin Park <kyungmin.park@samsung.com>
1153M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1154L: linux-arm-kernel@lists.infradead.org
1155L: linux-media@vger.kernel.org
1156S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001157F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001158
Paul Mundtd48d38e2010-02-08 12:50:24 +09001159ARM/SHMOBILE ARM ARCHITECTURE
1160M: Paul Mundt <lethal@linux-sh.org>
1161M: Magnus Damm <magnus.damm@gmail.com>
1162L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001163W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001164Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtd22c0e52010-11-10 18:09:14 +09001165T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest
Paul Mundtd48d38e2010-02-08 12:50:24 +09001166S: Supported
1167F: arch/arm/mach-shmobile/
1168F: drivers/sh/
1169
Dinh Nguyen66314222012-07-18 16:07:18 -06001170ARM/SOCFPGA ARCHITECTURE
1171M: Dinh Nguyen <dinguyen@altera.com>
1172S: Maintained
1173F: arch/arm/mach-socfpga/
1174
1175ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1176M: Dinh Nguyen <dinguyen@altera.com>
1177S: Maintained
1178F: drivers/clk/socfpga/
1179
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001180ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001181M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001182L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001183S: Maintained
1184
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001185ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001186M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001187L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1188S: Maintained
1189
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001190ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001191M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001192L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001193S: Maintained
1194
wanzongshun98ad6e32009-02-13 06:04:32 +01001195ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001196M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001197L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001198W: http://www.mcuos.com
1199S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001200F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001201F: drivers/input/keyboard/w90p910_keypad.c
1202F: drivers/input/touchscreen/w90p910_ts.c
1203F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001204F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001205F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001206F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001207F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001208F: drivers/usb/host/ehci-w90x900.c
1209F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001210
Linus Walleij54274d72010-04-04 10:58:03 +01001211ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001212M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001213L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1214S: Supported
1215F: arch/arm/mach-u300/
1216F: drivers/i2c/busses/i2c-stu300.c
1217F: drivers/rtc/rtc-coh901331.c
1218F: drivers/watchdog/coh901327_wdt.c
1219F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001220F: drivers/mfd/ab3100*
1221F: drivers/rtc/rtc-ab3100.c
1222F: drivers/rtc/rtc-coh901331.c
1223T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001224
Linus Walleij87572882010-12-22 09:18:29 +01001225ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001226M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001227M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001228L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1229S: Maintained
1230F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001231F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001232F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001233F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001234F: drivers/mfd/abx500*
1235F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001236F: drivers/mfd/dbx500*
1237F: drivers/mfd/db8500*
1238F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001239F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001240F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001241T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001242
Russell Kingd4275352009-04-16 14:05:27 +01001243ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001244M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001245L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001246W: http://www.arm.linux.org.uk/
1247S: Maintained
1248F: arch/arm/vfp/
1249
Marek Vasute66b6d82010-03-26 06:51:32 +01001250ARM/VOIPAC PXA270 SUPPORT
1251M: Marek Vasut <marek.vasut@gmail.com>
1252L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1253S: Maintained
1254F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001255F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001256
Tony Prisk04529fe2012-07-24 04:19:37 +12001257ARM/VT8500 ARM ARCHITECTURE
1258M: Tony Prisk <linux@prisktech.co.nz>
1259L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1260S: Maintained
1261F: arch/arm/mach-vt8500/
1262F: drivers/video/vt8500lcdfb.*
1263F: drivers/video/wm8505fb*
1264F: drivers/video/wmt_ge_rops.*
1265F: drivers/tty/serial/vt8500_serial.c
1266F: drivers/rtc/rtc-vt8500-c
1267
Marek Vasute66b6d82010-03-26 06:51:32 +01001268ARM/ZIPIT Z2 SUPPORT
1269M: Marek Vasut <marek.vasut@gmail.com>
1270L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1271S: Maintained
1272F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001273F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001274
Catalin Marinas38074222012-03-05 11:49:34 +00001275ARM64 PORT (AARCH64 ARCHITECTURE)
1276M: Catalin Marinas <catalin.marinas@arm.com>
1277L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1278S: Maintained
1279F: arch/arm64/
1280
George Josephd58de032010-03-05 22:17:25 +01001281ASC7621 HARDWARE MONITOR DRIVER
1282M: George Joseph <george.joseph@fairview5.com>
1283L: lm-sensors@lm-sensors.org
1284S: Maintained
1285F: Documentation/hwmon/asc7621
1286F: drivers/hwmon/asc7621.c
1287
Corentin Charyb229ece2011-02-26 10:20:40 +01001288ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001289M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05001291L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001292W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001294F: drivers/platform/x86/asus*.c
1295F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001297ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001298M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001299L: lm-sensors@lm-sensors.org
1300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001301F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001302
Andrew Morton953a6472008-11-06 12:53:28 -08001303ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001304M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001305W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001307F: Documentation/crypto/async-tx-api.txt
1308F: crypto/async_tx/
1309F: drivers/dma/
1310F: include/linux/dmaengine.h
1311F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001312
Wolfram Sanga1867d32009-09-18 22:45:51 +02001313AT24 EEPROM DRIVER
1314M: Wolfram Sang <w.sang@pengutronix.de>
1315L: linux-i2c@vger.kernel.org
1316S: Maintained
1317F: drivers/misc/eeprom/at24.c
1318F: include/linux/i2c/at24.h
1319
Randy Dunlape7839f22008-10-12 16:11:45 -07001320ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001321M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001322W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001324F: Documentation/aoe/
1325F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Joe Perches9a10a872010-12-01 09:37:55 -08001327ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001328M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001329L: linux-wireless@vger.kernel.org
1330S: Supported
1331F: drivers/net/wireless/ath/*
1332
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001333ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001334M: Jiri Slaby <jirislaby@gmail.com>
1335M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001336M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001337L: linux-wireless@vger.kernel.org
1338L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001339W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001340S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001341F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001342
Kalle Valo12e62d62011-09-13 10:21:25 +03001343ATHEROS ATH6KL WIRELESS DRIVER
1344M: Kalle Valo <kvalo@qca.qualcomm.com>
1345L: linux-wireless@vger.kernel.org
1346W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1347T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1348S: Supported
1349F: drivers/net/wireless/ath/ath6kl/
1350
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001351ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001352M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1353M: Jouni Malinen <jouni@qca.qualcomm.com>
1354M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1355M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001356L: linux-wireless@vger.kernel.org
1357L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001358W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001359S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001360F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001361
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001362CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1363M: Christian Lamparter <chunkeey@googlemail.com>
1364L: linux-wireless@vger.kernel.org
1365W: http://wireless.kernel.org/en/users/Drivers/carl9170
1366S: Maintained
1367F: drivers/net/wireless/ath/carl9170/
1368
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001369ATK0110 HWMON DRIVER
1370M: Luca Tettamanti <kronos.it@gmail.com>
1371L: lm-sensors@lm-sensors.org
1372S: Maintained
1373F: drivers/hwmon/asus_atk0110.c
1374
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001375ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001376M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001378F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001379
Chris Snook7ae115b2008-09-09 03:26:57 -04001380ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001381M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001382M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001383L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001384W: http://sourceforge.net/projects/atl1
1385W: http://atl1.sourceforge.net
1386S: Maintained
Jeff Kirsher2b133ad62011-05-20 06:55:16 -07001387F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001390M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001391L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001392L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393W: http://linux-atm.sourceforge.net
1394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001395F: drivers/atm/
1396F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Pierre Ossman272f1332007-05-14 21:25:26 +02001398ATMEL AT91 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001399M: Ludovic Desroches <ludovic.desroches@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001400L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001401W: http://www.atmel.com/products/AT91/
1402W: http://www.at91.com/
1403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001404F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001405
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001406ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001407M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001408S: Maintained
1409F: drivers/mmc/host/atmel-mci.c
1410F: drivers/mmc/host/atmel-mci-regs.h
1411
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001412ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001413M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001414S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001415F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001416
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001417ATMEL DMA DRIVER
1418M: Nicolas Ferre <nicolas.ferre@atmel.com>
1419L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1420S: Supported
1421F: drivers/dma/at_hdmac.c
1422F: drivers/dma/at_hdmac_regs.h
1423F: arch/arm/mach-at91/include/mach/at_hdmac.h
1424
Josh Wu15515542012-03-23 17:56:29 +08001425ATMEL ISI DRIVER
1426M: Josh Wu <josh.wu@atmel.com>
1427L: linux-media@vger.kernel.org
1428S: Supported
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001429F: drivers/media/platform/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001430F: include/media/atmel-isi.h
1431
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001432ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001433M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001434L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001436F: drivers/video/atmel_lcdfb.c
1437F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001438
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001439ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001440M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001441S: Supported
Jeff Kirsher9f2f381f2011-06-18 01:52:36 -07001442F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001443
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001444ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001445M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001446S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001447F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001448
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001449ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1450M: Nicolas Ferre <nicolas.ferre@atmel.com>
1451L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1452S: Supported
1453F: drivers/misc/atmel_tclib.c
1454F: drivers/clocksource/tcb_clksrc.c
1455
Josh Wuff2675d2012-03-23 17:56:55 +08001456ATMEL TSADCC DRIVER
1457M: Josh Wu <josh.wu@atmel.com>
1458L: linux-input@vger.kernel.org
1459S: Supported
1460F: drivers/input/touchscreen/atmel_tsadcc.c
1461
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001462ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001463M: Nicolas Ferre <nicolas.ferre@atmel.com>
1464L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001465S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001466F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001469M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001470L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471W: http://www.thekelleys.org.uk/atmel
1472W: http://atmelwlandriver.sourceforge.net/
1473S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001474F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Chris Wrighta92b7b82005-07-07 18:12:23 -07001476AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001477M: Al Viro <viro@zeniv.linux.org.uk>
1478M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001479L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001480W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001481T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001483F: include/linux/audit.h
1484F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001485
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001486AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001487M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001488W: http://miguelojeda.es/auxdisplay.htm
1489W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001491F: drivers/auxdisplay/
1492F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001493
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001494AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001495M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1496M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001497W: http://www.atmel.com/products/AVR32/
1498W: http://avr32linux.org/
1499W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001501F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001502
1503AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001504M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1505M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001507F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001510M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001512W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001514F: include/linux/ax25.h
1515F: include/net/ax25.h
1516F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001518AZ6007 DVB DRIVER
1519M: Mauro Carvalho Chehab <mchehab@redhat.com>
1520L: linux-media@vger.kernel.org
1521W: http://linuxtv.org
1522T: git git://linuxtv.org/media_tree.git
1523S: Maintained
1524F: drivers/media/usb/dvb-usb-v2/az6007.c
1525
Hans Verkuil67773762012-11-23 07:09:23 -03001526AZTECH FM RADIO RECEIVER DRIVER
1527M: Hans Verkuil <hverkuil@xs4all.nl>
1528L: linux-media@vger.kernel.org
1529T: git git://linuxtv.org/media_tree.git
1530W: http://linuxtv.org
1531S: Maintained
1532F: drivers/media/radio/radio-aztech*
1533
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001534B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001535M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001536L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001537L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001538W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001540F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001541
1542B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001543M: Larry Finger <Larry.Finger@lwfinger.net>
1544M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001545L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001546L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001547W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001549F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001550
Richard Purdie300abeb2007-02-07 22:21:07 +00001551BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001552M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001554F: drivers/video/backlight/
1555F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001556
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001557BATMAN ADVANCED
1558M: Marek Lindner <lindner_marek@yahoo.de>
1559M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001560M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001561L: b.a.t.m.a.n@lists.open-mesh.org
1562W: http://www.open-mesh.org/
1563S: Maintained
1564F: net/batman-adv/
1565
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001566BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001567M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001568L: linux-hams@vger.kernel.org
1569W: http://www.baycom.org/~tom/ham/ham.html
1570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001571F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001572
1573BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001574S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001575F: Documentation/filesystems/befs.txt
1576F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001577
1578BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001579M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001581F: Documentation/filesystems/bfs.txt
1582F: fs/bfs/
1583F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001584
Bryan Wu1394f032007-05-06 14:50:22 -07001585BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001586M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001587L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001588W: http://blackfin.uclinux.org
1589S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001590F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001591
Bryan Wue190d6b2007-07-17 14:43:44 +08001592BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001593L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001594W: http://blackfin.uclinux.org
1595S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001596F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001597
Mike Frysinger566da5b2007-06-11 15:31:30 +08001598BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001599M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001600L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001601W: http://blackfin.uclinux.org
1602S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001603F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001604
Mike Frysinger936ed492010-03-10 15:20:38 -08001605BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001606M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001607L: uclinux-dist-devel@blackfin.uclinux.org
1608W: http://blackfin.uclinux.org
1609S: Supported
1610F: drivers/mmc/host/bfin_sdh.c
1611
Bryan Wu1394f032007-05-06 14:50:22 -07001612BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001613M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001614L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001615W: http://blackfin.uclinux.org
1616S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001617F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001618
Bryan Wu1e6d3202007-07-15 02:50:02 +08001619BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001620M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001621L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001622W: http://blackfin.uclinux.org
1623S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001624F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001625
Bryan Wud24ecfc2007-05-01 23:26:32 +02001626BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001627M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001628L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001629W: http://blackfin.uclinux.org/
1630S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001631F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001632
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001633BLINKM RGB LED DRIVER
1634M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1635S: Maintained
1636F: drivers/leds/leds-blinkm.c
1637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001639M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001640T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001642F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Joern Engel2b54aae2008-02-06 01:38:02 -08001644BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001645M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001646L: linux-mtd@lists.infradead.org
1647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001648F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001649
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001650BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001651M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001652M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001653M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001654L: linux-bluetooth@vger.kernel.org
1655W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001656T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1657T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001659F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001662M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001663M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001664M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001665L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001666W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001667T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1668T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001670F: net/bluetooth/
1671F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001674M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001675M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001676L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001677W: http://sourceforge.net/projects/bonding/
1678S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001679F: drivers/net/bonding/
1680F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Gary Zambrano39105892006-06-22 17:26:20 -07001682BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001683M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001684L: netdev@vger.kernel.org
1685S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001686F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001687
Michael Chan948c51e2006-06-04 02:51:39 -07001688BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001689M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001690L: netdev@vger.kernel.org
1691S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001692F: drivers/net/ethernet/broadcom/bnx2.*
1693F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001694
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001695BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001696M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001697L: netdev@vger.kernel.org
1698S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001699F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001700
Stephen Warrenf680f252012-09-15 00:18:54 -06001701BROADCOM BCM2835 ARM ARCHICTURE
1702M: Stephen Warren <swarren@wwwdotorg.org>
1703L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1704T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1705S: Maintained
1706F: arch/arm/mach-bcm2835/
1707F: arch/arm/boot/dts/bcm2835*
1708F: arch/arm/configs/bcm2835_defconfig
1709F: drivers/*/*bcm2835*
1710
Michael Chan948c51e2006-06-04 02:51:39 -07001711BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001712M: Matt Carlson <mcarlson@broadcom.com>
1713M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001714L: netdev@vger.kernel.org
1715S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001716F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001717
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001718BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1719M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001720M: Roland Vossen <rvossen@broadcom.com>
1721M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001722M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
1723M: Kan Yan <kanyan@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001724L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001725L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001726S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001727F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001728
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001729BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1730M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1731L: linux-scsi@vger.kernel.org
1732S: Supported
1733F: drivers/scsi/bnx2fc/
1734
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001735BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1736M: Rafał Miłecki <zajec5@gmail.com>
1737L: linux-wireless@vger.kernel.org
1738S: Maintained
1739F: drivers/bcma/
1740F: include/linux/bcma/
1741
Jing Huang7725ccf2009-09-23 17:46:15 -07001742BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001743M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001744L: linux-scsi@vger.kernel.org
1745S: Supported
1746F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001747
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001748BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1749M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001750L: netdev@vger.kernel.org
1751S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001752F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001753
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001754BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001755M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001756L: linux-scsi@vger.kernel.org
1757S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001758F: block/bsg.c
1759F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001760
Clemens Ladischaf399172011-01-10 16:32:54 +01001761BT87X AUDIO DRIVER
1762M: Clemens Ladisch <clemens@ladisch.de>
1763L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1764T: git git://git.alsa-project.org/alsa-kernel.git
1765S: Maintained
1766F: Documentation/sound/alsa/Bt87x.txt
1767F: sound/pci/bt87x.c
1768
Michael Bueschff1d5c22008-07-25 01:46:10 -07001769BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001770M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001771W: http://bu3sch.de/btgpio.php
1772S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001773F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001774
Joe Percheseb1eb042009-01-21 10:49:16 -05001775BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001776M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001777L: linux-btrfs@vger.kernel.org
1778W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001779Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001780T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001782F: Documentation/filesystems/btrfs.txt
1783F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001784
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001786M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001787L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001788W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001789T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001790S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001791F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001792F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Clemens Ladischaf399172011-01-10 16:32:54 +01001794C-MEDIA CMI8788 DRIVER
1795M: Clemens Ladisch <clemens@ladisch.de>
1796L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1797T: git git://git.alsa-project.org/alsa-kernel.git
1798S: Maintained
1799F: sound/pci/oxygen/
1800
Mark Salter21413552011-10-04 11:21:42 -04001801C6X ARCHITECTURE
1802M: Mark Salter <msalter@redhat.com>
1803M: Aurelien Jacquiot <a-jacquiot@ti.com>
1804L: linux-c6x-dev@linux-c6x.org
1805W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1806S: Maintained
1807F: arch/c6x/
1808
David Howellsa5432f5a2009-04-20 15:46:45 +01001809CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001810M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01001811L: linux-cachefs@redhat.com
1812S: Supported
1813F: Documentation/filesystems/caching/cachefiles.txt
1814F: fs/cachefiles/
1815
Hans Verkuilc815ca32012-11-23 07:05:54 -03001816CADET FM/AM RADIO RECEIVER DRIVER
1817M: Hans Verkuil <hverkuil@xs4all.nl>
1818L: linux-media@vger.kernel.org
1819T: git git://linuxtv.org/media_tree.git
1820W: http://linuxtv.org
1821S: Maintained
1822F: drivers/media/radio/radio-cadet*
1823
Jonathan Corbet77d51402007-03-22 19:44:17 -03001824CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001825M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001826L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001827T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001829F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001830F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001831
Joe Perches201b6ba2010-09-07 20:33:24 +00001832CAIF NETWORK LAYER
1833M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1834L: netdev@vger.kernel.org
1835S: Supported
1836F: Documentation/networking/caif/
1837F: drivers/net/caif/
1838F: include/linux/caif/
1839F: include/net/caif/
1840F: net/caif/
1841
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001842CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001843M: Muli Ben-Yehuda <muli@il.ibm.com>
1844M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001845L: discuss@x86-64.org
1846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001847F: arch/x86/kernel/pci-calgary_64.c
1848F: arch/x86/kernel/tce_64.c
1849F: arch/x86/include/asm/calgary.h
1850F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001851
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001852CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001853M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001854L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001855W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001856T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001857S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001858F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001859F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001860F: include/linux/can/core.h
1861F: include/linux/can/bcm.h
1862F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001863F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001864
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001865CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001866M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001867M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001868L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001869W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001870T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001871S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001872F: drivers/net/can/
1873F: include/linux/can/dev.h
1874F: include/linux/can/error.h
1875F: include/linux/can/netlink.h
1876F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001877
James Morris95d16c72012-03-16 12:05:48 +11001878CAPABILITIES
1879M: Serge Hallyn <serge.hallyn@canonical.com>
1880L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001881S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001882F: include/linux/capability.h
1883F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001884F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001885F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001886
Arnd Bergmannb8154542008-05-16 11:10:59 +02001887CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001888M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001889L: linuxppc-dev@lists.ozlabs.org
1890L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001891W: http://www.ibm.com/developerworks/power/cell/
1892S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001893F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001894F: arch/powerpc/include/asm/spu*.h
1895F: arch/powerpc/oprofile/*cell*
1896F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001897
Sage Weil9030aaf2009-10-06 11:31:15 -07001898CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001899M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001900L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001901W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001902T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001903S: Supported
1904F: Documentation/filesystems/ceph.txt
1905F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001906F: net/ceph
1907F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001908F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001909
David Vrabel18332a82008-09-17 16:34:44 +01001910CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001911L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001912S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001913F: Documentation/usb/WUSB-Design-overview.txt
1914F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001915F: drivers/usb/host/hwa-hc.c
1916F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001917F: drivers/usb/wusbcore/
1918F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001919
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001920CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001921M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001922W: http://miguelojeda.es/auxdisplay.htm
1923W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001925F: drivers/auxdisplay/cfag12864b.c
1926F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001927
1928CFAG12864BFB LCD FRAMEBUFFER 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/cfag12864bfb.c
1934F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001935
Johannes Berg704232c2007-04-23 12:20:05 -07001936CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001937M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001938L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001939W: http://wireless.kernel.org/
1940T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1941T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001943F: include/linux/nl80211.h
1944F: include/net/cfg80211.h
1945F: net/wireless/*
1946X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001947
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001948CHAR and MISC DRIVERS
1949M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001950M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001951T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001952S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001953F: drivers/char/*
1954F: drivers/misc/*
1955
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001956CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001957M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001958S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001959F: scripts/checkpatch.pl
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001960
Harry Weif8407f262011-02-25 14:44:15 -08001961CHINESE DOCUMENTATION
1962M: Harry Wei <harryxiyou@gmail.com>
1963L: xiyoulinuxkernelgroup@googlegroups.com
1964L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1965S: Maintained
1966F: Documentation/zh_CN/
1967
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001968CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1969M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1970L: linux-usb@vger.kernel.org
1971S: Maintained
1972F: drivers/usb/chipidea/
1973
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001974CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001975M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001976M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001977M: Neel Patel <neepatel@cisco.com>
1978M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001979S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001980F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001981
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001982CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001983M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001984L: netdev@vger.kernel.org
1985S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001986F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001987
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001988CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001989M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001990L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001992F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001993
Timur Tabid9e9d822008-04-24 08:45:26 +10001994CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001995M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001996L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001997S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001998F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001999
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002000CLEANCACHE API
2001M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2002L: linux-kernel@vger.kernel.org
2003S: Maintained
2004F: mm/cleancache.c
2005F: include/linux/cleancache.h
2006
Russell Kingd4275352009-04-16 14:05:27 +01002007CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002008M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07002009S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002010F: include/linux/clk.h
2011
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002012CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002013M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002014M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
2015M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002016L: linux-scsi@vger.kernel.org
2017S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002018F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002019
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002020CMPC ACPI DRIVER
2021M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2022M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd09448532010-02-11 10:40:13 -05002023L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002024S: Supported
2025F: drivers/platform/x86/classmate-laptop.c
2026
Nicolas Palix74425ee2010-06-06 17:15:01 +02002027COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002028M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002029M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002030M: Nicolas Palix <nicolas.palix@imag.fr>
2031L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002032W: http://coccinelle.lip6.fr/
2033S: Supported
2034F: scripts/coccinelle/
2035F: scripts/coccicheck
2036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002038M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039M: coda@cs.cmu.edu
2040L: codalist@coda.cs.cmu.edu
2041W: http://www.coda.cs.cmu.edu/
2042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002043F: Documentation/filesystems/coda.txt
2044F: fs/coda/
2045F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Mike Turquette7704add2012-05-02 18:37:45 -07002047COMMON CLK FRAMEWORK
2048M: Mike Turquette <mturquette@ti.com>
2049M: Mike Turquette <mturquette@linaro.org>
2050L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2051T: git git://git.linaro.org/people/mturquette/linux.git
2052S: Maintained
2053F: drivers/clk/clk.c
2054F: drivers/clk/clk-*
2055F: include/linux/clk-pr*
2056
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002057COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002058M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002059L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002060L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002061W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002062Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002063T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002064S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002065F: Documentation/filesystems/cifs.txt
2066F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002069M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002070L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002072F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
2074COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002075M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002076L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002078F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002081M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002082L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002084F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002086COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002087M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05002088L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002089S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002090F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002091
Simon Arlott949be0f2007-03-06 02:47:46 -08002092CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002093M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002094L: accessrunner-general@lists.sourceforge.net
2095W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002097F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002098
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002099CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002100M: Joel Becker <jlbec@evilplan.org>
2101T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002102S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002103F: fs/configfs/
2104F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002105
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002106CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002107M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002108L: netdev@vger.kernel.org
2109S: Maintained
2110F: drivers/connector/
2111
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002112CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002113M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002114M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002115L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002116L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002117T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002119F: include/linux/cgroup*
2120F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002121F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002122
Rudolf Marekbebe4672007-05-08 17:22:02 +02002123CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002124M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002125L: lm-sensors@lm-sensors.org
2126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002127F: Documentation/hwmon/coretemp
2128F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002131M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132W: http://www.fi.muni.cz/~kas/cosa/
2133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002134F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Florian Fainelli4371ee32009-06-01 02:43:17 -07002136CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002137M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002138L: netdev@vger.kernel.org
2139S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002140F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002143M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002144L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002145L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002147F: drivers/cpufreq/
2148F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
2150CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002151M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002153F: arch/x86/kernel/cpuid.c
2154F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002156CPU POWER MONITORING SUBSYSTEM
2157M: Dominik Brodowski <linux@dominikbrodowski.net>
2158M: Thomas Renninger <trenn@suse.de>
2159S: Maintained
2160F: tools/power/cpupower
2161
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002162CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002163M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002164W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002165W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002166S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002167F: Documentation/cgroups/cpusets.txt
2168F: include/linux/cpuset.h
2169F: kernel/cpuset.c
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002170
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002172W: http://sourceforge.net/projects/cramfs/
2173S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002174F: Documentation/filesystems/cramfs.txt
2175F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
2177CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002178M: Mikael Starvik <starvik@axis.com>
2179M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002180L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181W: http://developer.axis.com
2182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002183F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002184F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
2186CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002187M: Herbert Xu <herbert@gondor.apana.org.au>
2188M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002190T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002192F: Documentation/crypto/
2193F: arch/*/crypto/
2194F: crypto/
2195F: drivers/crypto/
2196F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
Neil Horman5b07bd52009-02-05 16:03:04 +11002198CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002199M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002200L: linux-crypto@vger.kernel.org
2201S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002202F: crypto/ansi_cprng.c
2203F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002204
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002205CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002206M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002208F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002209
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002210CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002211M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002212L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002213L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002214T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002215W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002216W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002218F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002219F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002220F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002221
Hans Verkuil3f101d92012-11-23 07:00:02 -03002222CX2341X MPEG ENCODER HELPER MODULE
2223M: Hans Verkuil <hverkuil@xs4all.nl>
2224L: linux-media@vger.kernel.org
2225T: git git://linuxtv.org/media_tree.git
2226W: http://linuxtv.org
2227S: Maintained
2228F: drivers/media/i2c/cx2341x*
2229F: include/media/cx2341x*
2230
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002231CX88 VIDEO4LINUX DRIVER
2232M: Mauro Carvalho Chehab <mchehab@redhat.com>
2233L: linux-media@vger.kernel.org
2234W: http://linuxtv.org
2235T: git git://linuxtv.org/media_tree.git
2236S: Odd fixes
2237F: Documentation/video4linux/cx88/
2238F: drivers/media/pci/cx88/
2239
Antti Palosaari91952bc2012-10-01 12:28:46 -03002240CXD2820R MEDIA DRIVER
2241M: Antti Palosaari <crope@iki.fi>
2242L: linux-media@vger.kernel.org
2243W: http://linuxtv.org/
2244W: http://palosaari.fi/linux/
2245Q: http://patchwork.linuxtv.org/project/linux-media/list/
2246T: git git://linuxtv.org/anttip/media_tree.git
2247S: Maintained
2248F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002249
Steve Wisee5ec3782008-05-20 14:06:33 -07002250CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002251M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002252L: netdev@vger.kernel.org
2253W: http://www.chelsio.com
2254S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002255F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002256
2257CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002258M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002259L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002260W: http://www.openfabrics.org
2261S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002262F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002263
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002264CXGB4 ETHERNET DRIVER (CXGB4)
2265M: Dimitris Michailidis <dm@chelsio.com>
2266L: netdev@vger.kernel.org
2267W: http://www.chelsio.com
2268S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002269F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002270
2271CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2272M: Steve Wise <swise@chelsio.com>
2273L: linux-rdma@vger.kernel.org
2274W: http://www.openfabrics.org
2275S: Supported
2276F: drivers/infiniband/hw/cxgb4/
2277
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002278CXGB4VF ETHERNET DRIVER (CXGB4VF)
2279M: Casey Leedom <leedom@chelsio.com>
2280L: netdev@vger.kernel.org
2281W: http://www.chelsio.com
2282S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002283F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002284
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002285STMMAC ETHERNET DRIVER
2286M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2287L: netdev@vger.kernel.org
2288W: http://www.stlinux.com
2289S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002290F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002291
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002293M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002294L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295W: http://www.arm.linux.org.uk/
2296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002297F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002298
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002300M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002301W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002303F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
2305CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002307S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002308F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002309F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
2311CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002313S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002314F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002316CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002317M: Javier Martinez Canillas <javier@dowhile0.org>
2318L: linux-input@vger.kernel.org
2319S: Maintained
2320F: drivers/input/touchscreen/cyttsp*
2321F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002322
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002324M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325W: http://yaina.de/jreuter/
2326W: http://www.qsl.net/dl1bke/
2327L: linux-hams@vger.kernel.org
2328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002329F: net/ax25/af_ax25.c
2330F: net/ax25/ax25_dev.c
2331F: net/ax25/ax25_ds_*
2332F: net/ax25/ax25_in.c
2333F: net/ax25/ax25_out.c
2334F: net/ax25/ax25_timer.c
2335F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002337DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002338L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002339S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002340F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002341F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002342
2343DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002344M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002345W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002346M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002348F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002349
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002351M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002352M: Ali Akcaagac <aliakc@web.de>
2353M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002355L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356L: http://lists.twibble.org/mailman/listinfo/dc395x/
2357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002358F: Documentation/scsi/dc395x.txt
2359F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002361DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002362M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002363L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002364W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002366F: include/linux/dccp.h
2367F: include/linux/tfrc.h
2368F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002369
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371W: http://linux-decnet.sourceforge.net
2372L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002373S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002374F: Documentation/networking/decnet.txt
2375F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
2377DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002378M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002380F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002382DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002383M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05002384L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002386F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002387
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002389M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390W: http://www.debian.org/~dz/i8k/
2391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002392F: drivers/char/i8k.c
2393F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
Doug Warzecha90563ec2005-09-06 15:17:15 -07002395DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002396M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002398F: Documentation/dcdbas.txt
2399F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002400
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002401DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002402M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002403S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002404F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002405
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002406DESIGNWARE USB3 DRD IP DRIVER
2407M: Felipe Balbi <balbi@ti.com>
2408L: linux-usb@vger.kernel.org
2409L: linux-omap@vger.kernel.org
2410T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2411S: Maintained
2412F: drivers/usb/dwc3/
2413
Kyungmin Park89d07762012-01-10 15:09:09 -08002414DEVICE FREQUENCY (DEVFREQ)
2415M: MyungJoo Ham <myungjoo.ham@samsung.com>
2416M: Kyungmin Park <kyungmin.park@samsung.com>
2417L: linux-kernel@vger.kernel.org
2418S: Maintained
2419F: drivers/devfreq/
2420
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002422M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424S: Maintained
2425
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002426DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002427M: Alasdair Kergon <agk@redhat.com>
2428M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002429L: dm-devel@redhat.com
2430W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002431Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002432T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002434F: Documentation/device-mapper/
2435F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002436F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002437F: include/linux/device-mapper.h
2438F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002439
Guenter Roeck335d7c52011-01-26 11:45:49 -08002440DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002441M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002442L: linux-i2c@vger.kernel.org
2443S: Maintained
2444F: drivers/i2c/busses/i2c-diolan-u2c.c
2445
Randy Dunlape7839f22008-10-12 16:11:45 -07002446DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002447M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002448S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002449F: Documentation/filesystems/dnotify.txt
2450F: fs/notify/dnotify/
2451F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
2453DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002454M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2456W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2457W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2458S: Maintained
2459
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002460DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002461M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002463F: Documentation/filesystems/quota.txt
2464F: fs/quota/
2465F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
Bernie Thompson702686a2012-03-01 13:52:13 -08002467DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2468M: Bernie Thompson <bernie@plugable.com>
2469L: linux-fbdev@vger.kernel.org
2470S: Maintained
2471W: http://plugable.com/category/projects/udlfb/
2472F: drivers/video/udlfb.c
2473F: include/video/udlfb.h
2474F: Documentation/fb/udlfb.txt
2475
Randy Dunlape7839f22008-10-12 16:11:45 -07002476DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002477M: Christine Caulfield <ccaulfie@redhat.com>
2478M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002479L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002480W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002481T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002482S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002483F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002484
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302485DMA BUFFER SHARING FRAMEWORK
2486M: Sumit Semwal <sumit.semwal@linaro.org>
2487S: Maintained
2488L: linux-media@vger.kernel.org
2489L: dri-devel@lists.freedesktop.org
2490L: linaro-mm-sig@lists.linaro.org
2491F: drivers/base/dma-buf*
2492F: include/linux/dma-buf*
2493F: Documentation/dma-buf-sharing.txt
2494T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2495
Dan Williamsb3e5f262007-08-07 10:26:35 -07002496DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002497M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002498M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002499S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002500F: drivers/dma/
2501F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302502T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2503T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002504
Juerg Haefligerb8250372007-06-09 10:11:16 -04002505DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002506M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002507L: lm-sensors@lm-sensors.org
2508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002509F: Documentation/hwmon/dme1737
2510F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002511
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002512DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002513M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002514L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002516F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002517
Joe Perches7d2c86b2009-04-07 20:59:01 -07002518DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002519M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002520L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002521T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002523F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002524
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002526M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527L: blinux-list@redhat.com
2528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002529F: drivers/char/dtlk.c
2530F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002532DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002533M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002534L: linux-scsi@vger.kernel.org
2535W: http://www.adaptec.com/
2536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002537F: drivers/scsi/dpt*
2538F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002539
Philipp Reisnerb411b362009-09-25 16:07:19 -07002540DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002541P: Philipp Reisner
2542P: Lars Ellenberg
2543M: drbd-dev@lists.linbit.com
2544L: drbd-user@lists.linbit.com
2545W: http://www.drbd.org
2546T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2547T: git git://git.drbd.org/drbd-8.3.git
2548S: Supported
2549F: drivers/block/drbd/
2550F: lib/lru_cache.c
2551F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002552
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002553DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002554M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002555T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002557F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002558F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002559F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002560F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002561F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002562F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002563F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
2565DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002566M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002567L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002568T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002570F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002571F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
Chris Wilson8daf7472010-09-28 14:07:26 +01002573INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002574M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002575L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002576L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002577T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002578S: Supported
2579F: drivers/gpu/drm/i915
2580F: include/drm/i915*
2581
Kyungmin Park398a6d42011-11-02 11:33:16 +09002582DRM DRIVERS FOR EXYNOS
2583M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002584M: Joonyoung Shim <jy0922.shim@samsung.com>
2585M: Seung-Woo Kim <sw0312.kim@samsung.com>
2586M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002587L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002588T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002589S: Supported
2590F: drivers/gpu/drm/exynos
2591F: include/drm/exynos*
2592
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002594M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002595L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002597F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
Antti Palosaari91952bc2012-10-01 12:28:46 -03002599DVB_USB_AF9015 MEDIA DRIVER
2600M: Antti Palosaari <crope@iki.fi>
2601L: linux-media@vger.kernel.org
2602W: http://linuxtv.org/
2603W: http://palosaari.fi/linux/
2604Q: http://patchwork.linuxtv.org/project/linux-media/list/
2605T: git git://linuxtv.org/anttip/media_tree.git
2606S: Maintained
2607F: drivers/media/usb/dvb-usb-v2/af9015*
2608
2609DVB_USB_AF9035 MEDIA DRIVER
2610M: Antti Palosaari <crope@iki.fi>
2611L: linux-media@vger.kernel.org
2612W: http://linuxtv.org/
2613W: http://palosaari.fi/linux/
2614Q: http://patchwork.linuxtv.org/project/linux-media/list/
2615T: git git://linuxtv.org/anttip/media_tree.git
2616S: Maintained
2617F: drivers/media/usb/dvb-usb-v2/af9035*
2618
2619DVB_USB_ANYSEE MEDIA DRIVER
2620M: Antti Palosaari <crope@iki.fi>
2621L: linux-media@vger.kernel.org
2622W: http://linuxtv.org/
2623W: http://palosaari.fi/linux/
2624Q: http://patchwork.linuxtv.org/project/linux-media/list/
2625T: git git://linuxtv.org/anttip/media_tree.git
2626S: Maintained
2627F: drivers/media/usb/dvb-usb-v2/anysee*
2628
2629DVB_USB_AU6610 MEDIA DRIVER
2630M: Antti Palosaari <crope@iki.fi>
2631L: linux-media@vger.kernel.org
2632W: http://linuxtv.org/
2633W: http://palosaari.fi/linux/
2634Q: http://patchwork.linuxtv.org/project/linux-media/list/
2635T: git git://linuxtv.org/anttip/media_tree.git
2636S: Maintained
2637F: drivers/media/usb/dvb-usb-v2/au6610*
2638
2639DVB_USB_CE6230 MEDIA DRIVER
2640M: Antti Palosaari <crope@iki.fi>
2641L: linux-media@vger.kernel.org
2642W: http://linuxtv.org/
2643W: http://palosaari.fi/linux/
2644Q: http://patchwork.linuxtv.org/project/linux-media/list/
2645T: git git://linuxtv.org/anttip/media_tree.git
2646S: Maintained
2647F: drivers/media/usb/dvb-usb-v2/ce6230*
2648
Michael Krufkyd099dea2012-10-02 00:56:20 -03002649DVB_USB_CXUSB MEDIA DRIVER
2650M: Michael Krufky <mkrufky@linuxtv.org>
2651L: linux-media@vger.kernel.org
2652W: http://linuxtv.org/
2653W: http://github.com/mkrufky
2654Q: http://patchwork.linuxtv.org/project/linux-media/list/
2655T: git git://linuxtv.org/media_tree.git
2656S: Maintained
2657F: drivers/media/usb/dvb-usb-v2/cxusb*
2658
Antti Palosaari91952bc2012-10-01 12:28:46 -03002659DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2660M: Antti Palosaari <crope@iki.fi>
2661L: linux-media@vger.kernel.org
2662W: http://linuxtv.org/
2663W: http://palosaari.fi/linux/
2664Q: http://patchwork.linuxtv.org/project/linux-media/list/
2665T: git git://linuxtv.org/anttip/media_tree.git
2666S: Maintained
2667F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2668
2669DVB_USB_EC168 MEDIA DRIVER
2670M: Antti Palosaari <crope@iki.fi>
2671L: linux-media@vger.kernel.org
2672W: http://linuxtv.org/
2673W: http://palosaari.fi/linux/
2674Q: http://patchwork.linuxtv.org/project/linux-media/list/
2675T: git git://linuxtv.org/anttip/media_tree.git
2676S: Maintained
2677F: drivers/media/usb/dvb-usb-v2/ec168*
2678
Michael Krufky8856f5f2012-10-02 00:55:50 -03002679DVB_USB_MXL111SF MEDIA DRIVER
2680M: Michael Krufky <mkrufky@linuxtv.org>
2681L: linux-media@vger.kernel.org
2682W: http://linuxtv.org/
2683W: http://github.com/mkrufky
2684Q: http://patchwork.linuxtv.org/project/linux-media/list/
2685T: git git://linuxtv.org/mkrufky/mxl111sf.git
2686S: Maintained
2687F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2688
Antti Palosaari91952bc2012-10-01 12:28:46 -03002689DVB_USB_RTL28XXU MEDIA DRIVER
2690M: Antti Palosaari <crope@iki.fi>
2691L: linux-media@vger.kernel.org
2692W: http://linuxtv.org/
2693W: http://palosaari.fi/linux/
2694Q: http://patchwork.linuxtv.org/project/linux-media/list/
2695T: git git://linuxtv.org/anttip/media_tree.git
2696S: Maintained
2697F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2698
2699DVB_USB_V2 MEDIA DRIVER
2700M: Antti Palosaari <crope@iki.fi>
2701L: linux-media@vger.kernel.org
2702W: http://linuxtv.org/
2703W: http://palosaari.fi/linux/
2704Q: http://patchwork.linuxtv.org/project/linux-media/list/
2705T: git git://linuxtv.org/anttip/media_tree.git
2706S: Maintained
2707F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2708F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2709
Jason Baronac0ac382011-08-11 14:36:43 -04002710DYNAMIC DEBUG
2711M: Jason Baron <jbaron@redhat.com>
2712S: Maintained
2713F: lib/dynamic_debug.c
2714F: include/linux/dynamic_debug.h
2715
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002716DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002717M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002718S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002719F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002720
Antti Palosaari91952bc2012-10-01 12:28:46 -03002721E4000 MEDIA DRIVER
2722M: Antti Palosaari <crope@iki.fi>
2723L: linux-media@vger.kernel.org
2724W: http://linuxtv.org/
2725W: http://palosaari.fi/linux/
2726Q: http://patchwork.linuxtv.org/project/linux-media/list/
2727T: git git://linuxtv.org/anttip/media_tree.git
2728S: Maintained
2729F: drivers/media/tuners/e4000*
2730
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002732M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002733L: linux-eata@i-connect.net
2734L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002736F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737
2738EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002739M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740L: linux-scsi@vger.kernel.org
2741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002742F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743
2744EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002745M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002746L: linux-eata@i-connect.net
2747L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002749F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750
2751EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002752M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002753L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754W: http://ebtables.sourceforge.net/
2755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002756F: include/linux/netfilter_bridge/ebt_*.h
2757F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
Antti Palosaari91952bc2012-10-01 12:28:46 -03002759EC100 MEDIA DRIVER
2760M: Antti Palosaari <crope@iki.fi>
2761L: linux-media@vger.kernel.org
2762W: http://linuxtv.org/
2763W: http://palosaari.fi/linux/
2764Q: http://patchwork.linuxtv.org/project/linux-media/list/
2765T: git git://linuxtv.org/anttip/media_tree.git
2766S: Maintained
2767F: drivers/media/dvb-frontends/ec100*
2768
Michael Halcrow237fead2006-10-04 02:16:22 -07002769ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002770M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002771M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002772L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002773W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002774S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002775F: Documentation/filesystems/ecryptfs.txt
2776F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002777
Alan Coxda9bb1d2006-01-18 17:44:13 -08002778EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002779M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002780L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002781W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002782S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002783F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002784F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002785F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002786
Borislav Petkovc476c232009-05-20 20:31:58 +02002787EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002788M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002789M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002790L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002791W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002792S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002793F: drivers/edac/amd64_edac*
2794
Dave Peterson0e438e32006-03-26 01:38:55 -08002795EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002796M: Mark Gross <mark.gross@intel.com>
2797M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002798L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002799W: bluesmoke.sourceforge.net
2800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002801F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002802
2803EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002804M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002805L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002806W: bluesmoke.sourceforge.net
2807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002808F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002809
Douglas Thompson6bc78402007-07-19 01:50:12 -07002810EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002811M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002812L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002813W: bluesmoke.sourceforge.net
2814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002815F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002816
2817EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002818M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002819L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002820W: bluesmoke.sourceforge.net
2821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002822F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002823
2824EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002825M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002826L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002827W: bluesmoke.sourceforge.net
2828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002829F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002830
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002831EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002832M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002833L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002834W: bluesmoke.sourceforge.net
2835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002836F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002837
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002838EDAC-I7300
2839M: Mauro Carvalho Chehab <mchehab@redhat.com>
2840L: linux-edac@vger.kernel.org
2841W: bluesmoke.sourceforge.net
2842S: Maintained
2843F: drivers/edac/i7300_edac.c
2844
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002845EDAC-I7CORE
2846M: Mauro Carvalho Chehab <mchehab@redhat.com>
2847L: linux-edac@vger.kernel.org
2848W: bluesmoke.sourceforge.net
2849S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002850F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002851
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002852EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002853M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302854M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002855L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002856W: bluesmoke.sourceforge.net
2857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002858F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002859
2860EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002861M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002862L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002863W: bluesmoke.sourceforge.net
2864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002865F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002866
Dave Peterson0e438e32006-03-26 01:38:55 -08002867EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002868M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002869L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002870W: bluesmoke.sourceforge.net
2871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002872F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002873
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002874EDAC-SBRIDGE
2875M: Mauro Carvalho Chehab <mchehab@redhat.com>
2876L: linux-edac@vger.kernel.org
2877W: bluesmoke.sourceforge.net
2878S: Maintained
2879F: drivers/edac/sb_edac.c
2880
Clemens Ladischaf399172011-01-10 16:32:54 +01002881EDIROL UA-101/UA-1000 DRIVER
2882M: Clemens Ladisch <clemens@ladisch.de>
2883L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2884T: git git://git.alsa-project.org/alsa-kernel.git
2885S: Maintained
2886F: sound/usb/misc/ua101.c
2887
Matt Fleming1f7df952012-10-03 10:04:02 +01002888EXTENSIBLE FIRMWARE INTERFACE (EFI)
2889M: Matt Fleming <matt.fleming@intel.com>
2890L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002891T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002892S: Maintained
2893F: Documentation/x86/efi-stub.txt
2894F: arch/ia64/kernel/efi.c
2895F: arch/x86/boot/compressed/eboot.[ch]
2896F: arch/x86/include/asm/efi.h
2897F: arch/x86/platform/efi/*
2898F: drivers/firmware/efivars.c
2899F: include/linux/efi*.h
2900
Peter Jones85a00d92010-09-22 13:05:04 -07002901EFIFB FRAMEBUFFER DRIVER
2902L: linux-fbdev@vger.kernel.org
2903M: Peter Jones <pjones@redhat.com>
2904S: Maintained
2905F: drivers/video/efifb.c
2906
Josh Triplett0bee8d22006-07-30 03:03:58 -07002907EFS FILESYSTEM
2908W: http://aeschi.ch.eu.org/efs/
2909S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002910F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002911
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002912EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002913M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2914M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002915L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002916S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002917F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002918
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002919EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002920M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002921L: netdev@vger.kernel.org
2922S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002923F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002924
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02002925EM28XX VIDEO4LINUX DRIVER
2926M: Mauro Carvalho Chehab <mchehab@redhat.com>
2927L: linux-media@vger.kernel.org
2928W: http://linuxtv.org
2929T: git git://linuxtv.org/media_tree.git
2930S: Maintained
2931F: drivers/media/usb/em28xx/
2932
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002933EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002934M: Paul Gortmaker <paul.gortmaker@windriver.com>
2935M: Matt Mackall <mpm@selenic.com>
2936M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002937L: linux-embedded@vger.kernel.org
2938S: Maintained
2939
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002940EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002941M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002942L: linux-scsi@vger.kernel.org
2943W: http://sourceforge.net/projects/lpfcxxxx
2944S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002945F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002946
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002947ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002948M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002949S: Maintained
2950F: drivers/misc/cb710/
2951F: drivers/mmc/host/cb710-mmc.*
2952F: include/linux/cb710.h
2953
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002954ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2955M: Maxim Levitsky <maximlevitsky@gmail.com>
2956S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002957F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002958
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002960M: Christopher Hoover <ch@murgatroid.com>
2961M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002963F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002965EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002966M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002967S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002968T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002969F: drivers/video/s1d13xxxfb.c
2970F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002971
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002973M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002974L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002976F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
2978ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002979M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002980L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002981L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002982W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002984F: include/linux/netfilter_bridge/
2985F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
2987ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002988M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002990F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991
2992EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002993M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002994L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002996F: Documentation/filesystems/ext2.txt
2997F: fs/ext2/
2998F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999
3000EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003001M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07003002M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003003M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003004L: linux-ext4@vger.kernel.org
3005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003006F: Documentation/filesystems/ext3.txt
3007F: fs/ext3/
3008F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08003009
3010EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003011M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003012M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003013L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003014W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003015Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003017F: Documentation/filesystems/ext4.txt
3018F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019
Mimi Zoharc5532b02011-08-17 18:52:24 -04003020Extended Verification Module (EVM)
3021M: Mimi Zohar <zohar@us.ibm.com>
3022S: Supported
3023F: security/integrity/evm/
3024
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003025EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3026M: MyungJoo Ham <myungjoo.ham@samsung.com>
3027M: Chanwoo Choi <cw00.choi@samsung.com>
3028L: linux-kernel@vger.kernel.org
3029S: Maintained
3030F: drivers/extcon/
3031F: Documentation/extcon/
3032
Jingoo Han0a799512012-02-06 11:30:39 +09003033EXYNOS DP DRIVER
3034M: Jingoo Han <jg1.han@samsung.com>
3035L: linux-fbdev@vger.kernel.org
3036S: Maintained
3037F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003038F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003039
Donghwa Lee33ad3912012-03-06 11:44:58 +09003040EXYNOS MIPI DISPLAY DRIVERS
3041M: Inki Dae <inki.dae@samsung.com>
3042M: Donghwa Lee <dh09.lee@samsung.com>
3043M: Kyungmin Park <kyungmin.park@samsung.com>
3044L: linux-fbdev@vger.kernel.org
3045S: Maintained
3046F: drivers/video/exynos/exynos_mipi*
3047F: include/video/exynos_mipi*
3048
Jean Delvaree53004e2006-01-09 23:26:14 +01003049F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003050M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003051L: lm-sensors@lm-sensors.org
3052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003053F: Documentation/hwmon/f71805f
3054F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003055
Michael Büscheea977e2012-04-02 12:14:32 -03003056FC0011 TUNER DRIVER
3057M: Michael Buesch <m@bues.ch>
3058L: linux-media@vger.kernel.org
3059S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003060F: drivers/media/tuners/fc0011.h
3061F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003062
Antti Palosaari91952bc2012-10-01 12:28:46 -03003063FC2580 MEDIA DRIVER
3064M: Antti Palosaari <crope@iki.fi>
3065L: linux-media@vger.kernel.org
3066W: http://linuxtv.org/
3067W: http://palosaari.fi/linux/
3068Q: http://patchwork.linuxtv.org/project/linux-media/list/
3069T: git git://linuxtv.org/anttip/media_tree.git
3070S: Maintained
3071F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072
Eric Paris88b2dbd2010-08-18 12:25:50 -04003073FANOTIFY
3074M: Eric Paris <eparis@redhat.com>
3075S: Maintained
3076F: fs/notify/fanotify/
3077F: include/linux/fanotify.h
3078
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003080M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081W: http://www.farsite.co.uk/
3082S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003083F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084
Akinobu Mitac5408b82007-04-23 14:41:20 -07003085FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003086M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003087S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003088F: Documentation/fault-injection/
3089F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003090
Robert Lovecae727d2010-02-16 12:16:00 -08003091FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3092M: Robert Love <robert.w.love@intel.com>
3093L: devel@open-fcoe.org
3094W: www.Open-FCoE.org
3095S: Supported
3096F: drivers/scsi/libfc/
3097F: drivers/scsi/fcoe/
3098F: include/scsi/fc/
3099F: include/scsi/libfc.h
3100F: include/scsi/libfcoe.h
3101
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003102FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003103M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003104L: linux-fsdevel@vger.kernel.org
3105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003106F: include/linux/fcntl.h
3107F: include/linux/fs.h
3108F: fs/fcntl.c
3109F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003110
3111FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003112M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003113L: linux-fsdevel@vger.kernel.org
3114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003115F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003116
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003117FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003118M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003119L: lm-sensors@lm-sensors.org
3120S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003121F: drivers/hwmon/f75375s.c
3122F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003123
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003124FIREWIRE AUDIO DRIVERS
3125M: Clemens Ladisch <clemens@ladisch.de>
3126L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3127T: git git://git.alsa-project.org/alsa-kernel.git
3128S: Maintained
3129F: sound/firewire/
3130
Stefan Richtereb86ec52012-11-03 09:25:20 +01003131FIREWIRE MEDIA DRIVERS (firedtv)
3132M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3133L: linux-media@vger.kernel.org
3134L: linux1394-devel@lists.sourceforge.net
3135T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3136S: Maintained
3137F: drivers/media/firewire/
3138
Chris Boota511ce32012-04-14 17:50:35 -07003139FIREWIRE SBP-2 TARGET
3140M: Chris Boot <bootc@bootc.net>
3141L: linux-scsi@vger.kernel.org
3142L: target-devel@vger.kernel.org
3143L: linux1394-devel@lists.sourceforge.net
3144T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3145S: Maintained
3146F: drivers/target/sbp/
3147
Joe Perches7d2c86b2009-04-07 20:59:01 -07003148FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003149M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003150L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003151W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003152T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003154F: drivers/firewire/
3155F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003156F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003157
3158FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003159M: Ming Lei <ming.lei@canonical.com>
3160L: linux-kernel@vger.kernel.org
3161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003162F: Documentation/firmware_class/
3163F: drivers/base/firmware*.c
3164F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003165
Jiri Kosina8206f662012-05-18 13:52:29 +02003166FLOPPY DRIVER
3167M: Jiri Kosina <jkosina@suse.cz>
3168T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3169S: Odd fixes
3170F: drivers/block/floppy.c
3171
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003172FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003173M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003174W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003176F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003177
3178FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003179L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003180S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003181F: drivers/net/wan/dlci.c
3182F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003183
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003185M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003186L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003188Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003189T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003191F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003192F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003193F: drivers/video/
3194F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003195F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196
Zhang Wei173acc72008-03-01 07:42:48 -07003197FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003198M: Li Yang <leoli@freescale.com>
3199M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003200L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003202F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003203
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003204FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003205M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003206L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003207L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003209F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003210
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003211FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003212M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003213L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003214L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003216F: arch/arm/plat-mxc/include/mach/imxfb.h
3217F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003218
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003219FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003220M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3221M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003222L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003223L: netdev@vger.kernel.org
3224S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003225F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003226F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003227
Timur Tabid9e9d822008-04-24 08:45:26 +10003228FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003229M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003230L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003231S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003232F: arch/powerpc/sysdev/qe_lib/
3233F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003234
Joe Perchesb55ef9292009-10-26 16:49:46 -07003235FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003236M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003237L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003238L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003239S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003240F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003241
Li Yangbeaf53b2007-05-25 13:54:02 +08003242FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003243M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003244L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003245L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003246S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003247F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003248
Timur Tabid9e9d822008-04-24 08:45:26 +10003249FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003250M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003251L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003252S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003253F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003254
3255FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003256M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003257L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003258L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003259S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003260F: sound/soc/fsl/fsl*
3261F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003262
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003264M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003267F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268
Pavel Machek71038f52009-01-15 13:51:02 -08003269FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003270M: Pavel Machek <pavel@ucw.cz>
3271M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003272L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003273S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003274F: Documentation/power/freezing-of-tasks.txt
3275F: include/linux/freezer.h
3276F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003277
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003278FRONTSWAP API
3279M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3280L: linux-kernel@vger.kernel.org
3281S: Maintained
3282F: mm/frontswap.c
3283F: include/linux/frontswap.h
3284
David Howellsa5432f5a2009-04-20 15:46:45 +01003285FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003286M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01003287L: linux-cachefs@redhat.com
3288S: Supported
3289F: Documentation/filesystems/caching/
3290F: fs/fscache/
3291F: include/linux/fscache*.h
3292
David Howells5ab7ffe2007-04-10 15:10:45 +01003293FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003294M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003296F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297
Jonathan Woithe20b93732008-06-11 10:14:56 +09303298FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303299M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd09448532010-02-11 10:40:13 -05003300L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003302F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303303
Heungjun Kim4da621b62011-11-11 08:05:33 -03003304FUJITSU M-5MO LS CAMERA ISP DRIVER
3305M: Kyungmin Park <kyungmin.park@samsung.com>
3306M: Heungjun Kim <riverful.kim@samsung.com>
3307L: linux-media@vger.kernel.org
3308S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003309F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b62011-11-11 08:05:33 -03003310F: include/media/m5mols.h
3311
Robert Gerlach2d24c492012-01-18 14:26:22 +01003312FUJITSU TABLET EXTRAS
3313M: Robert Gerlach <khnz@gmx.de>
3314L: platform-driver-x86@vger.kernel.org
3315S: Maintained
3316F: drivers/platform/x86/fujitsu-tablet.c
3317
Miklos Szeredi04578f12005-09-09 13:10:22 -07003318FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003319M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003320L: fuse-devel@lists.sourceforge.net
3321W: http://fuse.sourceforge.net/
3322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003323F: fs/fuse/
3324F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003325
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003327M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003329S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003330F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
3332GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003333M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334L: linux-scsi@vger.kernel.org
3335W: http://www.icp-vortex.com/
3336S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003337F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338
Hans Verkuil3169a1c2012-11-23 07:11:58 -03003339GEMTEK FM RADIO RECEIVER DRIVER
3340M: Hans Verkuil <hverkuil@xs4all.nl>
3341L: linux-media@vger.kernel.org
3342T: git git://linuxtv.org/media_tree.git
3343W: http://linuxtv.org
3344S: Maintained
3345F: drivers/media/radio/radio-gemtek*
3346
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003347GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003348M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003349S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003350F: drivers/i2c/busses/i2c-gpio.c
3351F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003352
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003353GENERIC GPIO I2C MULTIPLEXER DRIVER
3354M: Peter Korsgaard <peter.korsgaard@barco.com>
3355L: linux-i2c@vger.kernel.org
3356S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003357F: drivers/i2c/muxes/i2c-mux-gpio.c
3358F: include/linux/i2c-mux-gpio.h
3359F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003360
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003361GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003362M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003365F: drivers/net/wan/c101.c
3366F: drivers/net/wan/hd6457*
3367F: drivers/net/wan/hdlc*
3368F: drivers/net/wan/n2.c
3369F: drivers/net/wan/pc300too.c
3370F: drivers/net/wan/pci200syn.c
3371F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003373GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003374M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003375L: linux-arch@vger.kernel.org
3376T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3377S: Maintained
3378F: include/asm-generic
3379
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003380GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003381M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003382L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003383S: Supported
3384F: drivers/uio/uio_pci_generic.c
3385
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003386GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003387M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003388L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003389W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003390T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3391T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003392S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003393F: Documentation/filesystems/gfs2*.txt
3394F: fs/gfs2/
3395F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003396
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003397GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003398M: Hansjoerg Lipp <hjlipp@web.de>
3399M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003400L: gigaset307x-common@lists.sourceforge.net
3401W: http://gigaset307x.sourceforge.net/
3402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003403F: Documentation/isdn/README.gigaset
3404F: drivers/isdn/gigaset/
3405F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003406
Grant Likelya0dc00b2011-02-12 01:48:14 -07003407GPIO SUBSYSTEM
3408M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003409M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003410S: Maintained
3411T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003412F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003413F: drivers/gpio/
3414F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003415F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003416
Harry Wei71a6d0a2011-05-11 15:13:33 -07003417GRE DEMULTIPLEXER DRIVER
3418M: Dmitry Kozlov <xeb@mail.ru>
3419L: netdev@vger.kernel.org
3420S: Maintained
3421F: net/ipv4/gre.c
3422F: include/net/gre.h
3423
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003424GRETH 10/100/1G Ethernet MAC device driver
3425M: Kristoffer Glembo <kristoffer@gaisler.com>
3426L: netdev@vger.kernel.org
3427S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003428F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003429
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003430GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003431M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003432L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003433T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003434S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003435F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003436
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003437GSPCA GL860 SUBDRIVER
3438M: Olivier Lorin <o.lorin@laposte.net>
3439L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003440T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003441S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003442F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003443
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003444GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003445M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003446L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003447T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003448S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003449F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003450
3451GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003452M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003453L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003454T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003455S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003456F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003457
Brian Johnson261982f2009-07-19 15:58:56 -03003458GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003459M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003460L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003461T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003462S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003463F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003464
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003465GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003466M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003467L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003468T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003469S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003470F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003471
3472GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003473M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003474L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003475T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003476S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003477F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003478
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003479STK1160 USB VIDEO CAPTURE DRIVER
3480M: Ezequiel Garcia <elezegarcia@gmail.com>
3481L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003482T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003483S: Maintained
3484F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003485
Harry Wei71a6d0a2011-05-11 15:13:33 -07003486HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3487M: Frank Seidel <frank@f-seidel.de>
3488L: platform-driver-x86@vger.kernel.org
3489W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3490S: Maintained
3491F: drivers/platform/x86/hdaps.c
3492
3493HWPOISON MEMORY FAILURE HANDLING
3494M: Andi Kleen <andi@firstfloor.org>
3495L: linux-mm@kvack.org
3496T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3497S: Maintained
3498F: mm/memory-failure.c
3499F: mm/hwpoison-inject.c
3500
3501HYPERVISOR VIRTUAL CONSOLE DRIVER
3502L: linuxppc-dev@lists.ozlabs.org
3503S: Odd Fixes
3504F: drivers/tty/hvc/
3505
Michael Buesch844dd052006-06-26 00:24:59 -07003506HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003507M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003508M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003509L: lm-sensors@lm-sensors.org
3510W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003511T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003512T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003513S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003514F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003515F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003516F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003517
3518HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003519M: Matt Mackall <mpm@selenic.com>
3520M: Herbert Xu <herbert@gondor.apana.org.au>
3521S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003522F: Documentation/hw_random.txt
3523F: drivers/char/hw_random/
3524F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003525
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003526HARDWARE SPINLOCK CORE
3527M: Ohad Ben-Cohen <ohad@wizery.com>
3528S: Maintained
3529F: Documentation/hwspinlock.txt
3530F: drivers/hwspinlock/hwspinlock_*
3531F: include/linux/hwspinlock.h
3532
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003534L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003536F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537
Antti Palosaari91952bc2012-10-01 12:28:46 -03003538HD29L2 MEDIA DRIVER
3539M: Antti Palosaari <crope@iki.fi>
3540L: linux-media@vger.kernel.org
3541W: http://linuxtv.org/
3542W: http://palosaari.fi/linux/
3543Q: http://patchwork.linuxtv.org/project/linux-media/list/
3544T: git git://linuxtv.org/anttip/media_tree.git
3545S: Maintained
3546F: drivers/media/dvb-frontends/hd29l2*
3547
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003548HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003549M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003550L: iss_storagedev@hp.com
3551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003552F: Documentation/blockdev/cpqarray.txt
3553F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003554
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003555HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003556M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003557L: iss_storagedev@hp.com
3558S: Supported
3559F: Documentation/scsi/hpsa.txt
3560F: drivers/scsi/hpsa*.[ch]
3561F: include/linux/cciss*.h
3562
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003563HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003564M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003565L: iss_storagedev@hp.com
3566S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003567F: Documentation/blockdev/cciss.txt
3568F: drivers/block/cciss*
3569F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003570
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003572L: linux-fsdevel@vger.kernel.org
3573S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003574F: Documentation/filesystems/hfs.txt
3575F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576
3577HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003578M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579L: linux-nvidia@lists.surfsouth.com
3580W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003582F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003584HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003585M: Pavel Machek <pavel@ucw.cz>
3586M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003587L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003588S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003589F: arch/x86/power/
3590F: drivers/base/power/
3591F: kernel/power/
3592F: include/linux/suspend.h
3593F: include/linux/freezer.h
3594F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003595F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003596
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003597HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003598M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003599L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003600T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003602F: drivers/hid/
3603F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003604
Ingo Molnar38bed542007-02-22 09:09:34 +01003605HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003606M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003607T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003609F: Documentation/timers/
3610F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003611F: kernel/time/clockevents.c
3612F: kernel/time/tick*.*
3613F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003614F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003615F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003616
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003619S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003620F: drivers/net/hamradio/dmascc.c
3621F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003623HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003624M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003625W: http://www.highpoint-tech.com
3626S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003627F: Documentation/scsi/hptiop.txt
3628F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003629
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003631M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632L: linux-hippi@sunsite.dk
3633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003634F: include/linux/hippidevice.h
3635F: include/linux/if_hippi.h
3636F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003637F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638
Jouni Malinenff1d2762005-05-12 22:54:16 -04003639HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003640M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003641L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003642L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003643W: http://hostap.epitest.fi/
3644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003645F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003646
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003647HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05003648L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003649S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003650F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003651
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003652HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003653M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003654S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003655F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003656
Joe Perches7d2c86b2009-04-07 20:59:01 -07003657HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003658M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003660F: Documentation/timers/hpet.txt
3661F: drivers/char/hpet.c
3662F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003663
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003664HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003665M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003667F: arch/x86/kernel/hpet.c
3668F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003669
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003671M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003674F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675
Joe Perches7d2c86b2009-04-07 20:59:01 -07003676HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003677M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003678W: http://www.pharscape.org
3679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003680F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003681
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003682HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003683M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003684L: linux-input@vger.kernel.org
3685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003686F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003687
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003689M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003691F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003693Hyper-V CORE AND DRIVERS
3694M: K. Y. Srinivasan <kys@microsoft.com>
3695M: Haiyang Zhang <haiyangz@microsoft.com>
3696L: devel@linuxdriverproject.org
3697S: Maintained
3698F: drivers/hv/
3699F: drivers/hid/hid-hyperv.c
3700F: drivers/net/hyperv/
3701F: drivers/staging/hv/
3702
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003703I2C OVER PARALLEL PORT
3704M: Jean Delvare <khali@linux-fr.org>
3705L: linux-i2c@vger.kernel.org
3706S: Maintained
3707F: Documentation/i2c/busses/i2c-parport
3708F: Documentation/i2c/busses/i2c-parport-light
3709F: drivers/i2c/busses/i2c-parport.c
3710F: drivers/i2c/busses/i2c-parport-light.c
3711
3712I2C/SMBUS CONTROLLER DRIVERS FOR PC
3713M: Jean Delvare <khali@linux-fr.org>
3714L: linux-i2c@vger.kernel.org
3715S: Maintained
3716F: Documentation/i2c/busses/i2c-ali1535
3717F: Documentation/i2c/busses/i2c-ali1563
3718F: Documentation/i2c/busses/i2c-ali15x3
3719F: Documentation/i2c/busses/i2c-amd756
3720F: Documentation/i2c/busses/i2c-amd8111
3721F: Documentation/i2c/busses/i2c-i801
3722F: Documentation/i2c/busses/i2c-nforce2
3723F: Documentation/i2c/busses/i2c-piix4
3724F: Documentation/i2c/busses/i2c-sis5595
3725F: Documentation/i2c/busses/i2c-sis630
3726F: Documentation/i2c/busses/i2c-sis96x
3727F: Documentation/i2c/busses/i2c-via
3728F: Documentation/i2c/busses/i2c-viapro
3729F: drivers/i2c/busses/i2c-ali1535.c
3730F: drivers/i2c/busses/i2c-ali1563.c
3731F: drivers/i2c/busses/i2c-ali15x3.c
3732F: drivers/i2c/busses/i2c-amd756.c
3733F: drivers/i2c/busses/i2c-amd756-s4882.c
3734F: drivers/i2c/busses/i2c-amd8111.c
3735F: drivers/i2c/busses/i2c-i801.c
3736F: drivers/i2c/busses/i2c-isch.c
3737F: drivers/i2c/busses/i2c-nforce2.c
3738F: drivers/i2c/busses/i2c-nforce2-s4985.c
3739F: drivers/i2c/busses/i2c-piix4.c
3740F: drivers/i2c/busses/i2c-sis5595.c
3741F: drivers/i2c/busses/i2c-sis630.c
3742F: drivers/i2c/busses/i2c-sis96x.c
3743F: drivers/i2c/busses/i2c-via.c
3744F: drivers/i2c/busses/i2c-viapro.c
3745
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003746I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003747M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003748L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003750F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003751
Jean Delvare5b543962005-08-15 19:51:02 +02003752I2C SUBSYSTEM
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003753M: Wolfram Sang <w.sang@pengutronix.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003754M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003755L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003756W: http://i2c.wiki.kernel.org/
3757T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003758T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003760F: Documentation/i2c/
3761F: drivers/i2c/
3762F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003763F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003765I2C-TAOS-EVM DRIVER
3766M: Jean Delvare <khali@linux-fr.org>
3767L: linux-i2c@vger.kernel.org
3768S: Maintained
3769F: Documentation/i2c/busses/i2c-taos-evm
3770F: drivers/i2c/busses/i2c-taos-evm.c
3771
Till Harbaume8c76ee2007-05-01 23:26:35 +02003772I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003773M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003774L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003775W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003777F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003778
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003780M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003782F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783
3784i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003785M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003786T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787S: Maintained
3788
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003790M: Tony Luck <tony.luck@intel.com>
3791M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003793T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003795F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796
Kent Yoder956c2032012-09-07 04:17:01 +08003797IBM Power in-Nest Crypto Acceleration
3798M: Kent Yoder <key@linux.vnet.ibm.com>
3799L: linux-crypto@vger.kernel.org
3800S: Supported
3801F: drivers/crypto/nx/
3802
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003803IBM Power 842 compression accelerator
3804M: Robert Jennings <rcj@linux.vnet.ibm.com>
3805S: Supported
3806F: drivers/crypto/nx/nx-842.c
3807F: include/linux/nx842.h
3808
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003810M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003812F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813
Santiago Leon9d348af2010-09-03 18:29:53 +00003814IBM Power Virtual Ethernet Device Driver
3815M: Santiago Leon <santil@linux.vnet.ibm.com>
3816L: netdev@vger.kernel.org
3817S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003818F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003819
Robert Jennings4b7652c2012-07-31 12:34:36 -05003820IBM Power Virtual SCSI/FC Device Drivers
3821M: Robert Jennings <rcj@linux.vnet.ibm.com>
3822L: linux-scsi@vger.kernel.org
3823S: Supported
3824F: drivers/scsi/ibmvscsi/
3825X: drivers/scsi/ibmvscsi/ibmvstgt.c
3826
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827IBM ServeRAID RAID DRIVER
3828P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003829M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003831S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003832F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003834ICH LPC AND GPIO DRIVER
3835M: Peter Tyser <ptyser@xes-inc.com>
3836S: Maintained
3837F: drivers/mfd/lpc_ich.c
3838F: drivers/gpio/gpio-ich.c
3839
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003840IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003841M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003843Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003844T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003846F: Documentation/ide/
3847F: drivers/ide/
3848F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849
Ike Panhc6cb8c132011-08-25 22:28:45 +08003850IDEAPAD LAPTOP EXTRAS DRIVER
3851M: Ike Panhc <ike.pan@canonical.com>
3852L: platform-driver-x86@vger.kernel.org
3853W: http://launchpad.net/ideapad-laptop
3854S: Maintained
3855F: drivers/platform/x86/ideapad-laptop.c
3856
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003857IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003858M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003859L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003861F: Documentation/cdrom/ide-cd
3862F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863
Andy Henroid27471fd2008-10-09 11:45:22 -07003864IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003865M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003866L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003867S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003868F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003869
Sergey Lapin02cf2282009-06-08 12:18:50 +00003870IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003871M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003872M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003873L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003874W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003875T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003876S: Maintained
3877F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003878F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003879F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003880
Sean Young40ad4a32012-11-19 10:32:53 -03003881IGUANAWORKS USB IR TRANSCEIVER
3882M: Sean Young <sean@mess.org>
3883L: linux-media@vger.kernel.org
3884S: Maintained
3885F: drivers/media/rc/iguanair.c
3886
Ameya Palande9545f862012-01-10 09:00:58 -08003887IIO SUBSYSTEM AND DRIVERS
3888M: Jonathan Cameron <jic23@cam.ac.uk>
3889L: linux-iio@vger.kernel.org
3890S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003891F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003892F: drivers/staging/iio/
3893
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003894IKANOS/ADI EAGLE ADSL USB DRIVER
3895M: Matthieu Castet <castet.matthieu@free.fr>
3896M: Stanislaw Gruszka <stf_xl@wp.pl>
3897S: Maintained
3898F: drivers/usb/atm/ueagle-atm.c
3899
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003900INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003901M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003902S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003903F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003904
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003906L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003907S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003908F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909
3910INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003911M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003912M: Sean Hefty <sean.hefty@intel.com>
3913M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003914L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003915W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003916Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003917T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003919F: Documentation/infiniband/
3920F: drivers/infiniband/
3921F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922
Robert Lovec9f04f52005-07-15 12:21:07 -04003923INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003924M: John McCutchan <john@johnmccutchan.com>
3925M: Robert Love <rlove@rlove.org>
3926M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003928F: Documentation/filesystems/inotify.txt
3929F: fs/notify/inotify/
3930F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003931
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003932INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003933M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3934M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003935L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003936Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003937T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003938S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003939F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003940F: include/linux/input.h
3941F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003942
Henrik Rydberg3267a872010-06-24 19:10:40 -07003943INPUT MULTITOUCH (MT) PROTOCOL
3944M: Henrik Rydberg <rydberg@euromail.se>
3945L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003946T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003947S: Maintained
3948F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003949F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003950K: \b(ABS|SYN)_MT_
3951
Dave Jiang4ac13e12011-07-29 17:16:55 -07003952INTEL C600 SERIES SAS CONTROLLER DRIVER
3953M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003954M: Lukasz Dorau <lukasz.dorau@intel.com>
3955M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003956M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003957L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003958T: git git://git.code.sf.net/p/intel-sas/isci
3959S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003960F: drivers/scsi/isci/
3961F: firmware/isci/
3962
Len Brown26717172010-03-08 14:07:30 -05003963INTEL IDLE DRIVER
3964M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003965L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003966T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003967S: Supported
3968F: drivers/idle/intel_idle.c
3969
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003970INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003971M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003972L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003974F: Documentation/fb/intelfb.txt
3975F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003976
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003978M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003979L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003981F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303983INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003984M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05003985L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303986W: http://www.lesswatts.org/projects/acpi/
3987S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003988F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303989
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003991M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003993F: arch/x86/kernel/microcode_core.c
3994F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003996INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003997M: Dan Williams <djbw@fb.com>
3998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003999F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004000
David Woodhouse6c8909b2008-10-18 16:12:17 +01004001INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004002M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004003L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004004T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004005S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004006F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004007F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004008
Dan Williamsb3e5f262007-08-07 10:26:35 -07004009INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004010M: Dan Williams <djbw@fb.com>
4011S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004012F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004013
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004014INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004015M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004017F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4018F: arch/arm/mach-ixp4xx/include/mach/npe.h
4019F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4020F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004021F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004022F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004023
Michael Buesch844dd052006-06-26 00:24:59 -07004024INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004025M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004027F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004028
Jeff Kirsher0d164402010-10-05 01:15:17 +00004029INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004030M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4031M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4032M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004033M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4034M: Don Skidmore <donald.c.skidmore@intel.com>
4035M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004036M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004037M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004038M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004039L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08004040W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004041T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4042T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004044F: Documentation/networking/e100.txt
4045F: Documentation/networking/e1000.txt
4046F: Documentation/networking/e1000e.txt
4047F: Documentation/networking/igb.txt
4048F: Documentation/networking/igbvf.txt
4049F: Documentation/networking/ixgb.txt
4050F: Documentation/networking/ixgbe.txt
4051F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004052F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053
Len Brown6dccf9c2011-07-12 22:29:32 -04004054INTEL MRST PMU DRIVER
4055M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02004056L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04004057S: Supported
4058F: arch/x86/platform/mrst/pmu.*
4059
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004060INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4061M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004062L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004064F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004065F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004066F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004067
Shane Wang4bd96a72010-03-10 14:36:10 +08004068INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004069M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4070M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004071M: Shane Wang <shane.wang@intel.com>
4072L: tboot-devel@lists.sourceforge.net
4073W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004074T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004075S: Supported
4076F: Documentation/intel_txt.txt
4077F: include/linux/tboot.h
4078F: arch/x86/kernel/tboot.c
4079
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004080INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004081M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004082M: linux-wimax@intel.com
4083L: wimax@linuxwimax.org
4084S: Supported
4085W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004086F: Documentation/wimax/README.i2400m
4087F: drivers/net/wimax/i2400m/
4088F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004089
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004090INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4091M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004092L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004093S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004094F: drivers/net/wireless/iwlegacy/
4095
Zhu Yib481de92007-09-25 17:54:57 -07004096INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004097M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004098M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004099M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004100L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004101W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07004102T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004103S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004104F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004105
Tomas Winklerde8fe022012-05-09 16:39:02 +03004106INTEL MANAGEMENT ENGINE (mei)
4107M: Tomas Winkler <tomas.winkler@intel.com>
4108L: linux-kernel@vger.kernel.org
4109S: Supported
4110F: include/linux/mei.h
4111F: drivers/misc/mei/*
4112F: Documentation/mei/*
4113
Ralf Baechlecb109a02007-08-30 23:56:30 -07004114IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004115M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116L: linux-mips@linux-mips.org
4117S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004118F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119
Ralf Baechlecb109a02007-08-30 23:56:30 -07004120IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004121M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004122L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004123S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004124F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004125
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004126IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004127M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004129F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130
Francois Romieu1202d6f2007-09-17 17:13:55 -07004131IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004132M: Francois Romieu <romieu@fr.zoreil.com>
4133M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004134L: netdev@vger.kernel.org
4135S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004136F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004137
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004138IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004139M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004140L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004142F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004143
Corey Minyard4409ebe2006-04-20 02:43:12 -07004144IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004145M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004146L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004147W: http://openipmi.sourceforge.net/
4148S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004149F: Documentation/IPMI.txt
4150F: drivers/char/ipmi/
4151F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004152
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004153IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004154M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004155L: linux-scsi@vger.kernel.org
4156W: http://www.adaptec.com/
4157S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004158F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004159
4160IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004161M: Wensong Zhang <wensong@linux-vs.org>
4162M: Simon Horman <horms@verge.net.au>
4163M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004164L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004165L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004167F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004168F: include/net/ip_vs.h
4169F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004170F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171
Randy Dunlape7839f22008-10-12 16:11:45 -07004172IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004173M: Jiri Kosina <jkosina@suse.cz>
4174M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004175S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004176F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004177
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004178IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004179M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004180L: netdev@vger.kernel.org
4181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004182F: include/linux/ipx.h
4183F: include/net/ipx.h
4184F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004185
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004187M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004188L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004189L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004191S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004192T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004193F: Documentation/networking/irda.txt
4194F: drivers/net/irda/
4195F: include/net/irda/
4196F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004198IRQ SUBSYSTEM
4199M: Thomas Gleixner <tglx@linutronix.de>
4200S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004201T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004202F: kernel/irq/
4203
Grant Likely7ab3a832012-02-14 14:06:47 -07004204IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4205M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4206M: Grant Likely <grant.likely@secretlab.ca>
4207T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4208S: Maintained
4209F: Documentation/IRQ-domain.txt
4210F: include/linux/irqdomain.h
4211F: kernel/irq/irqdomain.c
4212
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004213ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004214M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004216F: Documentation/isapnp.txt
4217F: drivers/pnp/isapnp/
4218F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004219
Hans Verkuild39b84202012-11-23 07:07:02 -03004220ISA RADIO MODULE
4221M: Hans Verkuil <hverkuil@xs4all.nl>
4222L: linux-media@vger.kernel.org
4223T: git git://linuxtv.org/media_tree.git
4224W: http://linuxtv.org
4225S: Maintained
4226F: drivers/media/radio/radio-isa*
4227
Harry Wei71a6d0a2011-05-11 15:13:33 -07004228iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4229M: Peter Jones <pjones@redhat.com>
4230M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4231S: Maintained
4232F: drivers/firmware/iscsi_ibft*
4233
Mike Christie14816b1e2007-11-28 16:22:06 -08004234ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004235M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004236L: open-iscsi@googlegroups.com
4237W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004238T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004240F: drivers/scsi/*iscsi*
4241F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004242
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004244M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004245L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004246L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004248T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004250F: Documentation/isdn/
4251F: drivers/isdn/
4252F: include/linux/isdn.h
4253F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254
4255ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004256M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004257L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258W: http://www.melware.de
4259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004260F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261
Jean Delvared6248702010-03-05 22:17:20 +01004262IT87 HARDWARE MONITORING DRIVER
4263M: Jean Delvare <khali@linux-fr.org>
4264L: lm-sensors@lm-sensors.org
4265S: Maintained
4266F: Documentation/hwmon/it87
4267F: drivers/hwmon/it87.c
4268
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004269IT913X MEDIA DRIVER
4270M: Malcolm Priestley <tvboxspy@gmail.com>
4271L: linux-media@vger.kernel.org
4272W: http://linuxtv.org/
4273Q: http://patchwork.linuxtv.org/project/linux-media/list/
4274S: Maintained
4275F: drivers/media/usb/dvb-usb-v2/it913x*
4276
4277IT913X FE MEDIA DRIVER
4278M: Malcolm Priestley <tvboxspy@gmail.com>
4279L: linux-media@vger.kernel.org
4280W: http://linuxtv.org/
4281Q: http://patchwork.linuxtv.org/project/linux-media/list/
4282S: Maintained
4283F: drivers/media/dvb-frontends/it913x-fe*
4284
Hans Verkuil91821ff2007-12-02 09:35:33 -03004285IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004286M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004287L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004288L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004289T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004290W: http://www.ivtvdriver.org
4291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004292F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004293F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004294F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004295
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004296IX2505V MEDIA DRIVER
4297M: Malcolm Priestley <tvboxspy@gmail.com>
4298L: linux-media@vger.kernel.org
4299W: http://linuxtv.org/
4300Q: http://patchwork.linuxtv.org/project/linux-media/list/
4301S: Maintained
4302F: drivers/media/dvb-frontends/ix2505v*
4303
Guenter Roeck4453d732010-08-09 17:21:08 -07004304JC42.4 TEMPERATURE SENSOR DRIVER
4305M: Guenter Roeck <linux@roeck-us.net>
4306L: lm-sensors@lm-sensors.org
4307S: Maintained
4308F: drivers/hwmon/jc42.c
4309F: Documentation/hwmon/jc42
4310
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004311JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004312M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004313L: jfs-discussion@lists.sourceforge.net
4314W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004315T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004317F: Documentation/filesystems/jfs.txt
4318F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004319
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004320JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004321M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004322L: netdev@vger.kernel.org
4323S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004324F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004325
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004327M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004328L: linux-mtd@lists.infradead.org
4329W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004331F: fs/jffs2/
4332F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333
Josh Triplettde456d32006-07-30 03:04:00 -07004334JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004335M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004336M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004337L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004338S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004339F: fs/jbd/
4340F: include/linux/ext3_jbd.h
4341F: include/linux/jbd.h
4342
4343JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4344M: "Theodore Ts'o" <tytso@mit.edu>
4345L: linux-ext4@vger.kernel.org
4346S: Maintained
4347F: fs/jbd2/
4348F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004349
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004350JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004351M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004352L: linux-serial@vger.kernel.org
4353S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004354F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004355
Clemens Ladischaf399172011-01-10 16:32:54 +01004356K10TEMP HARDWARE MONITORING DRIVER
4357M: Clemens Ladisch <clemens@ladisch.de>
4358L: lm-sensors@lm-sensors.org
4359S: Maintained
4360F: Documentation/hwmon/k10temp
4361F: drivers/hwmon/k10temp.c
4362
Rudolf Marek4660cb32006-10-08 22:01:26 +02004363K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004364M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004365L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004367F: Documentation/hwmon/k8temp
4368F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369
4370KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004371M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004372L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004373S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004374F: Documentation/kbuild/kconfig-language.txt
4375F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376
Vivek Goyalea6c2082006-05-20 14:59:55 -07004377KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004378M: Vivek Goyal <vgoyal@redhat.com>
4379M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004380L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004381W: http://lse.sourceforge.net/kdump/
4382S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004383F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004384
Hans Verkuilf41bf022012-11-23 07:04:36 -03004385KEENE FM RADIO TRANSMITTER DRIVER
4386M: Hans Verkuil <hverkuil@xs4all.nl>
4387L: linux-media@vger.kernel.org
4388T: git git://linuxtv.org/media_tree.git
4389W: http://linuxtv.org
4390S: Maintained
4391F: drivers/media/radio/radio-keene*
4392
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004394M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004395L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004397F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398
Michal Marek70fb7ba2010-01-29 14:22:43 +01004399KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004400M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004401T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4402T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004403L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004405F: Documentation/kbuild/
4406F: Makefile
4407F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004408F: scripts/basic/
4409F: scripts/mk*
4410F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411
4412KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004413L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004414W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004415S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004417KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004418M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004419L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420W: http://nfs.sourceforge.net/
NeilBrown98fac23f2007-01-26 00:56:57 -08004421S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004422F: fs/nfsd/
4423F: include/linux/nfsd/
4424F: fs/lockd/
4425F: fs/nfs_common/
4426F: net/sunrpc/
4427F: include/linux/lockd/
4428F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429
Avi Kivity426d62e2006-12-13 00:34:03 -08004430KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004431M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004432M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004433L: kvm@vger.kernel.org
4434W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004435S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004436F: Documentation/*/kvm.txt
4437F: arch/*/kvm/
4438F: arch/*/include/asm/kvm*
4439F: include/linux/kvm*
4440F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004441
Joerg Roedelad8003d2008-09-10 20:01:07 +02004442KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07004443M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004444L: kvm@vger.kernel.org
4445W: http://kvm.qumranet.com
4446S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004447F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004448F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004449
Hollis Blanchard513014b2008-04-16 23:28:08 -05004450KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004451M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004452L: kvm-ppc@vger.kernel.org
4453W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05004454S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004455F: arch/powerpc/include/asm/kvm*
4456F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004457
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004458KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004459M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004460L: kvm-ia64@vger.kernel.org
4461W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004462S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004463F: Documentation/ia64/kvm.txt
4464F: arch/ia64/include/asm/kvm*
4465F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004466
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004467KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004468M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004469M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004470M: linux390@de.ibm.com
4471L: linux-s390@vger.kernel.org
4472W: http://www.ibm.com/developerworks/linux/linux390/
4473S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004474F: Documentation/s390/kvm.txt
4475F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004476F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004477F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004478
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004479KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004480M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004481W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004482L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004484F: include/linux/kexec.h
4485F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004486
David Howellse9714612010-03-29 23:42:09 +01004487KEYS/KEYRINGS:
4488M: David Howells <dhowells@redhat.com>
4489L: keyrings@linux-nfs.org
4490S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004491F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004492F: include/linux/key.h
4493F: include/linux/key-type.h
4494F: include/keys/
4495F: security/keys/
4496
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004497KEYS-TRUSTED
4498M: David Safford <safford@watson.ibm.com>
4499M: Mimi Zohar <zohar@us.ibm.com>
4500L: linux-security-module@vger.kernel.org
4501L: keyrings@linux-nfs.org
4502S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004503F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004504F: include/keys/trusted-type.h
4505F: security/keys/trusted.c
4506F: security/keys/trusted.h
4507
4508KEYS-ENCRYPTED
4509M: Mimi Zohar <zohar@us.ibm.com>
4510M: David Safford <safford@watson.ibm.com>
4511L: linux-security-module@vger.kernel.org
4512L: keyrings@linux-nfs.org
4513S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004514F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004515F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004516F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004517
Jason Wessel5b778da2010-05-20 21:04:28 -05004518KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004519M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004520W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004521L: kgdb-bugreport@lists.sourceforge.net
4522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004523F: Documentation/DocBook/kgdb.tmpl
4524F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004525F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004526F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004527F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004528F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004529
Pekka Enberg456db8c2008-04-28 22:47:29 +03004530KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004531M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004532M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004533S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004534F: Documentation/kmemcheck.txt
4535F: arch/x86/include/asm/kmemcheck.h
4536F: arch/x86/mm/kmemcheck/
4537F: include/linux/kmemcheck.h
4538F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004539
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004540KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004541M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004542S: Maintained
4543F: Documentation/kmemleak.txt
4544F: include/linux/kmemleak.h
4545F: mm/kmemleak.c
4546F: mm/kmemleak-test.c
4547
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004548KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004549M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4550M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4551M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004552M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004554F: Documentation/kprobes.txt
4555F: include/linux/kprobes.h
4556F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004557
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004558KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004559M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004560W: http://miguelojeda.es/auxdisplay.htm
4561W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004563F: Documentation/auxdisplay/ks0108
4564F: drivers/auxdisplay/ks0108.c
4565F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004566
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004569S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004570F: Documentation/networking/lapb-module.txt
4571F: include/*/lapb.h
4572F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573
4574LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004575M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576L: linux-scsi@vger.kernel.org
4577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004578F: Documentation/scsi/53c700.txt
4579F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580
Richard Purdie263de9b2006-05-15 09:44:16 -07004581LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004582M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004583M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004584L: linux-leds@vger.kernel.org
4585T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004587F: drivers/leds/
4588F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004589
Jean Delvareb0461a42011-06-15 15:08:46 -07004590LEGACY EEPROM DRIVER
4591M: Jean Delvare <khali@linux-fr.org>
4592S: Maintained
4593F: Documentation/misc-devices/eeprom
4594F: drivers/misc/eeprom/eeprom.c
4595
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004597M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598L: legousb-devel@lists.sourceforge.net
4599W: http://legousb.sourceforge.net/
4600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004601F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602
Michael Krufky055616a2012-10-02 00:56:06 -03004603LG2160 MEDIA DRIVER
4604M: Michael Krufky <mkrufky@linuxtv.org>
4605L: linux-media@vger.kernel.org
4606W: http://linuxtv.org/
4607W: http://github.com/mkrufky
4608Q: http://patchwork.linuxtv.org/project/linux-media/list/
4609T: git git://linuxtv.org/mkrufky/tuners.git
4610S: Maintained
4611F: drivers/media/dvb-frontends/lg2160.*
4612
Michael Krufky6f0e7722012-10-02 00:56:00 -03004613LGDT3305 MEDIA DRIVER
4614M: Michael Krufky <mkrufky@linuxtv.org>
4615L: linux-media@vger.kernel.org
4616W: http://linuxtv.org/
4617W: http://github.com/mkrufky
4618Q: http://patchwork.linuxtv.org/project/linux-media/list/
4619T: git git://linuxtv.org/mkrufky/tuners.git
4620S: Maintained
4621F: drivers/media/dvb-frontends/lgdt3305.*
4622
Rusty Russell568a17f2007-10-25 14:12:24 +10004623LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004624M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004625L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004626W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004627S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004628F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004629F: arch/x86/lguest/
4630F: drivers/lguest/
4631F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004632F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004633
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004635M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636W: http://www.ibm.com/linux/ltc/projects/ppc
4637S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004638F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004640LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004641M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4642M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004644L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004645Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004646T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004648F: Documentation/powerpc/
4649F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650
4651LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004652M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004654L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004656F: arch/powerpc/platforms/powermac/
4657F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658
Grant Likely77a76362008-07-12 12:11:43 -06004659LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004660M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004661L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004662T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004664F: arch/powerpc/platforms/512x/
4665F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666
4667LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004668M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004669M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004671L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004672T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004674F: arch/powerpc/platforms/40x/
4675F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676
Grant Likely260c02a2007-10-02 12:15:34 +10004677LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004678M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004679W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004680L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004681T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004683F: arch/powerpc/*/*virtex*
4684F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685
Tom Rinie93adf12005-07-26 12:49:53 -07004686LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004687M: Vitaly Bordug <vitb@kernel.crashing.org>
4688M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004689W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004690L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004691S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004692F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004693
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004695M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004696W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004697L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004698S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004699F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004700F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701
Olof Johanssonab06ff32006-09-06 14:44:54 -05004702LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004703M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004704L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004705S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004706F: arch/powerpc/platforms/pasemi/
4707F: drivers/*/*pasemi*
4708F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004709
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004711M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004712L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713S: Supported
4714
Harry Weia23ce6d2011-02-11 16:52:20 +01004715LIS3LV02D ACCELEROMETER DRIVER
4716M: Eric Piel <eric.piel@tremplin-utc.net>
4717S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004718F: Documentation/misc-devices/lis3lv02d
4719F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004720F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004721
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004722LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004723M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004725F: include/linux/llc.h
4726F: include/net/llc*
4727F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004728
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004729LM73 HARDWARE MONITOR DRIVER
4730M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4731L: lm-sensors@lm-sensors.org
4732S: Maintained
4733F: drivers/hwmon/lm73.c
4734
Jean Delvare156e2d12011-07-25 21:46:11 +02004735LM78 HARDWARE MONITOR DRIVER
4736M: Jean Delvare <khali@linux-fr.org>
4737L: lm-sensors@lm-sensors.org
4738S: Maintained
4739F: Documentation/hwmon/lm78
4740F: drivers/hwmon/lm78.c
4741
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004743M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004744L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004746F: Documentation/hwmon/lm83
4747F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748
4749LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004750M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004751L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004753F: Documentation/hwmon/lm90
4754F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004756LME2510 MEDIA DRIVER
4757M: Malcolm Priestley <tvboxspy@gmail.com>
4758L: linux-media@vger.kernel.org
4759W: http://linuxtv.org/
4760Q: http://patchwork.linuxtv.org/project/linux-media/list/
4761S: Maintained
4762F: drivers/media/usb/dvb-usb-v2/lmedm04*
4763
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004764LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004765M: Peter Zijlstra <peterz@infradead.org>
4766M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004767T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004769F: Documentation/lockdep*.txt
4770F: Documentation/lockstat.txt
4771F: include/linux/lockdep.h
4772F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004773
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004774LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004775M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004776L: linux-ntfs-dev@lists.sourceforge.net
4777W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004779F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004780F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781
Joern Engelef6ada32009-11-20 22:17:12 +01004782LogFS
4783M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304784M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004785L: logfs@logfs.org
4786W: logfs.org
4787S: Maintained
4788F: fs/logfs/
4789
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004790LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004791M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004792M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004793L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004794L: linux-scsi@vger.kernel.org
4795W: http://www.lsilogic.com/support
4796S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004797F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004798
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004800M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801L: linux-scsi@vger.kernel.org
4802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004803F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804
Guenter Roecke5f5c992010-06-25 11:59:54 -07004805LTC4261 HARDWARE MONITOR DRIVER
4806M: Guenter Roeck <linux@roeck-us.net>
4807L: lm-sensors@lm-sensors.org
4808S: Maintained
4809F: Documentation/hwmon/ltc4261
4810F: drivers/hwmon/ltc4261.c
4811
Mike Frysinger81365c32008-10-29 14:01:12 -07004812LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004813M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004814M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004815M: Cyril Hrubis <chrubis@suse.cz>
4816M: Caspar Zhang <caspar@casparzhang.com>
4817M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004818L: ltp-list@lists.sourceforge.net (subscribers-only)
4819W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004820T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004821T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004822S: Maintained
4823
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004824M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004825M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004826L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004827L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4828W: http://www.linux-m32r.org/
4829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004830F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004831
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004833M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834L: linux-m68k@lists.linux-m68k.org
4835W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004836T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004838F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004839F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840
4841M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004842M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004844L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004846F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847
4848M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004849M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850W: http://www.tazenda.demon.co.uk/phil/linux-hp
4851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004852F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004854M88RS2000 MEDIA DRIVER
4855M: Malcolm Priestley <tvboxspy@gmail.com>
4856L: linux-media@vger.kernel.org
4857W: http://linuxtv.org/
4858Q: http://patchwork.linuxtv.org/project/linux-media/list/
4859S: Maintained
4860F: drivers/media/dvb-frontends/m88rs2000*
4861
Jiri Benc64a327a2007-05-05 11:47:08 -07004862MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004863M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004864L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004865W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004866T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4867T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004869F: Documentation/networking/mac80211-injection.txt
4870F: include/net/mac80211.h
4871F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004872
Stefano Brivio1036d862007-12-23 04:46:27 +01004873MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004874M: Stefano Brivio <stefano.brivio@polimi.it>
4875M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004876L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004877W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004878T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4879T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004881F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004882
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004883MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004884M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004885L: netdev@vger.kernel.org
4886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004887F: drivers/net/macvlan.c
4888F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004889
Michael Kerriskfaf16682005-07-31 22:34:47 -07004890MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004891M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004892W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004893L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004894S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004895
stephen hemminger44c14c12012-04-02 12:59:47 +00004896MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4897M: Mirko Lindner <mlindner@marvell.com>
4898M: Stephen Hemminger <shemminger@vyatta.com>
4899L: netdev@vger.kernel.org
4900S: Maintained
4901F: drivers/net/ethernet/marvell/sk*
4902
Stefano Brivio74cda162007-11-19 20:27:46 +01004903MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004904M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004905L: libertas-dev@lists.infradead.org
4906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004907F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004908
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004909MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004910M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004911L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004912S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004913F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004914F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915
Bing Zhaofcad5842011-07-13 13:11:58 -07004916MARVELL MWIFIEX WIRELESS DRIVER
4917M: Bing Zhao <bzhao@marvell.com>
4918L: linux-wireless@vger.kernel.org
4919S: Maintained
4920F: drivers/net/wireless/mwifiex/
4921
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004922MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004923M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004924L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004925S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004926F: drivers/net/wireless/mwl8k.c
4927
Pierre Ossman2a695672009-03-16 19:52:26 +01004928MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004929M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004930S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004931F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004932
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004934L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004935S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004936F: drivers/video/matrox/matroxfb_*
4937F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938
Guenter Roeckca462082012-06-01 23:28:23 -07004939MAX16065 HARDWARE MONITOR DRIVER
4940M: Guenter Roeck <linux@roeck-us.net>
4941L: lm-sensors@lm-sensors.org
4942S: Maintained
4943F: Documentation/hwmon/max16065
4944F: drivers/hwmon/max16065.c
4945
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004946MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004947M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004948L: lm-sensors@lm-sensors.org
4949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004950F: Documentation/hwmon/max6650
4951F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004952
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03004953MAXIRADIO FM RADIO RECEIVER DRIVER
4954M: Hans Verkuil <hverkuil@xs4all.nl>
4955L: linux-media@vger.kernel.org
4956T: git git://linuxtv.org/media_tree.git
4957W: http://linuxtv.org
4958S: Maintained
4959F: drivers/media/radio/radio-maxiradio*
4960
Joe Perches127c49a2009-04-08 08:34:04 -07004961MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004962M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07004963P: LinuxTV.org Project
4964L: linux-media@vger.kernel.org
4965W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004966Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004967T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07004968S: Maintained
4969F: Documentation/dvb/
4970F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004971F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004972F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004973F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004974F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02004975F: include/uapi/linux/dvb/
4976F: include/uapi/linux/videodev2.h
4977F: include/uapi/linux/media.h
4978F: include/uapi/linux/v4l2-*
4979F: include/uapi/linux/meye.h
4980F: include/uapi/linux/ivtv*
4981F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004982
4983MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004984M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004985L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004986W: http://megaraid.lsilogic.com
4987S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004988F: Documentation/scsi/megaraid.txt
4989F: drivers/scsi/megaraid.*
4990F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004991
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004992MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994W: http://www.linux-mm.org
4995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004996F: include/linux/mm.h
4997F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004998
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004999MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005000M: Johannes Weiner <hannes@cmpxchg.org>
5001M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005002M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005003M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005004L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005005L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005007F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005008F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005009
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005011M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005013W: http://www.linux-mtd.infradead.org/
5014Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08005015T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005017F: drivers/mtd/
5018F: include/linux/mtd/
5019F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020
Michal Simekc6375b02009-03-27 14:25:52 +01005021MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005022M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005023L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005024W: http://www.monstr.eu/fdt/
5025T: git git://git.monstr.eu/linux-2.6-microblaze.git
5026S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005027F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028
5029MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005030M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005032F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033
5034MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005035M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005037W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005038T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005039Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005040S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005041F: Documentation/mips/
5042F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005045M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005047F: include/linux/module.h
5048F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049
5050MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005052S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005053F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005054F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005055F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056
Pavel Pisac58ff042007-05-16 01:10:41 +02005057MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005058M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005059L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02005060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005061F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02005062
Jiri Slabyb9705b62008-04-30 00:53:48 -07005063MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005064M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005066F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005067F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005068
Alexey Klimov889b2f82012-11-16 17:43:59 -03005069MR800 AVERMEDIA USB FM RADIO DRIVER
5070M: Alexey Klimov <klimov.linux@gmail.com>
5071L: linux-media@vger.kernel.org
5072T: git git://linuxtv.org/media_tree.git
5073S: Maintained
5074F: drivers/media/radio/radio-mr800.c
5075
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005076MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07005077M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05005078L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005080F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005081
Anisse Astier0f1006b2009-12-17 11:28:49 +01005082MSI WMI SUPPORT
5083M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd09448532010-02-11 10:40:13 -05005084L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005085S: Supported
5086F: drivers/platform/x86/msi-wmi.c
5087
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005088MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005089M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005090T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005091S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005092F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005093
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005094MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005095M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005096L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005097T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005099F: drivers/mmc/
5100F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005101
David Brownell15a05802007-08-08 09:12:54 -07005102MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005103S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005104F: drivers/mmc/host/mmc_spi.c
5105F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005106
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005108M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005110F: Documentation/sound/oss/MultiSound
5111F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112
Jiri Slabyd7354102006-12-08 02:38:35 -08005113MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005114S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005115F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005116F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005117
Felipe Balbi550a7372008-07-24 12:27:36 +03005118MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005119M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005120L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005121T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005123F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005124
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005125MXL5007T MEDIA DRIVER
5126M: Michael Krufky <mkrufky@linuxtv.org>
5127L: linux-media@vger.kernel.org
5128W: http://linuxtv.org/
5129W: http://github.com/mkrufky
5130Q: http://patchwork.linuxtv.org/project/linux-media/list/
5131T: git git://linuxtv.org/mkrufky/tuners.git
5132S: Maintained
5133F: drivers/media/tuners/mxl5007t.*
5134
Brice Goglin2d3cf582008-05-17 12:45:36 +02005135MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005136M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005137L: netdev@vger.kernel.org
5138W: http://www.myri.com/scs/download-Myri10GE.html
5139S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005140F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005141
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005143S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005144F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145
Daniel Mack23dc05a2011-05-18 11:28:38 +02005146NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5147M: Daniel Mack <zonque@gmail.com>
5148S: Maintained
5149L: alsa-devel@alsa-project.org
5150W: http://www.native-instruments.com
5151F: sound/usb/caiaq/
5152
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005154M: Petr Vandrovec <petr@vandrovec.name>
5155S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005156F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157
5158NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005159M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160L: linux-scsi@vger.kernel.org
5161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005162F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005164NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005165M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005166L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005167W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005168S: Supported
5169F: drivers/infiniband/hw/nes/
5170
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005171NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05005172M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07005173L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005175F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005176
Jon Masonb2f5a052010-07-15 08:47:27 +00005177NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005178M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005179L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005180S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005181F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005182F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005183F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005184
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186P: Harald Welte
5187P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005188M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005189M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005190L: netfilter-devel@vger.kernel.org
5191L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005192L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193W: http://www.netfilter.org/
5194W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005195T: git git://1984.lsi.us.es/nf
5196T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005198F: include/linux/netfilter*
5199F: include/linux/netfilter/
5200F: include/net/netfilter/
5201F: net/*/netfilter.c
5202F: net/*/netfilter/
5203F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204
Paul Moore4cc67732006-09-25 15:57:13 -07005205NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005206M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005207W: http://netlabel.sf.net
5208L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005209S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005210F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005211F: include/net/netlabel.h
5212F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005213
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005215M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005217W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005219F: include/linux/netrom.h
5220F: include/net/netrom.h
5221F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005223NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005224M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005226F: Documentation/blockdev/nbd.txt
5227F: drivers/block/nbd.c
5228F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229
Neil Horman6e436502009-10-05 03:56:55 +00005230NETWORK DROP MONITOR
5231M: Neil Horman <nhorman@tuxdriver.com>
5232L: netdev@vger.kernel.org
5233S: Maintained
5234W: https://fedorahosted.org/dropwatch/
5235F: net/core/drop_monitor.c
5236
Linus Torvalds1da177e2005-04-16 15:20:36 -07005237NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005238M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005239L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005240W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00005241W: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005242T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5243T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005245F: net/
5246F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005247F: include/linux/in.h
5248F: include/linux/net.h
5249F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005250
5251NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005252M: "David S. Miller" <davem@davemloft.net>
5253M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005254M: James Morris <jmorris@namei.org>
5255M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5256M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005257L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005258T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005260F: net/ipv4/
5261F: net/ipv6/
5262F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005263F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264
David S. Miller73b76562012-10-16 14:08:40 -04005265NETWORKING [IPSEC]
5266M: Steffen Klassert <steffen.klassert@secunet.com>
5267M: Herbert Xu <herbert@gondor.apana.org.au>
5268M: "David S. Miller" <davem@davemloft.net>
5269L: netdev@vger.kernel.org
5270T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5271S: Maintained
5272F: net/xfrm/
5273F: net/key/
5274F: net/ipv4/xfrm*
5275F: net/ipv6/xfrm*
5276F: include/uapi/linux/xfrm.h
5277F: include/net/xfrm.h
5278
James Morris10e2ff12007-08-25 14:41:28 -07005279NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005280M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005281L: netdev@vger.kernel.org
5282S: Maintained
5283
John W. Linville29f8f632006-01-18 14:52:48 -08005284NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005285M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005286L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005287Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005288T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005289S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005290F: net/mac80211/
5291F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005292F: net/wireless/
5293F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005294F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005295F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005296F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005297
Joe Perches788873a2009-04-16 09:38:45 +00005298NETWORKING DRIVERS
5299L: netdev@vger.kernel.org
5300W: http://www.linuxfoundation.org/en/Net
Joe Perches08deed12012-03-23 15:01:57 -07005301T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5302T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005303S: Odd Fixes
5304F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005305F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005306F: include/linux/netdevice.h
5307F: include/linux/arcdevice.h
5308F: include/linux/etherdevice.h
5309F: include/linux/fcdevice.h
5310F: include/linux/fddidevice.h
5311F: include/linux/hippidevice.h
5312F: include/linux/inetdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005313
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005314NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005315M: Sony Chacko <sony.chacko@qlogic.com>
5316M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005317L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005318W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005319S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005320F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005321
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005322NFC SUBSYSTEM
5323M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5324M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5325M: Samuel Ortiz <sameo@linux.intel.com>
5326L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005327L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005328S: Maintained
5329F: net/nfc/
5330F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005331F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005332F: drivers/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005334NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005335M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005336L: linux-nfs@vger.kernel.org
5337W: http://client.linux-nfs.org
5338T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005340F: fs/lockd/
5341F: fs/nfs/
5342F: fs/nfs_common/
5343F: net/sunrpc/
5344F: include/linux/lockd/
5345F: include/linux/nfs*
5346F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347
5348NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005349M: Jan-Pascal van Best <janpascal@vanbest.org>
5350M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005351L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005353F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005355NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005356M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005357L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005358W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005359T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005360S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005361F: Documentation/filesystems/nilfs2.txt
5362F: fs/nilfs2/
5363F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005364
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005366M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005369F: Documentation/scsi/NinjaSCSI.txt
5370F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371
5372NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005373M: GOTO Masanori <gotom@debian.or.jp>
5374M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005377F: Documentation/scsi/NinjaSCSI.txt
5378F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005381M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005383W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005384T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005385S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005386F: Documentation/filesystems/ntfs.txt
5387F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005389NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005390M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005391L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005393F: drivers/video/riva/
5394F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395
Tony Lindgrenf5525782009-05-28 13:23:53 -07005396OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005397M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005398L: linux-omap@vger.kernel.org
5399W: http://www.muru.com/linux/omap/
5400W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005401Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005402T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005403S: Maintained
Felipe Contreras4e04d5a32009-09-21 17:04:25 -07005404F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005405F: drivers/i2c/busses/i2c-omap.c
5406F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005407
5408OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005409M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005410L: linux-omap@vger.kernel.org
5411S: Maintained
5412F: arch/arm/*omap*/*clock*
5413
5414OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005415M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005416L: linux-omap@vger.kernel.org
5417S: Maintained
5418F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005419F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005420
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005421OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5422M: Rajendra Nayak <rnayak@ti.com>
5423M: Paul Walmsley <paul@pwsan.com>
5424L: linux-omap@vger.kernel.org
5425S: Maintained
5426F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5427F: arch/arm/mach-omap2/powerdomain44xx.c
5428F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5429F: arch/arm/mach-omap2/clockdomain44xx.c
5430
Tony Lindgrenf5525782009-05-28 13:23:53 -07005431OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005432M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005433M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005434L: alsa-devel@alsa-project.org (subscribers-only)
5435L: linux-omap@vger.kernel.org
5436S: Maintained
5437F: sound/soc/omap/
5438
5439OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005440M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005441L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005442L: linux-omap@vger.kernel.org
5443S: Maintained
5444F: drivers/video/omap/
5445
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005446OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005447M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005448L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005449L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005450S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005451F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005452F: Documentation/arm/OMAP/DSS
5453
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005454OMAP HARDWARE SPINLOCK SUPPORT
5455M: Ohad Ben-Cohen <ohad@wizery.com>
5456L: linux-omap@vger.kernel.org
5457S: Maintained
5458F: drivers/hwspinlock/omap_hwspinlock.c
5459F: arch/arm/mach-omap2/hwspinlock.c
5460
Tony Lindgrenf5525782009-05-28 13:23:53 -07005461OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005462M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005463L: linux-omap@vger.kernel.org
5464S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005465F: drivers/mmc/host/omap.c
5466
5467OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305468M: Venkatraman S <svenkatr@ti.com>
5469L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005470L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305471S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005472F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005473
5474OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005475M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005476S: Maintained
5477F: drivers/char/hw_random/omap-rng.c
5478
Paul Walmsleyf400c822010-12-06 19:08:54 -07005479OMAP HWMOD SUPPORT
5480M: Benoît Cousson <b-cousson@ti.com>
5481M: Paul Walmsley <paul@pwsan.com>
5482L: linux-omap@vger.kernel.org
5483S: Maintained
5484F: arch/arm/mach-omap2/omap_hwmod.c
5485F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5486
5487OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5488M: Benoît Cousson <b-cousson@ti.com>
5489L: linux-omap@vger.kernel.org
5490S: Maintained
5491F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5492
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005493OMAP IMAGE SIGNAL PROCESSOR (ISP)
5494M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5495L: linux-media@vger.kernel.org
5496S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005497F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005498
Tony Lindgrenf5525782009-05-28 13:23:53 -07005499OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005500M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005501L: linux-usb@vger.kernel.org
5502L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005503T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005504S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005505F: drivers/usb/*/*omap*
5506F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005507
Kevin Hilman6d994712012-07-16 10:05:07 -07005508OMAP GPIO DRIVER
5509M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5510M: Kevin Hilman <khilman@ti.com>
5511L: linux-omap@vger.kernel.org
5512S: Maintained
5513F: drivers/gpio/gpio-omap.c
5514
Bob Copeland0ad122d2008-07-25 19:45:18 -07005515OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005516M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005517L: linux-karma-devel@lists.sourceforge.net
5518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005519F: Documentation/filesystems/omfs.txt
5520F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005521
Harald Weltec1986ee2005-11-13 16:06:29 -08005522OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005523M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005525F: drivers/char/pcmcia/cm4000_cs.c
5526F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005527
Harald Welte77c44ab2005-11-13 16:06:26 -08005528OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005529M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005531F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005532
Jonathan Corbet77d51402007-03-22 19:44:17 -03005533OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005534M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005535L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005536T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005537S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005538F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005539
Thomas Gleixner431bca72007-05-02 09:31:35 +02005540ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005541M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005542L: linux-mtd@lists.infradead.org
5543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005544F: drivers/mtd/onenand/
5545F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005546
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005548M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005549L: osst-users@lists.sourceforge.net
5550L: linux-scsi@vger.kernel.org
5551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005552F: drivers/scsi/osst*
5553F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005554
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005555OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005556M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005557L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005559F: Documentation/i2c/busses/i2c-ocores
5560F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005561
Grant Likely860c44c2009-10-26 16:49:49 -07005562OPEN FIRMWARE AND FLATTENED DEVICE TREE
5563M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005564M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005565L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005566W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005567T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005568S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005569F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005570F: drivers/of
5571F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005572F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005573K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005574K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005575
Jonas Bonn19f9d392011-06-04 22:00:38 +03005576OPENRISC ARCHITECTURE
5577M: Jonas Bonn <jonas@southpole.se>
5578W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005579L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005580S: Maintained
5581T: git git://openrisc.net/~jonas/linux
5582F: arch/openrisc
5583
Jesse Grossccb13522011-10-25 19:26:31 -07005584OPENVSWITCH
5585M: Jesse Gross <jesse@nicira.com>
5586L: dev@openvswitch.org
5587W: http://openvswitch.org
5588T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5589S: Maintained
5590F: net/openvswitch/
5591
Clemens Ladischaf399172011-01-10 16:32:54 +01005592OPL4 DRIVER
5593M: Clemens Ladisch <clemens@ladisch.de>
5594L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5595T: git git://git.alsa-project.org/alsa-kernel.git
5596S: Maintained
5597F: sound/drivers/opl4/
5598
Linus Torvalds1da177e2005-04-16 15:20:36 -07005599OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005600M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601L: oprofile-list@lists.sf.net
5602S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005603F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005604F: arch/*/oprofile/
5605F: drivers/oprofile/
5606F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005607
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005608ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005609M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005610M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005611L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5612W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005613T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005614S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005615F: Documentation/filesystems/ocfs2.txt
5616F: Documentation/filesystems/dlmfs.txt
5617F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005618
Linus Torvalds1da177e2005-04-16 15:20:36 -07005619ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005620L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005621W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005622W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005623S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005624F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005625
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005626OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005627M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005628M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005629L: osd-dev@open-osd.org
5630W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005631T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005632S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005633F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005634F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005635F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005636
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005637P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005638M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005639L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005640W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005642F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005643
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005644PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005645M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005646L: netdev@vger.kernel.org
5647S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005648F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005649
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005650PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005651M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005652L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005654F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005655
Steffen Klassert48fc2672010-08-13 10:10:46 -04005656PADATA PARALLEL EXECUTION MECHANISM
5657M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005658L: linux-crypto@vger.kernel.org
5659S: Maintained
5660F: kernel/padata.c
5661F: include/linux/padata.h
5662F: Documentation/padata.txt
5663
Harald Welte709ee532008-09-23 17:46:57 +02005664PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005665M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05005666L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005668F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005669
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005670PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005671M: David Howells <dhowells@redhat.com>
5672M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005673L: linux-am33-list@redhat.com (moderated for non-subscribers)
5674W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005676F: Documentation/mn10300/
5677F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005678
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005680L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005681S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005682F: drivers/parport/
5683F: include/linux/parport*.h
5684F: drivers/char/ppdev.c
5685F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005686
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005687PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005688M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005689M: Chris Wright <chrisw@sous-sol.org>
5690M: Alok Kataria <akataria@vmware.com>
5691M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005692L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005693S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005694F: Documentation/ia64/paravirt_ops.txt
5695F: arch/*/kernel/paravirt*
5696F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005697
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005699M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005700L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005701W: http://www.torque.net/linux-pp.html
5702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005703F: Documentation/blockdev/paride.txt
5704F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705
5706PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005707M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005708M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005709L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005710W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005711Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005712T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005714F: arch/parisc/
5715F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716
Jim Cromie1662d322006-10-06 00:43:59 -07005717PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005718M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005719L: lm-sensors@lm-sensors.org
5720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005721F: Documentation/hwmon/pc87360
5722F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005723
5724PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005725M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005727F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005728
Jean Delvare1ad107f2010-08-14 21:09:00 +02005729PC87427 HARDWARE MONITORING DRIVER
5730M: Jean Delvare <khali@linux-fr.org>
5731L: lm-sensors@lm-sensors.org
5732S: Maintained
5733F: Documentation/hwmon/pc87427
5734F: drivers/hwmon/pc87427.c
5735
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005736PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005737M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005738S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005739F: drivers/leds/leds-pca9532.c
5740F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005741
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005742PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005743M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005744L: linux-i2c@vger.kernel.org
5745S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005746F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005747
Wolfram Sanga1867d32009-09-18 22:45:51 +02005748PCA9564/PCA9665 I2C BUS DRIVER
5749M: Wolfram Sang <w.sang@pengutronix.de>
5750L: linux-i2c@vger.kernel.org
5751S: Maintained
5752F: drivers/i2c/algos/i2c-algo-pca.c
5753F: drivers/i2c/busses/i2c-pca-*
5754F: include/linux/i2c-algo-pca.h
5755F: include/linux/i2c-pca-platform.h
5756
Khalid Aziz3971dae2012-04-12 12:49:13 -07005757PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005758M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005759S: Maintained
5760F: drivers/firmware/pcdp.*
5761
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005762PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005763M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005764L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005765S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005766F: Documentation/PCI/pci-error-recovery.txt
5767F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005768
Linus Torvalds1da177e2005-04-16 15:20:36 -07005769PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005770M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005771L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005772Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005773T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005775F: Documentation/PCI/
5776F: drivers/pci/
5777F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005780P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005781L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005782W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005783T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005785F: Documentation/pcmcia/
5786F: drivers/pcmcia/
5787F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005788
5789PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005790M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005791L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005792S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005793F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794
Steffen Klassert48fc2672010-08-13 10:10:46 -04005795PCRYPT PARALLEL CRYPTO ENGINE
5796M: Steffen Klassert <steffen.klassert@secunet.com>
5797L: linux-crypto@vger.kernel.org
5798S: Maintained
5799F: crypto/pcrypt.c
5800F: include/crypto/pcrypt.h
5801
Tejun Heoe72df0b2010-12-10 17:02:49 +01005802PER-CPU MEMORY ALLOCATOR
5803M: Tejun Heo <tj@kernel.org>
5804M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005805T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5806S: Maintained
5807F: include/linux/percpu*.h
5808F: mm/percpu*.c
5809F: arch/*/include/asm/percpu.h
5810
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005811PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005812M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005813S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005814F: include/linux/delayacct.h
5815F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005816
Ingo Molnar57c0c152009-09-21 12:20:38 +02005817PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005818M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5819M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005820M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005821M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005822T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005823S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005824F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005825F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005826F: arch/*/kernel/perf_event*.c
5827F: arch/*/kernel/*/perf_event*.c
5828F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005829F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005830F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005831F: arch/*/kernel/perf_callchain.c
5832F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005833
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005834PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005835M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005836L: linux-abi-devel@lists.sourceforge.net
5837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005838F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005839
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005840PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005841M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005842S: Supported
5843F: Documentation/networking/phonet.txt
5844F: include/linux/phonet.h
5845F: include/net/phonet/
5846F: net/phonet/
5847
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005849M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850L: linux-mtd@lists.infradead.org
5851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005852F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853
Bruno Prémontefdbb102012-07-30 21:39:03 +02005854PICOLCD HID DRIVER
5855M: Bruno Prémont <bonbons@linux-vserver.org>
5856L: linux-input@vger.kernel.org
5857S: Maintained
5858F: drivers/hid/hid-picolcd*
5859
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005860PICOXCELL SUPPORT
5861M: Jamie Iles <jamie@jamieiles.com>
5862L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5863T: git git://github.com/jamieiles/linux-2.6-ji.git
5864S: Supported
5865F: arch/arm/mach-picoxcell
5866F: drivers/*/picoxcell*
5867F: drivers/*/*/picoxcell*
5868
Linus Walleij2744e8a2011-05-02 20:50:54 +02005869PIN CONTROL SUBSYSTEM
5870M: Linus Walleij <linus.walleij@linaro.org>
5871S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005872F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005873F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005874
Viresh Kumardeda8282012-03-28 22:27:07 +05305875PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005876M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305877L: spear-devel@list.st.com
5878L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5879W: http://www.st.com/spear
5880S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005881F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305882
Peter Osterlund249a6772005-09-27 21:45:30 -07005883PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005884M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005886F: drivers/block/pktcdvd.c
5887F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005888
GuanXuetaob31d8272011-01-16 00:35:49 +08005889PKUNITY SOC DRIVERS
5890M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5891W: http://mprc.pku.edu.cn/~guanxuetao/linux
5892S: Maintained
5893T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5894F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005895F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005896F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005897F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005898
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005899PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005900M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005901L: lm-sensors@lm-sensors.org
5902W: http://www.lm-sensors.org/
5903W: http://www.roeck-us.net/linux/drivers/
5904T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5905S: Maintained
5906F: Documentation/hwmon/pmbus
5907F: drivers/hwmon/pmbus/
5908F: include/linux/i2c/pmbus.h
5909
Anil Ravindranath89a36812009-08-25 17:35:18 -07005910PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005911M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005912L: linux-scsi@vger.kernel.org
5913W: http://www.pmc-sierra.com/
5914S: Supported
5915F: drivers/scsi/pmcraid.*
5916
jack wangdbf9bfe2009-10-14 16:19:21 +08005917PMC SIERRA PM8001 DRIVER
5918M: jack_wang@usish.com
5919M: lindar_liu@usish.com
5920L: linux-scsi@vger.kernel.org
5921S: Supported
5922F: drivers/scsi/pm8001/
5923
Linus Torvalds1da177e2005-04-16 15:20:36 -07005924POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005925M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005926T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005928F: fs/timerfd.c
5929F: include/linux/timer*
5930F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005931
Anton Vorontsov3be86142007-07-15 04:43:36 +04005932POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005933M: Anton Vorontsov <cbou@mail.ru>
5934M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005935T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005937F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005938F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005939
Linus Torvalds1da177e2005-04-16 15:20:36 -07005940PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005941M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005942M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005944F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005945
Vitaly Wool999445d2007-01-04 13:07:03 +01005946PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005947M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005948L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005950F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005951
Linus Torvalds1da177e2005-04-16 15:20:36 -07005952PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005953M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954L: linux-ppp@vger.kernel.org
5955S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005956F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957
5958PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005959M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005961F: net/atm/pppoatm.c
5962F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005963
5964PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005965M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005966S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005967F: drivers/net/ppp/pppoe.c
5968F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969
James Chapmana6d23702007-06-27 15:53:17 -07005970PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005971M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005972S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005973F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005974F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005975
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005976PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005977M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005978W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5979L: linuxpps@ml.enneenne.com (subscribers-only)
5980S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005981F: Documentation/pps/
5982F: drivers/pps/
5983F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005984
Harry Wei71a6d0a2011-05-11 15:13:33 -07005985PPTP DRIVER
5986M: Dmitry Kozlov <xeb@mail.ru>
5987L: netdev@vger.kernel.org
5988S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005989F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005990W: http://sourceforge.net/projects/accel-pptp
5991
Linus Torvalds1da177e2005-04-16 15:20:36 -07005992PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005993M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994L: kpreempt-tech@lists.sourceforge.net
5995W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5996S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005997F: Documentation/preempt-locking.txt
5998F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999
6000PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006001M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006002L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006003W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006004S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006005F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006007PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006008M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006009L: linux-ide@vger.kernel.org
6010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006011F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006012
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006013PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006014M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006015L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006016L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006017S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006018F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006019
Geoff Levandf58a9d12006-11-23 00:46:51 +01006020PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006021M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006022L: linuxppc-dev@lists.ozlabs.org
6023L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006025F: arch/powerpc/boot/ps3*
6026F: arch/powerpc/include/asm/lv1call.h
6027F: arch/powerpc/include/asm/ps3*.h
6028F: arch/powerpc/platforms/ps3/
6029F: drivers/*/ps3*
6030F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006031F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006032F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006033F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006034
Jim Pariscffb4add2009-01-06 11:32:10 +00006035PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006036M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006037L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006038S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006039F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006040
Anton Vorontsov8defe592012-08-03 18:07:20 -07006041PSTORE FILESYSTEM
6042M: Anton Vorontsov <cbouatmailru@gmail.com>
6043M: Colin Cross <ccross@android.com>
6044M: Kees Cook <keescook@chromium.org>
6045M: Tony Luck <tony.luck@intel.com>
6046S: Maintained
6047T: git git://git.infradead.org/users/cbou/linux-pstore.git
6048F: fs/pstore/
6049F: include/linux/pstore*
6050F: drivers/firmware/efivars.c
6051F: drivers/acpi/apei/erst.c
6052
Richard Cochran7fbc4152012-03-10 01:55:53 +00006053PTP HARDWARE CLOCK SUPPORT
6054M: Richard Cochran <richardcochran@gmail.com>
6055S: Maintained
6056W: http://linuxptp.sourceforge.net/
6057F: Documentation/ABI/testing/sysfs-ptp
6058F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006059F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006060F: drivers/net/phy/dp83640*
6061F: drivers/ptp/*
6062F: include/linux/ptp_cl*
6063
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006064PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006065M: Roland McGrath <roland@redhat.com>
6066M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006067S: Maintained
6068F: include/asm-generic/syscall.h
6069F: include/linux/ptrace.h
6070F: include/linux/regset.h
6071F: include/linux/tracehook.h
6072F: kernel/ptrace.c
6073
Michael Krufky83202042006-07-03 00:24:18 -07006074PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006075M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006076L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006077L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006078W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006079T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006081F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006082F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006083
Hans de Goede39532e62012-11-04 17:05:59 -03006084PWC WEBCAM DRIVER
6085M: Hans de Goede <hdegoede@redhat.com>
6086L: linux-media@vger.kernel.org
6087T: git git://linuxtv.org/media_tree.git
6088S: Maintained
6089F: drivers/media/usb/pwc/*
6090
Thierry Reding200efed2012-03-27 13:16:18 +02006091PWM SUBSYSTEM
6092M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006093L: linux-kernel@vger.kernel.org
6094S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006095W: http://gitorious.org/linux-pwm
6096T: git git://gitorious.org/linux-pwm/linux-pwm.git
6097F: Documentation/pwm.txt
6098F: Documentation/devicetree/bindings/pwm/
6099F: include/linux/pwm.h
6100F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006101F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006102F: drivers/video/backlight/pwm_bl.c
6103F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006104
Eric Miao30ec2612008-06-12 15:21:41 -07006105PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006106M: Eric Miao <eric.y.miao@gmail.com>
6107M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006108M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006109L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006110T: git git://github.com/hzhuang1/linux.git
6111T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006113F: arch/arm/mach-pxa/
6114F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006115F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006116F: drivers/usb/gadget/pxa2*
6117F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006118F: sound/arm/pxa*
6119F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006120
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006121MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006122M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006123M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006124L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006125T: git git://github.com/hzhuang1/linux.git
6126T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006127S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006128F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006129
Pierre Ossman272f1332007-05-14 21:25:26 +02006130PXA MMCI DRIVER
6131S: Orphan
6132
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006133PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006134M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006135L: rtc-linux@googlegroups.com
6136S: Maintained
6137
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006138QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006139M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006140L: linux-rdma@vger.kernel.org
6141S: Supported
6142F: drivers/infiniband/hw/qib/
6143
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006144QLOGIC QLA1280 SCSI DRIVER
6145M: Michael Reed <mdr@sgi.com>
6146L: linux-scsi@vger.kernel.org
6147S: Maintained
6148F: drivers/scsi/qla1280.[ch]
6149
Linus Torvalds1da177e2005-04-16 15:20:36 -07006150QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006151M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006152M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006153L: linux-scsi@vger.kernel.org
6154S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006155F: Documentation/scsi/LICENSE.qla2xxx
6156F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006157
Ravi Anand883c98f2010-04-28 11:45:49 +05306158QLOGIC QLA4XXX iSCSI DRIVER
6159M: Ravi Anand <ravi.anand@qlogic.com>
6160M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6161M: iscsi-driver@qlogic.com
6162L: linux-scsi@vger.kernel.org
6163S: Supported
6164F: drivers/scsi/qla4xxx/
6165
Ron Mercer5a4faa872006-07-25 00:40:21 -07006166QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006167M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006168M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006169M: linux-driver@qlogic.com
6170L: netdev@vger.kernel.org
6171S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006172F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006173F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006174
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006175QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006176M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006177M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006178M: linux-driver@qlogic.com
6179L: netdev@vger.kernel.org
6180S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006181F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006182
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006183QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006184M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006185M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006186M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006187L: netdev@vger.kernel.org
6188S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006189F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006190
Linus Torvalds1da177e2005-04-16 15:20:36 -07006191QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006192M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006193W: http://www.alarsen.net/linux/qnx4fs/
6194S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006195F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07006196F: include/linux/qnx4_fs.h
6197F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006198
Antti Palosaari91952bc2012-10-01 12:28:46 -03006199QT1010 MEDIA DRIVER
6200M: Antti Palosaari <crope@iki.fi>
6201L: linux-media@vger.kernel.org
6202W: http://linuxtv.org/
6203W: http://palosaari.fi/linux/
6204Q: http://patchwork.linuxtv.org/project/linux-media/list/
6205T: git git://linuxtv.org/anttip/media_tree.git
6206S: Maintained
6207F: drivers/media/tuners/qt1010*
6208
Richard Kuo4f4567c2011-10-31 18:56:38 -05006209QUALCOMM HEXAGON ARCHITECTURE
6210M: Richard Kuo <rkuo@codeaurora.org>
6211L: linux-hexagon@vger.kernel.org
6212S: Supported
6213F: arch/hexagon/
6214
Hans Verkuil35e35402012-11-23 07:02:29 -03006215QUICKCAM PARALLEL PORT WEBCAMS
6216M: Hans Verkuil <hverkuil@xs4all.nl>
6217L: linux-media@vger.kernel.org
6218T: git git://linuxtv.org/media_tree.git
6219W: http://linuxtv.org
6220S: Odd Fixes
6221F: drivers/media/parport/*-qcam*
6222
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006223RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006224M: Yehuda Sadeh <yehuda@inktank.com>
6225M: Sage Weil <sage@inktank.com>
6226M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006227M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006228W: http://ceph.com/
6229T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006230S: Supported
6231F: drivers/block/rbd.c
6232F: drivers/block/rbd_types.h
6233
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006235M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006236L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006238F: drivers/video/aty/radeon*
6239F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240
Hans de Goedec6c9b342012-11-04 17:03:58 -03006241RADIOSHARK RADIO DRIVER
6242M: Hans de Goede <hdegoede@redhat.com>
6243L: linux-media@vger.kernel.org
6244T: git git://linuxtv.org/media_tree.git
6245S: Maintained
6246F: drivers/media/radio/radio-shark.c
6247
6248RADIOSHARK2 RADIO DRIVER
6249M: Hans de Goede <hdegoede@redhat.com>
6250L: linux-media@vger.kernel.org
6251T: git git://linuxtv.org/media_tree.git
6252S: Maintained
6253F: drivers/media/radio/radio-shark2.c
6254F: drivers/media/radio/radio-tea5777.c
6255
Linus Torvalds1da177e2005-04-16 15:20:36 -07006256RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006257M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006258L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006260F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006261
Randy Dunlape7839f22008-10-12 16:11:45 -07006262RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006263P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006264M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006265M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006266M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006267L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006268L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006269W: http://rt2x00.serialmonkey.com/
6270S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006271T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006272F: drivers/net/wireless/rt2x00/
6273
Nick Piggin9db55792008-02-08 04:19:49 -08006274RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006275M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006277F: Documentation/blockdev/ramdisk.txt
6278F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006279
Matt Mackall9e95ce22005-04-16 15:25:56 -07006280RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006281M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006283F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006284
Matt Porter394b7012005-11-07 01:00:15 -08006285RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006286M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006287M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006289F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006290
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006291RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006292L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006293S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006294F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006295
6296RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006297M: Josh Triplett <josh@freedesktop.org>
6298M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006299S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006300T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006301F: Documentation/RCU/torture.txt
6302F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006303
Florian Fainellic1f766b2008-02-06 22:39:44 +01006304RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006305M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006306S: Maintained
6307
Florian Fainellidb17f3952007-12-19 11:30:30 +01006308RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006309M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f3952007-12-19 11:30:30 +01006310L: netdev@vger.kernel.org
6311S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006312F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f3952007-12-19 11:30:30 +01006313
Andy Grovera09ed662009-02-24 15:30:41 +00006314RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006315M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006316L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006317S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006318F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006319
Josh Triplett595182b2006-10-04 02:17:21 -07006320READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006321M: Dipankar Sarma <dipankar@in.ibm.com>
6322M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006323W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006324S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006325T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006326F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006327X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006328F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006329F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006330X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006331
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006332REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006333M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo764654932006-12-10 02:19:06 -08006334L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006335Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006337F: Documentation/rtc.txt
6338F: drivers/rtc/
6339F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006340
Linus Torvalds1da177e2005-04-16 15:20:36 -07006341REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006342L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006343S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006344F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006345
Mark Brownb83a3132011-05-11 19:59:58 +02006346REGISTER MAP ABSTRACTION
6347M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6348T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6349S: Supported
6350F: drivers/base/regmap/
6351F: include/linux/regmap.h
6352
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006353REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6354M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006355T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006356S: Maintained
6357F: drivers/remoteproc/
6358F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006359F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006360
Ivo van Doorne08976452008-04-12 19:23:55 +02006361RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006362M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006363L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006364W: http://wireless.kernel.org/
6365T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6366T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006367S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006368F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006369F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006370
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006371RICOH SMARTMEDIA/XD DRIVER
6372M: Maxim Levitsky <maximlevitsky@gmail.com>
6373S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006374F: drivers/mtd/nand/r852.c
6375F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006376
Maxim Levitsky92634122011-03-25 01:56:59 -07006377RICOH R5C592 MEMORYSTICK DRIVER
6378M: Maxim Levitsky <maximlevitsky@gmail.com>
6379S: Maintained
6380F: drivers/memstick/host/r592.*
6381
Linus Torvalds1da177e2005-04-16 15:20:36 -07006382ROCKETPORT DRIVER
6383P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006384W: http://www.comtrol.com
6385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006386F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006387F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006388
6389ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006390M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006391L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006392W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006394F: include/linux/rose.h
6395F: include/net/rose.h
6396F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006397
Antti Palosaari91952bc2012-10-01 12:28:46 -03006398RTL2830 MEDIA DRIVER
6399M: Antti Palosaari <crope@iki.fi>
6400L: linux-media@vger.kernel.org
6401W: http://linuxtv.org/
6402W: http://palosaari.fi/linux/
6403Q: http://patchwork.linuxtv.org/project/linux-media/list/
6404T: git git://linuxtv.org/anttip/media_tree.git
6405S: Maintained
6406F: drivers/media/dvb-frontends/rtl2830*
6407
Larry Finger59840482008-11-12 17:13:09 -06006408RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006409M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006410L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006411W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006412T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006413S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006414F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006415
Larry Finger59840482008-11-12 17:13:09 -06006416RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006417M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006418M: Hin-Tak Leung <htl10@users.sourceforge.net>
6419M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006420L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006421W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006422T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006423S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006424F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006425
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006426RTL8192CE WIRELESS DRIVER
6427M: Larry Finger <Larry.Finger@lwfinger.net>
6428M: Chaoming Li <chaoming_li@realsil.com.cn>
6429L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006430W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006431T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6432S: Maintained
6433F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006434F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006435
6436S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006437M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006438L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006439S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006440F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006441
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442S390
Joe Perches8b58be82009-07-29 15:04:30 -07006443M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6444M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006446L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006447W: http://www.ibm.com/developerworks/linux/linux390/
6448S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006449F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006450F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006451F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006452F: Documentation/s390/
6453F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006454
6455S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006456M: Ursula Braun <ursula.braun@de.ibm.com>
6457M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006458M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006459L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006460W: http://www.ibm.com/developerworks/linux/linux390/
6461S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006462F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006463
Felix Beckfeed9b62009-03-26 15:24:23 +01006464S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006465M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006466M: linux390@de.ibm.com
6467L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006468W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006469S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006470F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006471
Heiko Carstens5238da42006-02-11 17:56:01 -08006472S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006473M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006474M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006475L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006476W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006477S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006478F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006479
Ursula Braundd96df22007-09-19 13:09:02 +02006480S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006481M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006482M: linux390@de.ibm.com
6483L: linux-s390@vger.kernel.org
6484W: http://www.ibm.com/developerworks/linux/linux390/
6485S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006486F: drivers/s390/net/*iucv*
6487F: include/net/iucv/
6488F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006489
Ben Dooks4dde7f72008-06-30 22:40:38 +01006490S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006491M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006492L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006493S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006494F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006495
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006496SAA7134 VIDEO4LINUX DRIVER
6497M: Mauro Carvalho Chehab <mchehab@redhat.com>
6498L: linux-media@vger.kernel.org
6499W: http://linuxtv.org
6500T: git git://linuxtv.org/media_tree.git
6501S: Odd fixes
6502F: Documentation/video4linux/saa7134/
6503F: drivers/media/pci/saa7134/
6504
Linus Torvalds1da177e2005-04-16 15:20:36 -07006505SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006506M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006507L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006508T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006509W: http://www.mihu.de/linux/saa7146
6510S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006511F: drivers/media/common/saa7146/
6512F: drivers/media/pci/saa7146/
6513F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514
Corentin Chary92304a42011-12-05 12:38:35 -05006515SAMSUNG LAPTOP DRIVER
6516M: Corentin Chary <corentincj@iksaif.net>
6517L: platform-driver-x86@vger.kernel.org
6518S: Maintained
6519F: drivers/platform/x86/samsung-laptop.c
6520
Mark Brown4a109cc2010-09-24 10:50:46 +01006521SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006522M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006523L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6524S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006525F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006526
Jingoo Han0d89a282011-12-19 11:09:35 +09006527SAMSUNG FRAMEBUFFER DRIVER
6528M: Jingoo Han <jg1.han@samsung.com>
6529L: linux-fbdev@vger.kernel.org
6530S: Maintained
6531F: drivers/video/s3c-fb.c
6532
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006533SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6534M: Sangbeom Kim <sbkim73@samsung.com>
6535L: linux-kernel@vger.kernel.org
6536S: Supported
6537F: drivers/mfd/sec*.c
6538F: drivers/regulator/s2m*.c
6539F: drivers/regulator/s5m*.c
6540F: drivers/rtc/rtc-sec.c
6541F: include/linux/mfd/samsung/
6542
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006543SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6544M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6545L: linux-media@vger.kernel.org
6546L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6547S: Maintained
6548F: drivers/media/platform/s3c-camif/
6549F: include/media/s3c_camif.h
6550
Alan Coxca749e22011-03-18 13:56:14 +00006551SERIAL DRIVERS
6552M: Alan Cox <alan@linux.intel.com>
6553L: linux-serial@vger.kernel.org
6554S: Maintained
6555F: drivers/tty/serial
6556
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306557SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006558M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306559S: Maintained
6560F: include/linux/dw_dmac.h
6561F: drivers/dma/dw_dmac_regs.h
6562F: drivers/dma/dw_dmac.c
6563
Thomas Gleixner88606e82010-12-14 21:37:13 +01006564TIMEKEEPING, NTP
6565M: John Stultz <johnstul@us.ibm.com>
6566M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006567T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006568S: Supported
6569F: include/linux/clocksource.h
6570F: include/linux/time.h
6571F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006572F: kernel/time/clocksource.c
6573F: kernel/time/time*.c
6574F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006575F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006576
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006577TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006578M: Huang Shijie <shijie8@gmail.com>
6579M: Kang Yong <kangyong@telegent.com>
6580M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006581S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006582F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006583
Linus Torvalds1da177e2005-04-16 15:20:36 -07006584SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006585M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006587F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006588
6589SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006590M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006591M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006592T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006593S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006594F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006595F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006596
Chen Liqin6bcf6732009-06-13 15:24:33 +08006597SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006598M: Chen Liqin <liqin.chen@sunplusct.com>
6599M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006600W: http://www.sunplusct.com
6601S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006602F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006603
Linus Torvalds1da177e2005-04-16 15:20:36 -07006604SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006605M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006606L: linux-scsi@vger.kernel.org
6607W: http://www.kernel.dk
6608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006609F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610
Roland Dreierfb50a832010-10-07 09:54:53 -07006611SCSI RDMA PROTOCOL (SRP) INITIATOR
6612M: David Dillow <dillowda@ornl.gov>
6613L: linux-rdma@vger.kernel.org
6614S: Supported
6615W: http://www.openfabrics.org
6616Q: http://patchwork.kernel.org/project/linux-rdma/list/
6617T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6618F: drivers/infiniband/ulp/srp/
6619F: include/scsi/srp.h
6620
Linus Torvalds1da177e2005-04-16 15:20:36 -07006621SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006622M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623L: linux-scsi@vger.kernel.org
6624W: http://www.torque.net/sg
6625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006626F: drivers/scsi/sg.c
6627F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628
6629SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006630M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006631L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006632T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6633T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6634T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006636F: drivers/scsi/
6637F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006638
6639SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006640M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006641L: linux-scsi@vger.kernel.org
6642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006643F: Documentation/scsi/st.txt
6644F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006645
6646SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006647M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006648M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006649L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006650W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006651S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006652F: Documentation/networking/sctp.txt
6653F: include/linux/sctp.h
6654F: include/net/sctp/
6655F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006656
6657SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006658M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006659S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006660F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006661F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006662F: drivers/watchdog/scx200_wdt.c
6663F: drivers/i2c/busses/scx200*
6664F: drivers/mtd/maps/scx200_docflash.c
6665F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006666
6667SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006668M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006670F: drivers/char/scx200_gpio.c
6671F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006672
6673SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006674M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006676F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677
Sascha Sommer6a369132008-07-15 14:21:29 +02006678SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006679M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006680L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006682F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006683
Randy Dunlape7839f22008-10-12 16:11:45 -07006684SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006685M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006686L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006687T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6688S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006689F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006690F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006691
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006692SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006693M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006694L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006695L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006696S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006697F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006698
Ben Dooks0d1bb412009-06-14 13:52:37 +01006699SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006700M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006701L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006702S: Maintained
6703F: drivers/mmc/host/sdhci-s3c.c
6704
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006705SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006706M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006707L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006708L: linux-mmc@vger.kernel.org
6709S: Maintained
6710F: drivers/mmc/host/sdhci-spear.c
6711
James Morris8711cca2008-12-04 03:19:45 +11006712SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006713M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006714L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006715T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006716W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006717S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006718F: security/
James Morris8711cca2008-12-04 03:19:45 +11006719
Linus Torvalds1da177e2005-04-16 15:20:36 -07006720SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006721M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006722S: Supported
6723
6724SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006725M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006726M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006727M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006728L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006729W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006730T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006731S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006732F: include/linux/selinux*
6733F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006734F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006735
John Johansenc1c124e2010-07-29 14:48:09 -07006736APPARMOR SECURITY MODULE
6737M: John Johansen <john.johansen@canonical.com>
6738L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6739W: apparmor.wiki.kernel.org
6740T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6741S: Supported
6742F: security/apparmor/
6743
Jiri Slabycef2cf02007-05-08 00:31:45 -07006744SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006745M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006746S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006747F: drivers/misc/phantom.c
6748F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006749
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006750SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006751M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006752L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006753T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006754S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006755F: drivers/ata/
6756F: include/linux/ata.h
6757F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006758
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306759SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006760M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006761L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006762W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006763S: Supported
6764F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306765
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006766SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006767M: Sathya Perla <sathya.perla@emulex.com>
6768M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6769M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006770L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006771W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006772S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006773F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006774
Ben Hutchings8ceee662008-04-27 12:55:59 +01006775SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006776M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006777M: Ben Hutchings <bhutchings@solarflare.com>
6778L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006779S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006780F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006781
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006782SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006783M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006785F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006786
6787SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006788M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006789L: linux-ia64@vger.kernel.org
6790S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006791F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006792F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006793F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006794
Linus Torvalds1da177e2005-04-16 15:20:36 -07006795SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006796M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006797L: linux-visws-devel@lists.sf.net
6798W: http://linux-visws.sf.net
6799S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006800F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006801
Jack Steiner75312612008-08-15 00:40:42 -07006802SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006803M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006805F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006806
Len Brown6349d992009-08-14 15:07:14 -04006807SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006808M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006809L: sfi-devel@simplefirmware.org
6810W: http://simplefirmware.org/
6811T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006812S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006813F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006814F: drivers/sfi/
6815F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006816
Linus Torvalds1da177e2005-04-16 15:20:36 -07006817SIMTEC EB110ATX (Chalice CATS)
6818P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006819P: Vincent Sanders <vince@simtec.co.uk>
6820M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006821W: http://www.simtec.co.uk/products/EB110ATX/
6822S: Supported
6823
6824SIMTEC EB2410ITX (BAST)
6825P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006826P: Vincent Sanders <vince@simtec.co.uk>
6827M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006828W: http://www.simtec.co.uk/products/EB2410ITX/
6829S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006830F: arch/arm/mach-s3c2410/mach-bast.c
6831F: arch/arm/mach-s3c2410/bast-ide.c
6832F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006833
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006834TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006835M: Sekhar Nori <nsekhar@ti.com>
6836M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306837L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306838T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006839Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006840S: Supported
6841F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006842F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006843
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03006844TI DAVINCI SERIES MEDIA DRIVER
6845M: Manjunath Hadli <manjunath.hadli@ti.com>
6846M: Prabhakar Lad <prabhakar.lad@ti.com>
6847L: linux-media@vger.kernel.org
6848L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
6849W: http://linuxtv.org/
6850Q: http://patchwork.linuxtv.org/project/linux-media/list/
6851T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
6852S: Supported
6853F: drivers/media/platform/davinci/
6854F: include/media/davinci/
6855
Francois Romieu92aab3c2005-07-30 13:11:18 +02006856SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006857M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006858L: netdev@vger.kernel.org
6859S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006860F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006861
Linus Torvalds1da177e2005-04-16 15:20:36 -07006862SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006863M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006864W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006865L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006866S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006867F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006868
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006869SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006870M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006871L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006873F: Documentation/i2c/busses/i2c-sis96x
6874F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006875
Linus Torvalds1da177e2005-04-16 15:20:36 -07006876SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006877M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006878W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006880F: Documentation/fb/sisfb.txt
6881F: drivers/video/sis/
6882F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006883
6884SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006885M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006886W: http://www.winischhofer.at/linuxsisusbvga.shtml
6887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006888F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006889
Christoph Lameter415ad262007-07-26 10:40:56 -07006890SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006891M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006892M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006893M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07006894L: linux-mm@kvack.org
6895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006896F: include/linux/sl?b*.h
6897F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07006898
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006899SLEEPABLE READ-COPY UPDATE (SRCU)
6900M: Lai Jiangshan <laijs@cn.fujitsu.com>
6901M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6902W: http://www.rdrop.com/users/paulmck/RCU/
6903S: Supported
6904T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6905F: include/linux/srcu*
6906F: kernel/srcu*
6907
Casey Schaufler66372842012-05-23 18:34:52 -07006908SMACK SECURITY MODULE
6909M: Casey Schaufler <casey@schaufler-ca.com>
6910L: linux-security-module@vger.kernel.org
6911W: http://schaufler-ca.com
6912T: git git://git.gitorious.org/smack-next/kernel.git
6913S: Maintained
6914F: Documentation/security/Smack.txt
6915F: security/smack/
6916
Linus Torvalds1da177e2005-04-16 15:20:36 -07006917SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006918M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006919S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006920F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006921
Sakari Ailuse8e31622012-11-12 18:14:39 -03006922SMIA AND SMIA++ IMAGE SENSOR DRIVER
6923M: Sakari Ailus <sakari.ailus@iki.fi>
6924L: linux-media@vger.kernel.org
6925S: Maintained
6926F: drivers/media/i2c/smiapp
6927F: include/media/smiapp.h
6928F: drivers/media/i2c/smiapp-pll.c
6929F: drivers/media/i2c/smiapp-pll.h
6930
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006931SMM665 HARDWARE MONITOR DRIVER
6932M: Guenter Roeck <linux@roeck-us.net>
6933L: lm-sensors@lm-sensors.org
6934S: Maintained
6935F: Documentation/hwmon/smm665
6936F: drivers/hwmon/smm665.c
6937
Steve Glendinning9df73052010-08-14 21:08:54 +02006938SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006939M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006940L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006941S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006942F: Documentation/hwmon/emc2103
6943F: drivers/hwmon/emc2103.c
6944
Hans de Goedea98d5062011-03-21 17:59:36 +01006945SMSC SCH5627 HARDWARE MONITOR DRIVER
6946M: Hans de Goede <hdegoede@redhat.com>
6947L: lm-sensors@lm-sensors.org
6948S: Supported
6949F: Documentation/hwmon/sch5627
6950F: drivers/hwmon/sch5627.c
6951
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006952SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006953M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006954L: lm-sensors@lm-sensors.org
6955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006956F: Documentation/hwmon/smsc47b397
6957F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006958
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006959SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006960M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006961L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006963F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006964F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006965
Steve Glendinning2cb37722008-12-11 20:54:30 -08006966SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006967M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006968L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006969S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006970F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006971
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006972SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006973M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006974L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006975S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006976F: drivers/video/smscufx.c
6977
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006978SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006979M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006980L: linux-altix@sgi.com
6981L: linux-ia64@vger.kernel.org
6982W: http://www.sgi.com/altix
6983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006984F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006985
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006986SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006987M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006988L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006989T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006990S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006991F: include/media/soc*
6992F: drivers/media/i2c/soc_camera/
6993F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006994
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006995SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006996M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006998F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006999
Linus Torvalds1da177e2005-04-16 15:20:36 -07007000SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007001M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007002L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007003S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007004F: drivers/md/
7005F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007006
Linus Torvalds1da177e2005-04-16 15:20:36 -07007007SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007008M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007009L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007010S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007011F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007012
Michael Buesch61e115a2007-09-18 15:12:50 -04007013SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007014M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007015L: netdev@vger.kernel.org
7016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007017F: drivers/ssb/
7018F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007019
Linus Torvalds1da177e2005-04-16 15:20:36 -07007020SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007021M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd09448532010-02-11 10:40:13 -05007022L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007023W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007025F: Documentation/laptops/sony-laptop.txt
7026F: drivers/char/sonypi.c
7027F: drivers/platform/x86/sony-laptop.c
7028F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007029
Alex Dubovbaf85322008-02-09 10:20:54 -08007030SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007031M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007032W: http://tifmxx.berlios.de/
7033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007034F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007035
Linus Torvalds1da177e2005-04-16 15:20:36 -07007036SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007037M: Jaroslav Kysela <perex@perex.cz>
7038M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007039L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007040W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007041T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007042T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007043S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007044F: Documentation/sound/
7045F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007046F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007047
Mark Brownbd903bd2008-11-19 19:16:05 +00007048SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01007049M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007050M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00007051T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007052L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007053W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007054S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007055F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007056F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007057
Sam Ravnborg473321f2009-01-04 15:47:49 -08007058SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007059M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007060L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007061Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007062T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7063T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007065F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007066F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007067
David S. Miller6404fcc2010-03-16 01:00:17 -07007068SPARC SERIAL DRIVERS
7069M: "David S. Miller" <davem@davemloft.net>
7070L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007071T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7072T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007073S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007074F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007075F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007076F: drivers/tty/serial/sunhv.c
7077F: drivers/tty/serial/sunsab.c
7078F: drivers/tty/serial/sunsab.h
7079F: drivers/tty/serial/sunsu.c
7080F: drivers/tty/serial/sunzilog.c
7081F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007082
Christopher Li389325b2012-04-05 14:25:14 -07007083SPARSE CHECKER
7084M: "Christopher Li" <sparse@chrisli.org>
7085L: linux-sparse@vger.kernel.org
7086W: https://sparse.wiki.kernel.org/
7087T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7088T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7089S: Maintained
7090F: include/linux/compiler.h
7091
viresh kumarfc0c1952010-04-01 12:31:21 +01007092SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007093M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307094M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007095L: spear-devel@list.st.com
7096L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007097W: http://www.st.com/spear
7098S: Maintained
7099F: arch/arm/plat-spear/
7100
Viresh Kumar71e09a92012-04-20 22:39:48 +05307101SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007102M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307103M: Shiraz Hashim <shiraz.hashim@st.com>
7104L: spear-devel@list.st.com
7105L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7106W: http://www.st.com/spear
7107S: Maintained
7108F: arch/arm/mach-spear13xx/
7109
viresh kumarfc0c1952010-04-01 12:31:21 +01007110SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007111M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307112M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007113L: spear-devel@list.st.com
7114L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007115W: http://www.st.com/spear
7116S: Maintained
7117F: arch/arm/mach-spear3xx/
7118
7119SPEAR6XX MACHINE SUPPORT
7120M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307121M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007122M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007123L: spear-devel@list.st.com
7124L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007125W: http://www.st.com/spear
7126S: Maintained
7127F: arch/arm/mach-spear6xx/
7128
7129SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007130M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007131L: spear-devel@list.st.com
7132L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007133W: http://www.st.com/spear
7134S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307135F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007136
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007137SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007138M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007139L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08007140Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06007141T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007143F: Documentation/spi/
7144F: drivers/spi/
7145F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007146
Jim Lewis2752e4012006-09-29 02:01:19 -07007147SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007148M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7149M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e4012006-09-29 02:01:19 -07007150L: netdev@vger.kernel.org
7151S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007152F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007153F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e4012006-09-29 02:01:19 -07007154
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007155SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007156M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007157L: linuxppc-dev@lists.ozlabs.org
7158L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007159W: http://www.ibm.com/developerworks/power/cell/
7160S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007161F: Documentation/filesystems/spufs.txt
7162F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007163
Phillip Lougherfc555842009-01-05 08:46:29 +00007164SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007165M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007166L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7167W: http://squashfs.org.uk
7168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007169F: Documentation/filesystems/squashfs.txt
7170F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007171
Linus Torvalds1da177e2005-04-16 15:20:36 -07007172SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007173M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007175F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007176
Linus Torvalds26e9a392008-10-17 09:50:12 -07007177STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007178M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007179L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007180S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007181
Linus Torvalds26e9a392008-10-17 09:50:12 -07007182STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007183M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007184T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007185L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007186S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007187F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007188
Joe Perchesc8c8b102011-07-05 09:42:12 -07007189STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7190M: Henk de Groot <pe1dnn@amsat.org>
7191S: Odd Fixes
7192F: drivers/staging/wlags49_h2/
7193F: drivers/staging/wlags49_h25/
7194
Joe Perchesc9555152011-07-05 09:42:01 -07007195STAGING - ASUS OLED
7196M: Jakub Schmidtke <sjakub@gmail.com>
7197S: Odd Fixes
7198F: drivers/staging/asus_oled/
7199
Joe Perchesebd3d012011-07-05 09:42:02 -07007200STAGING - COMEDI
7201M: Ian Abbott <abbotti@mev.co.uk>
7202M: Mori Hess <fmhess@users.sourceforge.net>
7203S: Odd Fixes
7204F: drivers/staging/comedi/
7205
Joe Perches8ca572c2011-07-05 09:42:03 -07007206STAGING - CRYSTAL HD VIDEO DECODER
7207M: Naren Sankar <nsankar@broadcom.com>
7208M: Jarod Wilson <jarod@wilsonet.com>
7209M: Scott Davilla <davilla@4pi.com>
7210M: Manu Abraham <abraham.manu@gmail.com>
7211S: Odd Fixes
7212F: drivers/staging/crystalhd/
7213
Joe Perches0f16ffc2011-07-05 09:42:04 -07007214STAGING - ECHO CANCELLER
7215M: Steve Underwood <steveu@coppice.org>
7216M: David Rowe <david@rowetel.com>
7217S: Odd Fixes
7218F: drivers/staging/echo/
7219
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007220STAGING - ET131X NETWORK DRIVER
7221M: Mark Einon <mark.einon@gmail.com>
7222S: Odd Fixes
7223F: drivers/staging/et131x/
7224
Joe Perchesa0138162011-07-05 15:21:34 -07007225STAGING - FLARION FT1000 DRIVERS
7226M: Marek Belisko <marek.belisko@gmail.com>
7227S: Odd Fixes
7228F: drivers/staging/ft1000/
7229
Joe Perchesec3fab92011-07-05 09:42:05 -07007230STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7231M: David Täht <d@teklibre.com>
7232S: Odd Fixes
7233F: drivers/staging/frontier/
7234
Joe Perches6c1bb422011-07-05 09:42:07 -07007235STAGING - INDUSTRIAL IO
7236M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007237L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007238S: Odd Fixes
7239F: drivers/staging/iio/
7240
Joe Perchesa0138162011-07-05 15:21:34 -07007241STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7242M: Jarod Wilson <jarod@wilsonet.com>
7243W: http://www.lirc.org/
7244S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007245F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007246
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007247STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007248M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007249M: Marc Dietrich <marvin24@gmx.de>
7250L: ac100@lists.launchpad.net (moderated for non-subscribers)
7251S: Maintained
7252F: drivers/staging/nvec/
7253
Joe Perchesa0138162011-07-05 15:21:34 -07007254STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7255M: Andres Salomon <dilinger@queued.net>
7256M: Chris Ball <cjb@laptop.org>
7257M: Jon Nettleton <jon.nettleton@gmail.com>
7258W: http://wiki.laptop.org/go/DCON
7259S: Odd Fixes
7260F: drivers/staging/olpc_dcon/
7261
Chris Kelly94cfdd12012-03-14 10:55:42 +00007262STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00007263M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007264M: Chris Kelly <ckelly@ozmodevices.com>
7265S: Maintained
7266F: drivers/staging/ozwpan/
7267
Joe Perchesa0138162011-07-05 15:21:34 -07007268STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007269M: Willy Tarreau <willy@meta-x.org>
7270S: Odd Fixes
7271F: drivers/staging/panel/
7272
Joe Perchesa0138162011-07-05 15:21:34 -07007273STAGING - REALTEK RTL8712U DRIVERS
7274M: Larry Finger <Larry.Finger@lwfinger.net>
7275M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7276S: Odd Fixes
7277F: drivers/staging/rtl8712/
7278
Joe Perches9629fa82011-07-05 09:42:09 -07007279STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7280M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7281S: Odd Fixes
7282F: drivers/staging/sm7xx/
7283
Joe Perchesa0138162011-07-05 15:21:34 -07007284STAGING - SOFTLOGIC 6x10 MPEG CODEC
7285M: Ben Collins <bcollins@bluecherry.net>
7286S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007287F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007288
7289STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7290M: William Hubbs <w.d.hubbs@gmail.com>
7291M: Chris Brannon <chris@the-brannons.com>
7292M: Kirk Reiser <kirk@braille.uwo.ca>
7293M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7294L: speakup@braille.uwo.ca
7295W: http://www.linux-speakup.org/
7296S: Odd Fixes
7297F: drivers/staging/speakup/
7298
7299STAGING - TI DSP BRIDGE DRIVERS
7300M: Omar Ramirez Luna <omar.ramirez@ti.com>
7301S: Odd Fixes
7302F: drivers/staging/tidspbridge/
7303
Joe Perchesa0138162011-07-05 15:21:34 -07007304STAGING - USB ENE SM/MS CARD READER DRIVER
7305M: Al Cho <acho@novell.com>
7306S: Odd Fixes
7307F: drivers/staging/keucr/
7308
Joe Perchesb3e871c2011-07-05 09:42:10 -07007309STAGING - VIA VT665X DRIVERS
7310M: Forest Bond <forest@alittletooquiet.net>
7311S: Odd Fixes
7312F: drivers/staging/vt665?/
7313
Joe Perches81a9a522011-07-05 09:42:11 -07007314STAGING - WINBOND IS89C35 WLAN USB DRIVER
7315M: Pavel Machek <pavel@ucw.cz>
7316S: Odd Fixes
7317F: drivers/staging/winbond/
7318
Joe Perches709bcb02011-07-05 09:42:13 -07007319STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007320M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007321S: Odd Fixes
7322F: drivers/staging/xgifb/
7323
Linus Torvalds1da177e2005-04-16 15:20:36 -07007324STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007325M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007326S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007327F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007328
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007329SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007330M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007331W: http://sammy.net/sun3/
7332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007333F: arch/m68k/kernel/*sun3*
7334F: arch/m68k/sun3*/
7335F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007336F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007337
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007338SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007339M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007340L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007341W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007342Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007343T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007344S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007345F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007346F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007347F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007348
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007349SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007350M: Len Brown <len.brown@intel.com>
7351M: Pavel Machek <pavel@ucw.cz>
7352M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007353L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007354S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007355F: Documentation/power/
7356F: arch/x86/kernel/acpi/
7357F: drivers/base/power/
7358F: kernel/power/
7359F: include/linux/suspend.h
7360F: include/linux/freezer.h
7361F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007362
7363SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007364M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007365L: linux-video@atrey.karlin.mff.cuni.cz
7366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007367F: Documentation/svga.txt
7368F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007369
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007370SWIOTLB SUBSYSTEM
7371M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7372L: linux-kernel@vger.kernel.org
7373S: Supported
7374F: lib/swiotlb.c
7375F: arch/*/kernel/pci-swiotlb.c
7376F: include/linux/swiotlb.h
7377
Linus Torvalds1da177e2005-04-16 15:20:36 -07007378SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007379M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007381F: Documentation/filesystems/sysv-fs.txt
7382F: fs/sysv/
7383F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007384
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007385TARGET SUBSYSTEM
7386M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7387L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007388L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007389L: http://groups.google.com/group/linux-iscsi-target-dev
7390W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007391T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007392S: Supported
7393F: drivers/target/
7394F: include/target/
7395F: Documentation/target/
7396
Alan Cox4e688522008-04-30 00:52:11 -07007397TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007398M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007400F: Documentation/accounting/taskstats*
7401F: include/linux/taskstats*
7402F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007403
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007404TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007405M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007406L: netdev@vger.kernel.org
7407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007408F: include/linux/pkt_cls.h
7409F: include/net/pkt_cls.h
7410F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007411
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007412TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007413M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7414M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007415W: http://tcp-lp-mod.sourceforge.net/
7416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007417F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007418
Antti Palosaari91952bc2012-10-01 12:28:46 -03007419TDA10071 MEDIA DRIVER
7420M: Antti Palosaari <crope@iki.fi>
7421L: linux-media@vger.kernel.org
7422W: http://linuxtv.org/
7423W: http://palosaari.fi/linux/
7424Q: http://patchwork.linuxtv.org/project/linux-media/list/
7425T: git git://linuxtv.org/anttip/media_tree.git
7426S: Maintained
7427F: drivers/media/dvb-frontends/tda10071*
7428
7429TDA18212 MEDIA DRIVER
7430M: Antti Palosaari <crope@iki.fi>
7431L: linux-media@vger.kernel.org
7432W: http://linuxtv.org/
7433W: http://palosaari.fi/linux/
7434Q: http://patchwork.linuxtv.org/project/linux-media/list/
7435T: git git://linuxtv.org/anttip/media_tree.git
7436S: Maintained
7437F: drivers/media/tuners/tda18212*
7438
7439TDA18218 MEDIA DRIVER
7440M: Antti Palosaari <crope@iki.fi>
7441L: linux-media@vger.kernel.org
7442W: http://linuxtv.org/
7443W: http://palosaari.fi/linux/
7444Q: http://patchwork.linuxtv.org/project/linux-media/list/
7445T: git git://linuxtv.org/anttip/media_tree.git
7446S: Maintained
7447F: drivers/media/tuners/tda18218*
7448
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007449TDA18271 MEDIA DRIVER
7450M: Michael Krufky <mkrufky@linuxtv.org>
7451L: linux-media@vger.kernel.org
7452W: http://linuxtv.org/
7453W: http://github.com/mkrufky
7454Q: http://patchwork.linuxtv.org/project/linux-media/list/
7455T: git git://linuxtv.org/mkrufky/tuners.git
7456S: Maintained
7457F: drivers/media/tuners/tda18271*
7458
Michael Krufkye48307a2012-10-02 00:56:33 -03007459TDA827x MEDIA DRIVER
7460M: Michael Krufky <mkrufky@linuxtv.org>
7461L: linux-media@vger.kernel.org
7462W: http://linuxtv.org/
7463W: http://github.com/mkrufky
7464Q: http://patchwork.linuxtv.org/project/linux-media/list/
7465T: git git://linuxtv.org/mkrufky/tuners.git
7466S: Maintained
7467F: drivers/media/tuners/tda8290.*
7468
Michael Krufky66cf9212012-10-02 00:56:28 -03007469TDA8290 MEDIA DRIVER
7470M: Michael Krufky <mkrufky@linuxtv.org>
7471L: linux-media@vger.kernel.org
7472W: http://linuxtv.org/
7473W: http://github.com/mkrufky
7474Q: http://patchwork.linuxtv.org/project/linux-media/list/
7475T: git git://linuxtv.org/mkrufky/tuners.git
7476S: Maintained
7477F: drivers/media/tuners/tda8290.*
7478
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007479TEA5761 TUNER DRIVER
7480M: Mauro Carvalho Chehab <mchehab@redhat.com>
7481L: linux-media@vger.kernel.org
7482W: http://linuxtv.org
7483T: git git://linuxtv.org/media_tree.git
7484S: Odd fixes
7485F: drivers/media/tuners/tea5761.*
7486
7487TEA5767 TUNER DRIVER
7488M: Mauro Carvalho Chehab <mchehab@redhat.com>
7489L: linux-media@vger.kernel.org
7490W: http://linuxtv.org
7491T: git git://linuxtv.org/media_tree.git
7492S: Maintained
7493F: drivers/media/tuners/tea5767.*
7494
Jiri Pirko3d249d42011-11-11 22:16:48 +00007495TEAM DRIVER
7496M: Jiri Pirko <jpirko@redhat.com>
7497L: netdev@vger.kernel.org
7498S: Supported
7499F: drivers/net/team/
7500F: include/linux/if_team.h
7501
Sean Young40ad4a32012-11-19 10:32:53 -03007502TECHNOTREND USB IR RECEIVER
7503M: Sean Young <sean@mess.org>
7504L: linux-media@vger.kernel.org
7505S: Maintained
7506F: drivers/media/rc/ttusbir.c
7507
Erik Gilling84b94142010-06-09 15:35:53 -07007508TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007509M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007510L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007511Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7512T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007513S: Supported
7514F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007515F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007516F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007517
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007518TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007519M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007520L: netdev@vger.kernel.org
7521S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007522F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007523
Alan Cox4e688522008-04-30 00:52:11 -07007524Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007525M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007526S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007527F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007528
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007529TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007530M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007531M: Max Filippov <jcmvbkbc@gmail.com>
7532L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007534F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007535
Zhang Ruid3fb6952012-11-15 08:58:27 +08007536THERMAL
7537M: Zhang Rui <rui.zhang@intel.com>
7538L: linux-pm@vger.kernel.org
7539T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7540S: Supported
7541F: drivers/thermal/
7542F: include/linux/thermal.h
7543
Alan Cox4e688522008-04-30 00:52:11 -07007544THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007545M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007546L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05007547L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007548W: http://ibm-acpi.sourceforge.net
7549W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007550T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007552F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007553
Alex Dubov4020f2d2006-10-04 02:15:37 -07007554TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007555M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007557F: drivers/misc/tifm*
7558F: drivers/mmc/host/tifm_sd.c
7559F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007560
M R Swami Reddy152ad442012-04-02 20:02:31 +05307561TI LM49xxx FAMILY ASoC CODEC DRIVERS
7562M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307563M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307564L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7565S: Maintained
7566F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307567F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307568
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007569TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007570M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007571L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7572S: Maintained
7573F: sound/soc/codecs/twl4030*
7574
Luciano Coelho90921012011-11-20 21:40:41 +02007575TI WILINK WIRELESS DRIVERS
7576M: Luciano Coelho <coelho@ti.com>
7577L: linux-wireless@vger.kernel.org
7578W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7579W: http://wireless.kernel.org/en/users/Drivers/wl1251
7580T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7581S: Maintained
7582F: drivers/net/wireless/ti/
7583F: include/linux/wl12xx.h
7584
Per Lidene86eaa32006-01-12 16:45:18 +01007585TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007586M: Jon Maloy <jon.maloy@ericsson.com>
7587M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007588L: netdev@vger.kernel.org (core kernel code)
7589L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007590W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007592F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007593F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007594
Chris Metcalf867e3592010-05-28 23:09:12 -04007595TILE ARCHITECTURE
7596M: Chris Metcalf <cmetcalf@tilera.com>
7597W: http://www.tilera.com/scm/
7598S: Supported
7599F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007600F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007601F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007602F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007603
Linus Torvalds1da177e2005-04-16 15:20:36 -07007604TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007605M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007606L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007607W: http://sourceforge.net/projects/tlan/
7608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007609F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007610F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007611
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007612TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007613M: Kentaro Takeda <takedakn@nttdata.co.jp>
7614M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007615L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7616L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007617L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7618L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7619W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007620T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007622F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007623
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007624TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007625M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05007626L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007627S: Maintained
7628F: drivers/platform/x86/topstar-laptop.c
7629
Linus Torvalds1da177e2005-04-16 15:20:36 -07007630TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05007631L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007632S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007633F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007634
7635TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007636M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007637L: tlinux-users@tce.toshiba-dme.co.jp
7638W: http://www.buzzard.org.uk/toshiba/
7639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007640F: drivers/char/toshiba.c
7641F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007642
Pierre Ossmand719f902009-03-24 21:06:09 +01007643TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007644M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007645M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007646L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007647S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007648F: drivers/mmc/host/tmio_mmc*
7649F: drivers/mmc/host/sh_mobile_sdhi.c
7650F: include/linux/mmc/tmio.h
7651F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007652
Hugh Dickins98f32602009-05-21 20:33:58 +01007653TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007654M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007655L: linux-mm@kvack.org
7656S: Maintained
7657F: include/linux/shmem_fs.h
7658F: mm/shmem.c
7659
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02007660TM6000 VIDEO4LINUX DRIVER
7661M: Mauro Carvalho Chehab <mchehab@redhat.com>
7662L: linux-media@vger.kernel.org
7663W: http://linuxtv.org
7664T: git git://linuxtv.org/media_tree.git
7665S: Odd fixes
7666F: drivers/media/usb/tm6000/
7667
Alan Cox4e688522008-04-30 00:52:11 -07007668TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007669M: Kent Yoder <key@linux.vnet.ibm.com>
7670M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007671W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007672M: Marcel Selhorst <tpmdd@selhorst.net>
7673M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007674W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007675L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007677F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007678
Joe Perchesd6f005a2009-10-26 16:49:40 -07007679TRACING
7680M: Steven Rostedt <rostedt@goodmis.org>
7681M: Frederic Weisbecker <fweisbec@gmail.com>
7682M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007683T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007684S: Maintained
7685F: Documentation/trace/ftrace.txt
7686F: arch/*/*/*/ftrace.h
7687F: arch/*/kernel/ftrace.c
7688F: include/*/ftrace.h
7689F: include/linux/trace*.h
7690F: include/trace/
7691F: kernel/trace/
7692
Linus Torvalds1da177e2005-04-16 15:20:36 -07007693TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007694M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007695T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007696S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007697K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007698
Alan Cox4e688522008-04-30 00:52:11 -07007699TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007700M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7701S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007702T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007703F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007704F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007705F: include/linux/serial_core.h
7706F: include/linux/serial.h
7707F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007708
Antti Palosaari91952bc2012-10-01 12:28:46 -03007709TUA9001 MEDIA DRIVER
7710M: Antti Palosaari <crope@iki.fi>
7711L: linux-media@vger.kernel.org
7712W: http://linuxtv.org/
7713W: http://palosaari.fi/linux/
7714Q: http://patchwork.linuxtv.org/project/linux-media/list/
7715T: git git://linuxtv.org/anttip/media_tree.git
7716S: Maintained
7717F: drivers/media/tuners/tua9001*
7718
Grant Grundler740db6d2008-02-17 11:53:49 -07007719TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007720M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007721L: netdev@vger.kernel.org
7722S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007723F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007724
7725TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07007726M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007727L: vtun@office.satix.net
7728W: http://vtun.sourceforge.net/tun
7729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007730F: Documentation/networking/tuntap.txt
7731F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007732
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007733TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007734M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007736F: drivers/tc/
7737F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007738
Linus Torvalds1da177e2005-04-16 15:20:36 -07007739U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007740M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007741L: linux-scsi@vger.kernel.org
7742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007743F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007744
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007745UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007746M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007747M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007748L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007749T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007750W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007752F: Documentation/filesystems/ubifs.txt
7753F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007754
Alan Coxcc2020e2008-05-19 14:21:51 +01007755UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007756M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007757W: http://www.uclinux.org/
7758L: uclinux-dev@uclinux.org (subscribers-only)
7759S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007760F: arch/m68k/*/*_no.*
7761F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007762
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007763UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007764M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007765W: http://uclinux-h8.sourceforge.jp/
7766S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007767F: arch/h8300/
7768F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007769F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007770
Linus Torvalds1da177e2005-04-16 15:20:36 -07007771UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007772M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007773S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007774F: Documentation/filesystems/udf.txt
7775F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007776
Alan Coxcc2020e2008-05-19 14:21:51 +01007777UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007778M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007780F: Documentation/filesystems/ufs.txt
7781F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007782
David Herrmann0a09d3a2012-06-10 15:16:28 +02007783UHID USERSPACE HID IO DRIVER:
7784M: David Herrmann <dh.herrmann@googlemail.com>
7785L: linux-input@vger.kernel.org
7786S: Maintained
7787F: drivers/hid/uhid.c
7788F: include/linux/uhid.h
7789
David Vrabel18332a82008-09-17 16:34:44 +01007790ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007791L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007792S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007793F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007794F: include/linux/uwb.h
7795F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007796
GuanXuetaob31d8272011-01-16 00:35:49 +08007797UNICORE32 ARCHITECTURE:
7798M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7799W: http://mprc.pku.edu.cn/~guanxuetao/linux
7800S: Maintained
7801T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7802F: arch/unicore32/
7803
Tony Finchd8379ab2009-11-27 15:50:30 +00007804UNIFDEF
7805M: Tony Finch <dot@dotat.at>
7806W: http://dotat.at/prog/unifdef
7807S: Maintained
7808F: scripts/unifdef.c
7809
Linus Torvalds1da177e2005-04-16 15:20:36 -07007810UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007811M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007812W: http://www.kernel.dk
7813S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007814F: Documentation/cdrom/
7815F: drivers/cdrom/cdrom.c
7816F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007817
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307818UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7819M: Vinayak Holikatti <vinholikatti@gmail.com>
7820M: Santosh Y <santoshsy@gmail.com>
7821L: linux-scsi@vger.kernel.org
7822S: Supported
7823F: Documentation/scsi/ufs.txt
7824F: drivers/scsi/ufs/
7825
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007826UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007827M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007828W: http://www.linux-mtd.infradead.org/
7829L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007830T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007831S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007832F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007833F: include/linux/mtd/ubi.h
7834F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007835
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007836UNSORTED BLOCK IMAGES (UBI) Fastmap
7837M: Richard Weinberger <richard@nod.at>
7838L: linux-mtd@lists.infradead.org
7839S: Maintained
7840F: drivers/mtd/ubi/fastmap.c
7841
Linus Torvalds1da177e2005-04-16 15:20:36 -07007842USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007843M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007844L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007846F: Documentation/usb/acm.txt
7847F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007848
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007849USB ATTACHED SCSI
7850M: Matthew Wilcox <willy@linux.intel.com>
7851M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7852L: linux-usb@vger.kernel.org
7853L: linux-scsi@vger.kernel.org
7854S: Supported
7855F: drivers/usb/storage/uas.c
7856
Linus Torvalds1da177e2005-04-16 15:20:36 -07007857USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07007858M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007859L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007860S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007861F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007862
Linus Torvalds1da177e2005-04-16 15:20:36 -07007863USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007864M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007865L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007867F: drivers/net/usb/cdc_*.c
7868F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007869
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007870USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007871M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007872L: linux-usb@vger.kernel.org
7873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007874F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007875
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007876USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007877M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007878L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007879W: http://www.linux-usb.org/usbnet
7880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007881F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007882
Alan Coxcc2020e2008-05-19 14:21:51 +01007883USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007884M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007885L: rio500-users@lists.sourceforge.net
7886W: http://rio500.sourceforge.net
7887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007888F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007889
Linus Torvalds1da177e2005-04-16 15:20:36 -07007890USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007891M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007892L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007894F: Documentation/usb/ehci.txt
7895F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007896
David Brownell69ae9e32006-11-14 02:03:31 -08007897USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007898M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007899L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007900W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007901T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007903F: drivers/usb/gadget/
7904F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007905
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007906USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007907M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007908L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007909T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007910S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007911F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007912F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007913
matt mooney857aab32011-06-17 15:50:46 -07007914USB/IP DRIVERS
7915M: Matt Mooney <mfm@muteddisk.com>
7916L: linux-usb@vger.kernel.org
7917S: Maintained
7918F: drivers/staging/usbip/
7919
Olav Kongas959eea22005-11-03 17:38:14 +02007920USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007921M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007922L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007924F: drivers/usb/host/isp116x*
7925F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007926
Linus Torvalds1da177e2005-04-16 15:20:36 -07007927USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007928M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007929L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007931F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007932
7933USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007934M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007935L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007936L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007937S: Maintained
7938W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007939F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007940
Clemens Ladischaf399172011-01-10 16:32:54 +01007941USB MIDI DRIVER
7942M: Clemens Ladisch <clemens@ladisch.de>
7943L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7944T: git git://git.alsa-project.org/alsa-kernel.git
7945S: Maintained
7946F: sound/usb/midi.*
7947
Linus Torvalds1da177e2005-04-16 15:20:36 -07007948USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007949M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007950L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007952F: Documentation/usb/ohci.txt
7953F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007954
Matthias Urlichsba460e42005-07-14 00:33:47 -07007955USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007956M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007957L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007959F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007960
Linus Torvalds1da177e2005-04-16 15:20:36 -07007961USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007962M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007963L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007964L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007965W: http://pegasus2.sourceforge.net/
7966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007967F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007968
Felipe Balbid3ad5582012-05-21 16:24:49 +03007969USB PHY LAYER
7970M: Felipe Balbi <balbi@ti.com>
7971L: linux-usb@vger.kernel.org
7972T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7973S: Maintained
7974F: drivers/usb/phy/
7975F: drivers/usb/otg/
7976
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007977USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007978M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007979L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007980S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007981F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007982
7983USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007984M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007985L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007986L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007987W: http://pegasus2.sourceforge.net/
7988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007989F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007990
Alan Cox4e688522008-04-30 00:52:11 -07007991USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007992M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007993L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007995F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007996
7997USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007998M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007999L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008000S: Maintained
8001W: http://geocities.com/i0xox0i
8002W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008003F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008004
Linus Torvalds1da177e2005-04-16 15:20:36 -07008005USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008006M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008007W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008009F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008010
8011USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008012M: Peter Berger <pberger@brimson.com>
8013M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008014L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008016F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008017
8018USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008019M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008020L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008021S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008022F: Documentation/usb/usb-serial.txt
8023F: drivers/usb/serial/generic.c
8024F: drivers/usb/serial/usb-serial.c
8025F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008026
Linus Torvalds1da177e2005-04-16 15:20:36 -07008027USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008028M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008029L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008031F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008032
8033USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008034M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008035L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008037F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008038
8039USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008040M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008041L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008042W: http://www.connecttech.com
8043S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008044F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008045
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008046USB SMSC75XX ETHERNET DRIVER
8047M: Steve Glendinning <steve.glendinning@shawell.net>
8048L: netdev@vger.kernel.org
8049S: Maintained
8050F: drivers/net/usb/smsc75xx.*
8051
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008052USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008053M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008054L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008056F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008057
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008058USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008059M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008060L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008061L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008062T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008063W: http://www.linux-projects.org
8064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008065F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008066F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008067
8068USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008069M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008070L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008071W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008072T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008073S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008074F: Documentation/usb/
8075F: drivers/net/usb/
8076F: drivers/usb/
8077F: include/linux/usb.h
8078F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008079
8080USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008081M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008082L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008084F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008085
David Brownell69ae9e32006-11-14 02:03:31 -08008086USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008087M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008088L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008089W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008091F: drivers/net/usb/usbnet.c
8092F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008093
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008094USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008095M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008096L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008097L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008098T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008099W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008100S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008101F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008102F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008103
Laurent Pinchart8282da42012-10-04 02:32:42 +02008104USB WEBCAM GADGET
8105M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8106L: linux-usb@vger.kernel.org
8107S: Maintained
8108F: drivers/usb/gadget/*uvc*.c
8109F: drivers/usb/gadget/webcam.c
8110
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008111USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008112M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008113L: linux-wireless@vger.kernel.org
8114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008115F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008116
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008117USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008118M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008119L: linux-usb@vger.kernel.org
8120S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008121F: drivers/usb/host/xhci*
8122F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008123
Linus Torvalds1da177e2005-04-16 15:20:36 -07008124USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008125L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008126W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008127S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008128F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008129
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008130USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008131M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008132L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008133L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008134T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008135W: http://royale.zerezo.com/zr364xx/
8136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008137F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008138F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008139
Randy Dunlape7839f22008-10-12 16:11:45 -07008140USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008141M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008142M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008143L: user-mode-linux-devel@lists.sourceforge.net
8144L: user-mode-linux-user@lists.sourceforge.net
8145W: http://user-mode-linux.sourceforge.net
8146S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008147F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008148F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008149F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008150F: fs/hostfs/
8151F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008152
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008153USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008154M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008155M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008157F: Documentation/DocBook/uio-howto.tmpl
8158F: drivers/uio/
8159F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008160
Karel Zak256cccb2012-06-01 10:13:09 +02008161UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008162M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008163L: util-linux@vger.kernel.org
8164W: http://en.wikipedia.org/wiki/Util-linux
8165T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008166S: Maintained
8167
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008168UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008169M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008170L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008171W: http://dev.gentoo.org/~spock/projects/uvesafb/
8172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008173F: Documentation/fb/uvesafb.txt
8174F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008175
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008176VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008177M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008179F: Documentation/filesystems/vfat.txt
8180F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008181
Alex Williamsoncba33452012-07-31 08:16:22 -06008182VFIO DRIVER
8183M: Alex Williamson <alex.williamson@redhat.com>
8184L: kvm@vger.kernel.org
8185S: Maintained
8186F: Documentation/vfio.txt
8187F: drivers/vfio/
8188F: include/linux/vfio.h
8189
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008190VIDEOBUF2 FRAMEWORK
8191M: Pawel Osciak <pawel@osciak.com>
8192M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008193M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008194L: linux-media@vger.kernel.org
8195S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008196F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008197F: include/media/videobuf2-*
8198
Amit Shah9a824462010-03-23 18:23:09 +05308199VIRTIO CONSOLE DRIVER
8200M: Amit Shah <amit.shah@redhat.com>
8201L: virtualization@lists.linux-foundation.org
8202S: Maintained
8203F: drivers/char/virtio_console.c
8204F: include/linux/virtio_console.h
8205
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308206VIRTIO CORE, NET AND BLOCK DRIVERS
8207M: Rusty Russell <rusty@rustcorp.com.au>
8208M: "Michael S. Tsirkin" <mst@redhat.com>
8209L: virtualization@lists.linux-foundation.org
8210S: Maintained
8211F: drivers/virtio/
8212F: drivers/net/virtio_net.c
8213F: drivers/block/virtio_blk.c
8214F: include/linux/virtio_*.h
8215
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008216VIRTIO HOST (VHOST)
8217M: "Michael S. Tsirkin" <mst@redhat.com>
8218L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008219L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008220L: netdev@vger.kernel.org
8221S: Maintained
8222F: drivers/vhost/
8223F: include/linux/vhost.h
8224
Linus Torvalds1da177e2005-04-16 15:20:36 -07008225VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008226M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008227S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008228F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008229
Harald Weltef0bf7f62009-06-17 20:22:39 +02008230VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008231M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008232M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008233S: Maintained
8234F: drivers/mmc/host/via-sdmmc.c
8235
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008236VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008237M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008238L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008239S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008240F: include/linux/via-core.h
8241F: include/linux/via-gpio.h
8242F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008243F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008244
Francois Romieu01f20732007-01-26 00:57:17 -08008245VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008246M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008247L: netdev@vger.kernel.org
8248S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008249F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008250
Patrick McHardybe7f8272007-10-23 20:26:36 -07008251VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008252M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008253L: netdev@vger.kernel.org
8254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008255F: drivers/net/macvlan.c
8256F: include/linux/if_*vlan.h
8257F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008258
Florian Fainelli55e331c2009-06-16 15:33:53 -07008259VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008260M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008261L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008262S: Maintained
8263F: drivers/vlynq/vlynq.c
8264F: include/linux/vlynq.h
8265
Martyn Welch390beae2012-05-03 17:52:36 +01008266VME SUBSYSTEM
8267M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008268M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008269M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8270L: devel@driverdev.osuosl.org
8271S: Maintained
8272T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8273F: Documentation/vme_api.txt
8274F: drivers/staging/vme/
8275F: drivers/vme/
8276F: include/linux/vme*
8277
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008278VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008279M: Shreyas Bhatewara <sbhatewara@vmware.com>
8280M: "VMware, Inc." <pv-drivers@vmware.com>
8281L: netdev@vger.kernel.org
8282S: Maintained
8283F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008284
Alok Kataria851b1642009-10-13 14:51:05 -07008285VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008286M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008287M: VMware PV-Drivers <pv-drivers@vmware.com>
8288L: linux-scsi@vger.kernel.org
8289S: Maintained
8290F: drivers/scsi/vmw_pvscsi.c
8291F: drivers/scsi/vmw_pvscsi.h
8292
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008293VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008294M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008295M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008296W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008297W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008298T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008299S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008300F: drivers/regulator/
8301F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008302
Juerg Haefligerab413192006-09-24 20:54:04 +02008303VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008304M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008305L: lm-sensors@lm-sensors.org
8306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008307F: Documentation/hwmon/vt1211
8308F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008309
Roger Lucas1de9e372005-11-26 20:20:05 +01008310VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008311M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008312L: lm-sensors@lm-sensors.org
8313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008314F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008315
Tony Olech88095e72011-05-14 16:48:13 -04008316VUB300 USB to SDIO/SD/MMC bridge chip
8317M: Tony Olech <tony.olech@elandigitalsystems.com>
8318L: linux-mmc@vger.kernel.org
8319L: linux-usb@vger.kernel.org
8320S: Supported
8321F: drivers/mmc/host/vub300.c
8322
Linus Torvalds1da177e2005-04-16 15:20:36 -07008323W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008324M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008326F: Documentation/w1/
8327F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008328
Charles Spirakis13927072006-07-05 18:05:15 +02008329W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008330M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008331L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008333F: Documentation/hwmon/w83791d
8334F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008335
Rudolf Marek61db0112006-12-12 18:18:30 +01008336W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008337M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008338L: lm-sensors@lm-sensors.org
8339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008340F: Documentation/hwmon/w83793
8341F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008342
Jean Delvaree3760b42010-10-28 20:31:49 +02008343W83795 HARDWARE MONITORING DRIVER
8344M: Jean Delvare <khali@linux-fr.org>
8345L: lm-sensors@lm-sensors.org
8346S: Maintained
8347F: drivers/hwmon/w83795.c
8348
Linus Torvalds1da177e2005-04-16 15:20:36 -07008349W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008350M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008352F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008353
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008354WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008355M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008356L: linux-watchdog@vger.kernel.org
8357W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008358T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008360F: Documentation/watchdog/
8361F: drivers/watchdog/
8362F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008363
Linus Torvalds1da177e2005-04-16 15:20:36 -07008364WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008365M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008366L: linux-scsi@vger.kernel.org
8367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008368F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008369
David Herrmannb22e00f2011-09-06 13:50:40 +02008370WIIMOTE HID DRIVER
8371M: David Herrmann <dh.herrmann@googlemail.com>
8372L: linux-input@vger.kernel.org
8373S: Maintained
8374F: drivers/hid/hid-wiimote*
8375
David Härdemane258b802009-09-21 17:04:53 -07008376WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008377M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008378S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008379F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008380
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008381WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008382M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008383M: linux-wimax@intel.com
8384L: wimax@linuxwimax.org
8385S: Supported
8386W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008387F: Documentation/wimax/README.wimax
8388F: include/linux/wimax.h
8389F: include/linux/wimax/debug.h
8390F: include/net/wimax.h
8391F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008392
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008393WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008394M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008396F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008397
Linus Torvalds1da177e2005-04-16 15:20:36 -07008398WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008399M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008400L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008401W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008403F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008404
Mark Brownfebf1df2008-04-02 00:51:09 -04008405WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008406M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8407M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008408L: linux-input@vger.kernel.org
8409T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8410W: http://opensource.wolfsonmicro.com/node/7
8411S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008412F: drivers/input/touchscreen/*wm97*
8413F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008414
Mark Brown055bcbc2010-08-13 14:18:12 +01008415WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008416M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008417L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008418T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008419T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008420W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008421S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008422F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008423F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008424F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008425F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008426F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008427F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008428F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008429F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008430F: drivers/input/misc/wm831x-on.c
8431F: drivers/input/touchscreen/wm831x-ts.c
8432F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008433F: drivers/mfd/arizona*
8434F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008435F: drivers/power/wm83*.c
8436F: drivers/rtc/rtc-wm83*.c
8437F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008438F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008439F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008440F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008441F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008442F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008443F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008444F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008445F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008446F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008447F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008448
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008449WORKQUEUE
8450M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008451T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8452S: Maintained
8453F: include/linux/workqueue.h
8454F: kernel/workqueue.c
8455F: Documentation/workqueue.txt
8456
Linus Torvalds1da177e2005-04-16 15:20:36 -07008457X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008458M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008459L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008460S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008461F: Documentation/networking/x25*
8462F: include/net/x25*
8463F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008464
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008465X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008466M: Thomas Gleixner <tglx@linutronix.de>
8467M: Ingo Molnar <mingo@redhat.com>
8468M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008469M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008470T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008472F: Documentation/x86/
8473F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008474
Matthew Garrettd09448532010-02-11 10:40:13 -05008475X86 PLATFORM DRIVERS
8476M: Matthew Garrett <mjg@redhat.com>
8477L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008478T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd09448532010-02-11 10:40:13 -05008479S: Maintained
8480F: drivers/platform/x86
8481
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008482X86 MCE INFRASTRUCTURE
8483M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008484M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008485L: linux-edac@vger.kernel.org
8486S: Maintained
8487F: arch/x86/kernel/cpu/mcheck/*
8488
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008489XC2028/3028 TUNER DRIVER
8490M: Mauro Carvalho Chehab <mchehab@redhat.com>
8491L: linux-media@vger.kernel.org
8492W: http://linuxtv.org
8493T: git git://linuxtv.org/media_tree.git
8494S: Maintained
8495F: drivers/media/tuners/tuner-xc2028.*
8496
Ian Campbellc4468082011-04-27 15:26:46 -07008497XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008498M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008499M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008500L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8501L: virtualization@lists.linux-foundation.org
8502S: Supported
8503F: arch/x86/xen/
8504F: drivers/*/xen-*front.c
8505F: drivers/xen/
8506F: arch/x86/include/asm/xen/
8507F: include/xen/
8508
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008509XEN HYPERVISOR ARM
8510M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8511L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8512S: Supported
8513F: arch/arm/xen/
8514F: arch/arm/include/asm/xen/
8515
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008516XEN NETWORK BACKEND DRIVER
8517M: Ian Campbell <ian.campbell@citrix.com>
8518L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8519L: netdev@vger.kernel.org
8520S: Supported
8521F: drivers/net/xen-netback/*
8522
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008523XEN PCI SUBSYSTEM
8524M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008525L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008526S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008527F: arch/x86/pci/*xen*
8528F: drivers/pci/*xen*
8529
8530XEN SWIOTLB SUBSYSTEM
8531M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008532L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008533S: Supported
8534F: arch/x86/xen/*swiotlb*
8535F: drivers/xen/*swiotlb*
8536
Linus Torvalds1da177e2005-04-16 15:20:36 -07008537XFS FILESYSTEM
8538P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008539M: Ben Myers <bpm@sgi.com>
8540M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008541M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008542L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008543W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008544T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008545S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008546F: Documentation/filesystems/xfs.txt
8547F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008548
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008549XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008550M: Anirudha Sarangi <anirudh@xilinx.com>
8551M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008552S: Maintained
8553F: drivers/net/ethernet/xilinx/xilinx_axienet*
8554
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008555XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008556M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008557W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008559F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008560
Peter Korsgaard238b8722006-12-06 20:35:17 -08008561XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008562M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008563L: linux-serial@vger.kernel.org
8564S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008565F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008566
Linus Torvalds1da177e2005-04-16 15:20:36 -07008567YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008568M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008569L: linux-hams@vger.kernel.org
8570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008571F: drivers/net/hamradio/yam*
8572F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008573
Henkaf64a5e2005-10-12 15:02:56 +02008574YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008575M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008576L: usbb2k-api-dev@nongnu.org
8577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008578F: Documentation/input/yealink.txt
8579F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008580
Linus Torvalds1da177e2005-04-16 15:20:36 -07008581Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008582M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008583W: http://yaina.de/jreuter/
8584W: http://www.qsl.net/dl1bke/
8585L: linux-hams@vger.kernel.org
8586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008587F: Documentation/networking/z8530drv.txt
8588F: drivers/net/hamradio/*scc.c
8589F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008590
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008591ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008592M: Daniel Drake <dsd@gentoo.org>
8593M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008594W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008595L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008596L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008598F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008599
Linus Torvalds1da177e2005-04-16 15:20:36 -07008600ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008601L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008602L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008603W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008604T: Mercurial http://linuxtv.org/hg/v4l-dvb
8605S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008606F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008607
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008608ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008609M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008610S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008611F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008612
Linus Torvalds1da177e2005-04-16 15:20:36 -07008613THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008614M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008615L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008616Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008617T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008618S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008619F: *
8620F: */