blob: 8691752ad3e6d98840a61b669203d768e2d7c6f3 [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
Maxime Ripard1b106692012-11-15 21:51:26 +0100715ARM/Allwinner A1X SoC support
716M: Maxime Ripard <maxime.ripard@free-electrons.com>
717L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
718S: Maintained
719F: arch/arm/mach-sunxi/
720
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800721ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700722M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800723M: Nicolas Ferre <nicolas.ferre@atmel.com>
724M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700725L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200726W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800727W: http://www.linux4sam.org
728S: Supported
729F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100730
Rob Herring986cf2e2011-06-22 11:28:53 -0500731ARM/CALXEDA HIGHBANK ARCHITECTURE
732M: Rob Herring <rob.herring@calxeda.com>
733L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
734S: Maintained
735F: arch/arm/mach-highbank/
736
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300737ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
738M: Anton Vorontsov <avorontsov@mvista.com>
739S: Maintained
740F: arch/arm/mach-cns3xxx/
741T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
742
Alexander Shiyan386ab512012-11-17 17:57:24 +0400743ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
744M: Alexander Shiyan <shc_work@mail.ru>
745L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
746S: Odd Fixes
747F: arch/arm/mach-clps711x/
748
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800749ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100750M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000751M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700752L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800753S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100754F: arch/arm/mach-ep93xx/
755F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800756
757ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700758M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700759L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800760S: Maintained
761
Russell Kingd4275352009-04-16 14:05:27 +0100762ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700763M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700764L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700765S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100766F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700767F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100768
Mike Rapoportd48134e2008-08-20 09:03:26 +0100769ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700770M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700771L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100772S: Maintained
773
Hubert Feurstein94150092009-10-07 08:36:07 +0100774ARM/CONTEC MICRO9 MACHINE SUPPORT
775M: Hubert Feurstein <hubert.feurstein@contec.at>
776S: Maintained
777F: arch/arm/mach-ep93xx/micro9.c
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700780M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781S: Maintained
782
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200783ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100784M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700785L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100786T: git git://git.berlios.de/gemini-board
787S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300788F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200789
Barry Songa990cbd2011-07-12 21:44:10 +0800790ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
791M: Barry Song <baohua.song@csr.com>
792L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
793S: Maintained
794F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800795F: drivers/dma/sirf-dma.c
796F: drivers/i2c/busses/i2c-sirf.c
797F: drivers/pinctrl/pinctrl-sirf.c
798F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800799
Russell Kingd4275352009-04-16 14:05:27 +0100800ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700801M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700802L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100803W: http://www.arm.linux.org.uk/
804S: Maintained
805F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700806F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100807
Russell Kinga9da4f72008-07-12 21:42:04 +0100808ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700809M: Daniel Ribeiro <drwyrm@gmail.com>
810M: Stefan Schmidt <stefan@openezx.org>
811M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200812L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100813W: http://www.openezx.org/
814S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200815T: topgit git://git.openezx.org/openezx.git
816F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100817
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200818ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100819M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700820L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100821S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700822T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300823F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200824
Russell Kingd4275352009-04-16 14:05:27 +0100825ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700826M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700827L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100828W: http://www.arm.linux.org.uk/
829S: Maintained
830F: arch/arm/include/asm/hardware/dec21285.h
831F: arch/arm/mach-footbridge/
832
Sascha Hauer86183a52008-07-24 23:50:35 +0200833ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700834M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700835L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200836S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700837T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100838F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700839F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200840
Shawn Guo8bcb97652011-10-07 22:24:18 +0800841ARM/FREESCALE IMX6
842M: Shawn Guo <shawn.guo@linaro.org>
843L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
844S: Maintained
845T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
846F: arch/arm/mach-imx/*imx6*
847
Shawn Guoa9866a02011-10-21 11:53:34 +0800848ARM/FREESCALE MXS ARM ARCHITECTURE
849M: Shawn Guo <shawn.guo@linaro.org>
850L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
851S: Maintained
852T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
853F: arch/arm/mach-mxs/
854
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800855ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700856M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700857L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800858S: Maintained
859
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100860ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700861M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700862L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100863S: Maintained
864
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200865ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700866M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100867M: Paul Parsons <lost.distance@yahoo.com>
868L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200869S: Maintained
870F: arch/arm/mach-pxa/hx4700.c
871F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100872F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200873
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100874ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700875M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200876W: www.jlime.com
877S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700878T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
879F: arch/arm/mach-sa1100/jornada720.c
880F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100881
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200882ARM/IGEP MACHINE SUPPORT
883M: Enric Balletbo i Serra <eballetbo@gmail.com>
884M: Javier Martinez Canillas <javier@dowhile0.org>
885L: linux-omap@vger.kernel.org
886L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
887S: Maintained
888F: arch/arm/mach-omap2/board-igep0020.c
889
Marek Vasut403d2972010-05-22 00:29:39 +0200890ARM/INCOME PXA270 SUPPORT
891M: Marek Vasut <marek.vasut@gmail.com>
892L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
893S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700894F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200895
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800896ARM/INTEL IOP32X 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
Dan Williamse2bdb172007-01-02 18:32:37 +0100901
902ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700903M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700904L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700905S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800906
907ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700908M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700909M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700910L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700911S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800912
913ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700914M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700915M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700916L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700917S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800918
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800919ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700920M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700921L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800922S: Maintained
923
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200924ARM/INTEL IXP4XX ARM ARCHITECTURE
925M: Imre Kaloz <kaloz@openwrt.org>
926M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100927L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200928S: Maintained
929F: arch/arm/mach-ixp4xx/
930
Joe Perches838553c2010-10-26 14:22:59 -0700931ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100932M: Jonathan Cameron <jic23@cam.ac.uk>
933L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
934S: Maintained
935F: arch/arm/mach-pxa/stargate2.c
936F: drivers/pcmcia/pxa2xx_stargate2.c
937
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800938ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700939M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700940M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700941L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700942S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800943
944ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700945M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700946L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800947S: Maintained
948
949ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700950M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700951L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800952S: Maintained
953
Philipp Zabel3b8861712008-07-09 21:27:15 +0100954ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700955M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100956S: Maintained
957
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200958ARM/Marvell Armada 370 and Armada XP SOC support
959M: Jason Cooper <jason@lakedaemon.net>
960M: Andrew Lunn <andrew@lunn.ch>
961M: Gregory Clement <gregory.clement@free-electrons.com>
962L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
963S: Maintained
964F: arch/arm/mach-mvebu/
965
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400966ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
967M: Jason Cooper <jason@lakedaemon.net>
968M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700969L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400970S: Maintained
971F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400972F: arch/arm/mach-kirkwood/
973F: arch/arm/mach-mv78xx0/
974F: arch/arm/mach-orion5x/
975F: arch/arm/plat-orion/
976
Alexander Clouterd69ac132011-04-14 15:22:02 -0700977ARM/Orion SoC/Technologic Systems TS-78xx platform support
978M: Alexander Clouter <alex@digriz.org.uk>
979L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
980W: http://www.digriz.org.uk/ts78xx/kernel
981S: Maintained
982F: arch/arm/mach-orion5x/ts78xx-*
983
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000984ARM/MICREL KS8695 ARCHITECTURE
985M: Greg Ungerer <gerg@uclinux.org>
986L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
987F: arch/arm/mach-ks8695
988S: Odd Fixes
989
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200990ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700991M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700992L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200993F: arch/arm/mach-pxa/mioa701.c
994S: Maintained
995
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100996ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700997M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100998S: Maintained
999
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001000ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001001M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001002M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001003M: STEricsson <STEricsson_nomadik_linux@list.st.com>
1004L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1005S: Maintained
1006F: arch/arm/mach-nomadik/
1007F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001008F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001009T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001010
Andy Green9d762952009-05-19 06:41:42 -03001011ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001012M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001013L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1014W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1015S: Supported
1016
Daniel Walker0c19d212009-12-07 16:53:51 -08001017ARM/QUALCOMM MSM MACHINE SUPPORT
1018M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001019M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001020M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001021L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001022F: arch/arm/mach-msm/
1023F: drivers/video/msm/
1024F: drivers/mmc/host/msm_sdcc.c
1025F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001026F: drivers/tty/serial/msm_serial.h
1027F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -07001028F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001029F: drivers/*/pm8???-*
1030F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001031T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001032S: Maintained
1033
Dirk Opfer8459c152005-11-06 14:27:52 +00001034ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001035M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1036M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001037S: Maintained
1038
Marek Vasut5d783a22009-07-16 13:26:48 +02001039ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001040M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001041L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001042W: http://hackndev.com
1043S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001044F: arch/arm/mach-pxa/include/mach/palmtx.h
1045F: arch/arm/mach-pxa/palmtx.c
1046F: arch/arm/mach-pxa/include/mach/palmt5.h
1047F: arch/arm/mach-pxa/palmt5.c
1048F: arch/arm/mach-pxa/include/mach/palmld.h
1049F: arch/arm/mach-pxa/palmld.c
1050F: arch/arm/mach-pxa/include/mach/palmte2.h
1051F: arch/arm/mach-pxa/palmte2.c
1052F: arch/arm/mach-pxa/include/mach/palmtc.h
1053F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001054
Joe Perchesb57fe922009-12-14 18:00:52 -08001055ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001056M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001057L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001058W: http://hackndev.com
1059S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001060F: arch/arm/mach-pxa/include/mach/palmtreo.h
1061F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001062
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001063ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001064M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001065L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001066W: http://hackndev.com
1067S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001068F: arch/arm/mach-pxa/include/mach/palmz72.h
1069F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001072M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1074S: Maintained
1075
1076ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001077M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001078L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079W: http://www.arm.linux.org.uk/
1080S: Maintained
1081
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001082ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001083M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001084L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001085S: Maintained
1086
Russell Kingd4275352009-04-16 14:05:27 +01001087ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001088M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001089L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001090W: http://www.arm.linux.org.uk/
1091S: Maintained
1092F: arch/arm/common/time-acorn.c
1093F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1094F: arch/arm/include/asm/hardware/ioc.h
1095F: arch/arm/include/asm/hardware/iomd.h
1096F: arch/arm/include/asm/hardware/memc.h
1097F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001098F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001099F: drivers/net/ethernet/i825xx/ether1*
1100F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001101F: drivers/scsi/arm/
1102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001104M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105W: http://www.shark-linux.de/shark.html
1106S: Maintained
1107
Ben Dooksb21477f2009-06-13 10:46:34 +01001108ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001109M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001110M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001111L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001112L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001113W: http://www.fluff.org/ben/linux/
1114S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001115F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001116F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001117F: arch/arm/plat-s5p/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001118F: arch/arm/mach-s3c24*/
1119F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001120F: drivers/*/*s3c2410*
1121F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001122F: drivers/spi/spi-s3c*
1123F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001125ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001126M: Kukjin Kim <kgene.kim@samsung.com>
1127L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1128L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1129S: Maintained
1130F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001131F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001132
Kyungmin Park10ffa962011-03-04 17:36:26 -08001133ARM/SAMSUNG MOBILE MACHINE SUPPORT
1134M: Kyungmin Park <kyungmin.park@samsung.com>
1135L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1136S: Maintained
1137F: arch/arm/mach-s5pv210/mach-aquila.c
1138F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001139F: arch/arm/mach-exynos/mach-universal_c210.c
1140F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001141
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001142ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1143M: Kyungmin Park <kyungmin.park@samsung.com>
1144M: Kamil Debski <k.debski@samsung.com>
1145L: linux-arm-kernel@lists.infradead.org
1146L: linux-media@vger.kernel.org
1147S: Maintained
1148F: drivers/media/platform/s5p-g2d/
1149
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001150ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1151M: Kyungmin Park <kyungmin.park@samsung.com>
1152M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1153L: linux-arm-kernel@lists.infradead.org
1154L: linux-media@vger.kernel.org
1155S: Maintained
1156F: arch/arm/plat-s5p/dev-fimc*
1157F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001158F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001159
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001160ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1161M: Kyungmin Park <kyungmin.park@samsung.com>
1162M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001163M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001164L: linux-arm-kernel@lists.infradead.org
1165L: linux-media@vger.kernel.org
1166S: Maintained
1167F: arch/arm/plat-s5p/dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001168F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001169
1170ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1171M: Kyungmin Park <kyungmin.park@samsung.com>
1172M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1173L: linux-arm-kernel@lists.infradead.org
1174L: linux-media@vger.kernel.org
1175S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001176F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001177
Paul Mundtd48d38e2010-02-08 12:50:24 +09001178ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001179M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001180M: Magnus Damm <magnus.damm@gmail.com>
1181L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001182W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001183Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001184T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001185S: Supported
1186F: arch/arm/mach-shmobile/
1187F: drivers/sh/
1188
Dinh Nguyen66314222012-07-18 16:07:18 -06001189ARM/SOCFPGA ARCHITECTURE
1190M: Dinh Nguyen <dinguyen@altera.com>
1191S: Maintained
1192F: arch/arm/mach-socfpga/
1193
1194ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1195M: Dinh Nguyen <dinguyen@altera.com>
1196S: Maintained
1197F: drivers/clk/socfpga/
1198
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001199ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001200M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001201L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001202S: Maintained
1203
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001204ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001205M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001206L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1207S: Maintained
1208
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001209ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001210M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001211L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001212S: Maintained
1213
wanzongshun98ad6e32009-02-13 06:04:32 +01001214ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001215M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001216L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001217W: http://www.mcuos.com
1218S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001219F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001220F: drivers/input/keyboard/w90p910_keypad.c
1221F: drivers/input/touchscreen/w90p910_ts.c
1222F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001223F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001224F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001225F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001226F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001227F: drivers/usb/host/ehci-w90x900.c
1228F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001229
Linus Walleij54274d72010-04-04 10:58:03 +01001230ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001231M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001232L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1233S: Supported
1234F: arch/arm/mach-u300/
1235F: drivers/i2c/busses/i2c-stu300.c
1236F: drivers/rtc/rtc-coh901331.c
1237F: drivers/watchdog/coh901327_wdt.c
1238F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001239F: drivers/mfd/ab3100*
1240F: drivers/rtc/rtc-ab3100.c
1241F: drivers/rtc/rtc-coh901331.c
1242T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001243
Linus Walleij87572882010-12-22 09:18:29 +01001244ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001245M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001246M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001247L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1248S: Maintained
1249F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001250F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001251F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001252F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001253F: drivers/mfd/abx500*
1254F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001255F: drivers/mfd/dbx500*
1256F: drivers/mfd/db8500*
1257F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001258F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001259F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001260T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001261
Russell Kingd4275352009-04-16 14:05:27 +01001262ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001263M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001264L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001265W: http://www.arm.linux.org.uk/
1266S: Maintained
1267F: arch/arm/vfp/
1268
Marek Vasute66b6d82010-03-26 06:51:32 +01001269ARM/VOIPAC PXA270 SUPPORT
1270M: Marek Vasut <marek.vasut@gmail.com>
1271L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1272S: Maintained
1273F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001274F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001275
Tony Prisk04529fe2012-07-24 04:19:37 +12001276ARM/VT8500 ARM ARCHITECTURE
1277M: Tony Prisk <linux@prisktech.co.nz>
1278L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1279S: Maintained
1280F: arch/arm/mach-vt8500/
1281F: drivers/video/vt8500lcdfb.*
1282F: drivers/video/wm8505fb*
1283F: drivers/video/wmt_ge_rops.*
1284F: drivers/tty/serial/vt8500_serial.c
1285F: drivers/rtc/rtc-vt8500-c
Tony Prisk3a96dff2012-11-18 15:33:06 +13001286F: drivers/mmc/host/wmt-sdmmc.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001287
Marek Vasute66b6d82010-03-26 06:51:32 +01001288ARM/ZIPIT Z2 SUPPORT
1289M: Marek Vasut <marek.vasut@gmail.com>
1290L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1291S: Maintained
1292F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001293F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001294
Catalin Marinas38074222012-03-05 11:49:34 +00001295ARM64 PORT (AARCH64 ARCHITECTURE)
1296M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001297M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001298L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1299S: Maintained
1300F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001301F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001302
George Josephd58de032010-03-05 22:17:25 +01001303ASC7621 HARDWARE MONITOR DRIVER
1304M: George Joseph <george.joseph@fairview5.com>
1305L: lm-sensors@lm-sensors.org
1306S: Maintained
1307F: Documentation/hwmon/asc7621
1308F: drivers/hwmon/asc7621.c
1309
Corentin Charyb229ece2011-02-26 10:20:40 +01001310ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001311M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05001313L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001314W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001316F: drivers/platform/x86/asus*.c
1317F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001319ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001320M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001321L: lm-sensors@lm-sensors.org
1322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001323F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001324
Andrew Morton953a6472008-11-06 12:53:28 -08001325ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001326M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001327W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001329F: Documentation/crypto/async-tx-api.txt
1330F: crypto/async_tx/
1331F: drivers/dma/
1332F: include/linux/dmaengine.h
1333F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001334
Wolfram Sanga1867d32009-09-18 22:45:51 +02001335AT24 EEPROM DRIVER
1336M: Wolfram Sang <w.sang@pengutronix.de>
1337L: linux-i2c@vger.kernel.org
1338S: Maintained
1339F: drivers/misc/eeprom/at24.c
1340F: include/linux/i2c/at24.h
1341
Randy Dunlape7839f22008-10-12 16:11:45 -07001342ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001343M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001344W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001346F: Documentation/aoe/
1347F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Joe Perches9a10a872010-12-01 09:37:55 -08001349ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001350M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001351L: linux-wireless@vger.kernel.org
1352S: Supported
1353F: drivers/net/wireless/ath/*
1354
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001355ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001356M: Jiri Slaby <jirislaby@gmail.com>
1357M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001358M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001359L: linux-wireless@vger.kernel.org
1360L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001361W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001362S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001363F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001364
Kalle Valo12e62d62011-09-13 10:21:25 +03001365ATHEROS ATH6KL WIRELESS DRIVER
1366M: Kalle Valo <kvalo@qca.qualcomm.com>
1367L: linux-wireless@vger.kernel.org
1368W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1369T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1370S: Supported
1371F: drivers/net/wireless/ath/ath6kl/
1372
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001373ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001374M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1375M: Jouni Malinen <jouni@qca.qualcomm.com>
1376M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1377M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001378L: linux-wireless@vger.kernel.org
1379L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001380W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001381S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001382F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001383
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001384CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1385M: Christian Lamparter <chunkeey@googlemail.com>
1386L: linux-wireless@vger.kernel.org
1387W: http://wireless.kernel.org/en/users/Drivers/carl9170
1388S: Maintained
1389F: drivers/net/wireless/ath/carl9170/
1390
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001391ATK0110 HWMON DRIVER
1392M: Luca Tettamanti <kronos.it@gmail.com>
1393L: lm-sensors@lm-sensors.org
1394S: Maintained
1395F: drivers/hwmon/asus_atk0110.c
1396
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001397ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001398M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001400F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001401
Chris Snook7ae115b2008-09-09 03:26:57 -04001402ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001403M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001404M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001405L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001406W: http://sourceforge.net/projects/atl1
1407W: http://atl1.sourceforge.net
1408S: Maintained
Jeff Kirsher2b133ad62011-05-20 06:55:16 -07001409F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001410
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001412M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001413L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001414L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415W: http://linux-atm.sourceforge.net
1416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001417F: drivers/atm/
1418F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001420ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001421M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001422S: Maintained
1423F: drivers/mmc/host/atmel-mci.c
1424F: drivers/mmc/host/atmel-mci-regs.h
1425
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001426ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001427M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001428S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001429F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001430
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001431ATMEL DMA DRIVER
1432M: Nicolas Ferre <nicolas.ferre@atmel.com>
1433L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1434S: Supported
1435F: drivers/dma/at_hdmac.c
1436F: drivers/dma/at_hdmac_regs.h
1437F: arch/arm/mach-at91/include/mach/at_hdmac.h
1438
Josh Wu15515542012-03-23 17:56:29 +08001439ATMEL ISI DRIVER
1440M: Josh Wu <josh.wu@atmel.com>
1441L: linux-media@vger.kernel.org
1442S: Supported
Cesar Eduardo Barrosfb1cc072012-12-11 17:49:48 -03001443F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001444F: include/media/atmel-isi.h
1445
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001446ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001447M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001448L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001450F: drivers/video/atmel_lcdfb.c
1451F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001452
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001453ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001454M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001455S: Supported
Jeff Kirsher9f2f381f2011-06-18 01:52:36 -07001456F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001457
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001458ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001459M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001460S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001461F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001462
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001463ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1464M: Nicolas Ferre <nicolas.ferre@atmel.com>
1465L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1466S: Supported
1467F: drivers/misc/atmel_tclib.c
1468F: drivers/clocksource/tcb_clksrc.c
1469
Josh Wuff2675d2012-03-23 17:56:55 +08001470ATMEL TSADCC DRIVER
1471M: Josh Wu <josh.wu@atmel.com>
1472L: linux-input@vger.kernel.org
1473S: Supported
1474F: drivers/input/touchscreen/atmel_tsadcc.c
1475
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001476ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001477M: Nicolas Ferre <nicolas.ferre@atmel.com>
1478L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001479S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001480F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001483M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001484L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485W: http://www.thekelleys.org.uk/atmel
1486W: http://atmelwlandriver.sourceforge.net/
1487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001488F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Chris Wrighta92b7b82005-07-07 18:12:23 -07001490AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001491M: Al Viro <viro@zeniv.linux.org.uk>
1492M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001493L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001494W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001495T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001497F: include/linux/audit.h
1498F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001499
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001500AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001501M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001502W: http://miguelojeda.es/auxdisplay.htm
1503W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001505F: drivers/auxdisplay/
1506F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001507
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001508AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001509M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1510M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001511W: http://www.atmel.com/products/AVR32/
1512W: http://avr32linux.org/
1513W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001515F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001516
1517AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001518M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1519M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001521F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001522
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001524M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001526W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001528F: include/linux/ax25.h
1529F: include/net/ax25.h
1530F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001532AZ6007 DVB DRIVER
1533M: Mauro Carvalho Chehab <mchehab@redhat.com>
1534L: linux-media@vger.kernel.org
1535W: http://linuxtv.org
1536T: git git://linuxtv.org/media_tree.git
1537S: Maintained
1538F: drivers/media/usb/dvb-usb-v2/az6007.c
1539
Hans Verkuil67773762012-11-23 07:09:23 -03001540AZTECH FM RADIO RECEIVER DRIVER
1541M: Hans Verkuil <hverkuil@xs4all.nl>
1542L: linux-media@vger.kernel.org
1543T: git git://linuxtv.org/media_tree.git
1544W: http://linuxtv.org
1545S: Maintained
1546F: drivers/media/radio/radio-aztech*
1547
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001548B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001549M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001550L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001551L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001552W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001554F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001555
1556B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001557M: Larry Finger <Larry.Finger@lwfinger.net>
1558M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001559L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001560L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001561W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001563F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001564
Richard Purdie300abeb2007-02-07 22:21:07 +00001565BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001566M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001568F: drivers/video/backlight/
1569F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001570
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001571BATMAN ADVANCED
1572M: Marek Lindner <lindner_marek@yahoo.de>
1573M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001574M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001575L: b.a.t.m.a.n@lists.open-mesh.org
1576W: http://www.open-mesh.org/
1577S: Maintained
1578F: net/batman-adv/
1579
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001580BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001581M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001582L: linux-hams@vger.kernel.org
1583W: http://www.baycom.org/~tom/ham/ham.html
1584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001585F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001586
1587BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001588S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001589F: Documentation/filesystems/befs.txt
1590F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001591
1592BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001593M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001595F: Documentation/filesystems/bfs.txt
1596F: fs/bfs/
1597F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001598
Bryan Wu1394f032007-05-06 14:50:22 -07001599BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001600M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001601L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001602W: http://blackfin.uclinux.org
1603S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001604F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001605
Bryan Wue190d6b2007-07-17 14:43:44 +08001606BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001607L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001608W: http://blackfin.uclinux.org
1609S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001610F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001611
Mike Frysinger566da5b2007-06-11 15:31:30 +08001612BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001613M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001614L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001615W: http://blackfin.uclinux.org
1616S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001617F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001618
Mike Frysinger936ed492010-03-10 15:20:38 -08001619BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001620M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001621L: uclinux-dist-devel@blackfin.uclinux.org
1622W: http://blackfin.uclinux.org
1623S: Supported
1624F: drivers/mmc/host/bfin_sdh.c
1625
Bryan Wu1394f032007-05-06 14:50:22 -07001626BLACKFIN SERIAL 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 Wue3b2d3f2007-06-11 15:31:30 +08001629W: http://blackfin.uclinux.org
1630S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001631F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001632
Bryan Wu1e6d3202007-07-15 02:50:02 +08001633BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001634M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001635L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001636W: http://blackfin.uclinux.org
1637S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001638F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001639
Bryan Wud24ecfc2007-05-01 23:26:32 +02001640BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001641M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001642L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001643W: http://blackfin.uclinux.org/
1644S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001645F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001646
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001647BLINKM RGB LED DRIVER
1648M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1649S: Maintained
1650F: drivers/leds/leds-blinkm.c
1651
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001653M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001654T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001656F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Joern Engel2b54aae2008-02-06 01:38:02 -08001658BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001659M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001660L: linux-mtd@lists.infradead.org
1661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001662F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001663
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001664BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001665M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001666M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001667M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001668L: linux-bluetooth@vger.kernel.org
1669W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001670T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1671T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001673F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001676M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001677M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001678M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001679L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001680W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001681T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1682T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001684F: net/bluetooth/
1685F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001688M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001689M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001690L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001691W: http://sourceforge.net/projects/bonding/
1692S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001693F: drivers/net/bonding/
1694F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Gary Zambrano39105892006-06-22 17:26:20 -07001696BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001697M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001698L: netdev@vger.kernel.org
1699S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001700F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001701
Michael Chan948c51e2006-06-04 02:51:39 -07001702BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001703M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001704L: netdev@vger.kernel.org
1705S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001706F: drivers/net/ethernet/broadcom/bnx2.*
1707F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001708
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001709BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001710M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001711L: netdev@vger.kernel.org
1712S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001713F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001714
Stephen Warrenf680f252012-09-15 00:18:54 -06001715BROADCOM BCM2835 ARM ARCHICTURE
1716M: Stephen Warren <swarren@wwwdotorg.org>
1717L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1718T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1719S: Maintained
1720F: arch/arm/mach-bcm2835/
1721F: arch/arm/boot/dts/bcm2835*
1722F: arch/arm/configs/bcm2835_defconfig
1723F: drivers/*/*bcm2835*
1724
Michael Chan948c51e2006-06-04 02:51:39 -07001725BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001726M: Matt Carlson <mcarlson@broadcom.com>
1727M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001728L: netdev@vger.kernel.org
1729S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001730F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001731
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001732BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1733M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001734M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001735M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001736M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001737L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001738L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001739S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001740F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001741
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001742BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1743M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1744L: linux-scsi@vger.kernel.org
1745S: Supported
1746F: drivers/scsi/bnx2fc/
1747
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001748BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1749M: Rafał Miłecki <zajec5@gmail.com>
1750L: linux-wireless@vger.kernel.org
1751S: Maintained
1752F: drivers/bcma/
1753F: include/linux/bcma/
1754
Jing Huang7725ccf2009-09-23 17:46:15 -07001755BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001756M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001757L: linux-scsi@vger.kernel.org
1758S: Supported
1759F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001760
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001761BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1762M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001763L: netdev@vger.kernel.org
1764S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001765F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001766
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001767BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001768M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001769L: linux-scsi@vger.kernel.org
1770S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001771F: block/bsg.c
1772F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001773
Clemens Ladischaf399172011-01-10 16:32:54 +01001774BT87X AUDIO DRIVER
1775M: Clemens Ladisch <clemens@ladisch.de>
1776L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1777T: git git://git.alsa-project.org/alsa-kernel.git
1778S: Maintained
1779F: Documentation/sound/alsa/Bt87x.txt
1780F: sound/pci/bt87x.c
1781
Michael Bueschff1d5c22008-07-25 01:46:10 -07001782BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001783M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001784W: http://bu3sch.de/btgpio.php
1785S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001786F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001787
Joe Percheseb1eb042009-01-21 10:49:16 -05001788BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001789M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001790L: linux-btrfs@vger.kernel.org
1791W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001792Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001793T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001795F: Documentation/filesystems/btrfs.txt
1796F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001797
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001799M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001800L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001801W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001802T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001803S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001804F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001805F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Clemens Ladischaf399172011-01-10 16:32:54 +01001807C-MEDIA CMI8788 DRIVER
1808M: Clemens Ladisch <clemens@ladisch.de>
1809L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1810T: git git://git.alsa-project.org/alsa-kernel.git
1811S: Maintained
1812F: sound/pci/oxygen/
1813
Mark Salter21413552011-10-04 11:21:42 -04001814C6X ARCHITECTURE
1815M: Mark Salter <msalter@redhat.com>
1816M: Aurelien Jacquiot <a-jacquiot@ti.com>
1817L: linux-c6x-dev@linux-c6x.org
1818W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1819S: Maintained
1820F: arch/c6x/
1821
David Howellsa5432f5a2009-04-20 15:46:45 +01001822CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001823M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01001824L: linux-cachefs@redhat.com
1825S: Supported
1826F: Documentation/filesystems/caching/cachefiles.txt
1827F: fs/cachefiles/
1828
Hans Verkuilc815ca32012-11-23 07:05:54 -03001829CADET FM/AM RADIO RECEIVER DRIVER
1830M: Hans Verkuil <hverkuil@xs4all.nl>
1831L: linux-media@vger.kernel.org
1832T: git git://linuxtv.org/media_tree.git
1833W: http://linuxtv.org
1834S: Maintained
1835F: drivers/media/radio/radio-cadet*
1836
Jonathan Corbet77d51402007-03-22 19:44:17 -03001837CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001838M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001839L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001840T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001842F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001843F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001844
Joe Perches201b6ba2010-09-07 20:33:24 +00001845CAIF NETWORK LAYER
1846M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1847L: netdev@vger.kernel.org
1848S: Supported
1849F: Documentation/networking/caif/
1850F: drivers/net/caif/
1851F: include/linux/caif/
1852F: include/net/caif/
1853F: net/caif/
1854
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001855CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001856M: Muli Ben-Yehuda <muli@il.ibm.com>
1857M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001858L: discuss@x86-64.org
1859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001860F: arch/x86/kernel/pci-calgary_64.c
1861F: arch/x86/kernel/tce_64.c
1862F: arch/x86/include/asm/calgary.h
1863F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001864
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001865CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001866M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001867L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001868W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001869T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001870S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001871F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001872F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001873F: include/linux/can/core.h
1874F: include/linux/can/bcm.h
1875F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001876F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001877
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001878CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001879M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001880M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001881L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001882W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001883T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001884S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001885F: drivers/net/can/
1886F: include/linux/can/dev.h
1887F: include/linux/can/error.h
1888F: include/linux/can/netlink.h
1889F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001890
James Morris95d16c72012-03-16 12:05:48 +11001891CAPABILITIES
1892M: Serge Hallyn <serge.hallyn@canonical.com>
1893L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001894S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001895F: include/linux/capability.h
1896F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001897F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001898F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001899
Arnd Bergmannb8154542008-05-16 11:10:59 +02001900CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001901M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001902L: linuxppc-dev@lists.ozlabs.org
1903L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001904W: http://www.ibm.com/developerworks/power/cell/
1905S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001906F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001907F: arch/powerpc/include/asm/spu*.h
1908F: arch/powerpc/oprofile/*cell*
1909F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001910
Sage Weil9030aaf2009-10-06 11:31:15 -07001911CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001912M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001913L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001914W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001915T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001916S: Supported
1917F: Documentation/filesystems/ceph.txt
1918F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001919F: net/ceph
1920F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001921F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001922
David Vrabel18332a82008-09-17 16:34:44 +01001923CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001924L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001925S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001926F: Documentation/usb/WUSB-Design-overview.txt
1927F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001928F: drivers/usb/host/hwa-hc.c
1929F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001930F: drivers/usb/wusbcore/
1931F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001932
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001933CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001934M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001935W: http://miguelojeda.es/auxdisplay.htm
1936W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001938F: drivers/auxdisplay/cfag12864b.c
1939F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001940
1941CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001942M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001943W: http://miguelojeda.es/auxdisplay.htm
1944W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001946F: drivers/auxdisplay/cfag12864bfb.c
1947F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001948
Johannes Berg704232c2007-04-23 12:20:05 -07001949CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001950M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001951L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001952W: http://wireless.kernel.org/
1953T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1954T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001956F: include/linux/nl80211.h
1957F: include/net/cfg80211.h
1958F: net/wireless/*
1959X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001960
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001961CHAR and MISC DRIVERS
1962M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001963M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001964T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001965S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001966F: drivers/char/*
1967F: drivers/misc/*
1968
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001969CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001970M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001971S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001972F: scripts/checkpatch.pl
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001973
Harry Weif8407f262011-02-25 14:44:15 -08001974CHINESE DOCUMENTATION
1975M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08001976L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08001977L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1978S: Maintained
1979F: Documentation/zh_CN/
1980
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001981CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1982M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1983L: linux-usb@vger.kernel.org
1984S: Maintained
1985F: drivers/usb/chipidea/
1986
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001987CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001988M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001989M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001990M: Neel Patel <neepatel@cisco.com>
1991M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001992S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001993F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001994
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001995CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001996M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001997L: netdev@vger.kernel.org
1998S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001999F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002000
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002001CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002002M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002003L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002005F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002006
Timur Tabid9e9d822008-04-24 08:45:26 +10002007CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002008M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07002009L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10002010S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002011F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10002012
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002013CLEANCACHE API
2014M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2015L: linux-kernel@vger.kernel.org
2016S: Maintained
2017F: mm/cleancache.c
2018F: include/linux/cleancache.h
2019
Russell Kingd4275352009-04-16 14:05:27 +01002020CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002021M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07002022S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002023F: include/linux/clk.h
2024
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002025CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002026M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002027M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
2028M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002029L: linux-scsi@vger.kernel.org
2030S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002031F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002032
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002033CMPC ACPI DRIVER
2034M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2035M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd09448532010-02-11 10:40:13 -05002036L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002037S: Supported
2038F: drivers/platform/x86/classmate-laptop.c
2039
Nicolas Palix74425ee2010-06-06 17:15:01 +02002040COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002041M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002042M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002043M: Nicolas Palix <nicolas.palix@imag.fr>
2044L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002045W: http://coccinelle.lip6.fr/
2046S: Supported
2047F: scripts/coccinelle/
2048F: scripts/coccicheck
2049
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002051M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052M: coda@cs.cmu.edu
2053L: codalist@coda.cs.cmu.edu
2054W: http://www.coda.cs.cmu.edu/
2055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002056F: Documentation/filesystems/coda.txt
2057F: fs/coda/
2058F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Mike Turquette7704add2012-05-02 18:37:45 -07002060COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002061M: Mike Turquette <mturquette@linaro.org>
2062L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2063T: git git://git.linaro.org/people/mturquette/linux.git
2064S: Maintained
2065F: drivers/clk/clk.c
2066F: drivers/clk/clk-*
2067F: include/linux/clk-pr*
2068
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002069COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002070M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002071L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002072L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002073W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002074Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002075T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002076S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002077F: Documentation/filesystems/cifs.txt
2078F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002079
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080COMPACTPCI HOTPLUG CORE
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/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
2086COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002087M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002088L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002089S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002090F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
2092COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002093M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002094L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002095S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002096F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002098COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002099M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05002100L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002102F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002103
Simon Arlott949be0f2007-03-06 02:47:46 -08002104CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002105M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002106L: accessrunner-general@lists.sourceforge.net
2107W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002109F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002110
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002111CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002112M: Joel Becker <jlbec@evilplan.org>
2113T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002114S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002115F: fs/configfs/
2116F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002117
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002118CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002119M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002120L: netdev@vger.kernel.org
2121S: Maintained
2122F: drivers/connector/
2123
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002124CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002125M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002126M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002127L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002128L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002129T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002131F: include/linux/cgroup*
2132F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002133F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002134
Rudolf Marekbebe4672007-05-08 17:22:02 +02002135CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002136M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002137L: lm-sensors@lm-sensors.org
2138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002139F: Documentation/hwmon/coretemp
2140F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002143M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144W: http://www.fi.muni.cz/~kas/cosa/
2145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002146F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
Florian Fainelli4371ee32009-06-01 02:43:17 -07002148CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002149M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002150L: netdev@vger.kernel.org
2151S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002152F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002153
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002155M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002156L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002157L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002159F: drivers/cpufreq/
2160F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
2162CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002163M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002165F: arch/x86/kernel/cpuid.c
2166F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002168CPU POWER MONITORING SUBSYSTEM
2169M: Dominik Brodowski <linux@dominikbrodowski.net>
2170M: Thomas Renninger <trenn@suse.de>
2171S: Maintained
2172F: tools/power/cpupower
2173
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002174CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002175M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002176W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002177W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002178S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002179F: Documentation/cgroups/cpusets.txt
2180F: include/linux/cpuset.h
2181F: kernel/cpuset.c
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002182
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002184W: http://sourceforge.net/projects/cramfs/
2185S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002186F: Documentation/filesystems/cramfs.txt
2187F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
2189CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002190M: Mikael Starvik <starvik@axis.com>
2191M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002192L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193W: http://developer.axis.com
2194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002195F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002196F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
2198CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002199M: Herbert Xu <herbert@gondor.apana.org.au>
2200M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002202T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002204F: Documentation/crypto/
2205F: arch/*/crypto/
2206F: crypto/
2207F: drivers/crypto/
2208F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
Neil Horman5b07bd52009-02-05 16:03:04 +11002210CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002211M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002212L: linux-crypto@vger.kernel.org
2213S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002214F: crypto/ansi_cprng.c
2215F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002216
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002217CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002218M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002220F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002221
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002222CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002223M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002224L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002225L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002226T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002227W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002228W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002230F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002231F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002232F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002233
Hans Verkuil3f101d92012-11-23 07:00:02 -03002234CX2341X MPEG ENCODER HELPER MODULE
2235M: Hans Verkuil <hverkuil@xs4all.nl>
2236L: linux-media@vger.kernel.org
2237T: git git://linuxtv.org/media_tree.git
2238W: http://linuxtv.org
2239S: Maintained
2240F: drivers/media/i2c/cx2341x*
2241F: include/media/cx2341x*
2242
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002243CX88 VIDEO4LINUX DRIVER
2244M: Mauro Carvalho Chehab <mchehab@redhat.com>
2245L: linux-media@vger.kernel.org
2246W: http://linuxtv.org
2247T: git git://linuxtv.org/media_tree.git
2248S: Odd fixes
2249F: Documentation/video4linux/cx88/
2250F: drivers/media/pci/cx88/
2251
Antti Palosaari91952bc2012-10-01 12:28:46 -03002252CXD2820R MEDIA DRIVER
2253M: Antti Palosaari <crope@iki.fi>
2254L: linux-media@vger.kernel.org
2255W: http://linuxtv.org/
2256W: http://palosaari.fi/linux/
2257Q: http://patchwork.linuxtv.org/project/linux-media/list/
2258T: git git://linuxtv.org/anttip/media_tree.git
2259S: Maintained
2260F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002261
Steve Wisee5ec3782008-05-20 14:06:33 -07002262CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002263M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002264L: netdev@vger.kernel.org
2265W: http://www.chelsio.com
2266S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002267F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002268
2269CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002270M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002271L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002272W: http://www.openfabrics.org
2273S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002274F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002275
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002276CXGB4 ETHERNET DRIVER (CXGB4)
2277M: Dimitris Michailidis <dm@chelsio.com>
2278L: netdev@vger.kernel.org
2279W: http://www.chelsio.com
2280S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002281F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002282
2283CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2284M: Steve Wise <swise@chelsio.com>
2285L: linux-rdma@vger.kernel.org
2286W: http://www.openfabrics.org
2287S: Supported
2288F: drivers/infiniband/hw/cxgb4/
2289
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002290CXGB4VF ETHERNET DRIVER (CXGB4VF)
2291M: Casey Leedom <leedom@chelsio.com>
2292L: netdev@vger.kernel.org
2293W: http://www.chelsio.com
2294S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002295F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002296
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002297STMMAC ETHERNET DRIVER
2298M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2299L: netdev@vger.kernel.org
2300W: http://www.stlinux.com
2301S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002302F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002303
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002305M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002306L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307W: http://www.arm.linux.org.uk/
2308S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002309F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002310
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002312M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002313W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002315F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
2317CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002319S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002320F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002321F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
2323CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002325S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002326F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002328CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002329M: Javier Martinez Canillas <javier@dowhile0.org>
2330L: linux-input@vger.kernel.org
2331S: Maintained
2332F: drivers/input/touchscreen/cyttsp*
2333F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002334
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002336M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337W: http://yaina.de/jreuter/
2338W: http://www.qsl.net/dl1bke/
2339L: linux-hams@vger.kernel.org
2340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002341F: net/ax25/af_ax25.c
2342F: net/ax25/ax25_dev.c
2343F: net/ax25/ax25_ds_*
2344F: net/ax25/ax25_in.c
2345F: net/ax25/ax25_out.c
2346F: net/ax25/ax25_timer.c
2347F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002349DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002350L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002351S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002352F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002353F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002354
2355DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002356M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002357W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002358M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002360F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002361
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002363M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002364M: Ali Akcaagac <aliakc@web.de>
2365M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002367L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368L: http://lists.twibble.org/mailman/listinfo/dc395x/
2369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002370F: Documentation/scsi/dc395x.txt
2371F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002373DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002374M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002375L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002376W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002378F: include/linux/dccp.h
2379F: include/linux/tfrc.h
2380F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002381
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383W: http://linux-decnet.sourceforge.net
2384L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002385S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002386F: Documentation/networking/decnet.txt
2387F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
2389DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002390M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002392F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002394DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002395M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05002396L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002398F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002401M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402W: http://www.debian.org/~dz/i8k/
2403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002404F: drivers/char/i8k.c
2405F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
Doug Warzecha90563ec2005-09-06 15:17:15 -07002407DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002408M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002410F: Documentation/dcdbas.txt
2411F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002412
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002413DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002414M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002415S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002416F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002417
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002418DESIGNWARE USB3 DRD IP DRIVER
2419M: Felipe Balbi <balbi@ti.com>
2420L: linux-usb@vger.kernel.org
2421L: linux-omap@vger.kernel.org
2422T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2423S: Maintained
2424F: drivers/usb/dwc3/
2425
Kyungmin Park89d07762012-01-10 15:09:09 -08002426DEVICE FREQUENCY (DEVFREQ)
2427M: MyungJoo Ham <myungjoo.ham@samsung.com>
2428M: Kyungmin Park <kyungmin.park@samsung.com>
2429L: linux-kernel@vger.kernel.org
2430S: Maintained
2431F: drivers/devfreq/
2432
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002434M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436S: Maintained
2437
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002438DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002439M: Alasdair Kergon <agk@redhat.com>
2440M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002441L: dm-devel@redhat.com
2442W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002443Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002444T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002446F: Documentation/device-mapper/
2447F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002448F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002449F: include/linux/device-mapper.h
2450F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002451
Guenter Roeck335d7c52011-01-26 11:45:49 -08002452DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002453M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002454L: linux-i2c@vger.kernel.org
2455S: Maintained
2456F: drivers/i2c/busses/i2c-diolan-u2c.c
2457
Randy Dunlape7839f22008-10-12 16:11:45 -07002458DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002459M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002460S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002461F: Documentation/filesystems/dnotify.txt
2462F: fs/notify/dnotify/
2463F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
2465DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002466M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2468W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2469W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2470S: Maintained
2471
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002472DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002473M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002475F: Documentation/filesystems/quota.txt
2476F: fs/quota/
2477F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
Bernie Thompson702686a2012-03-01 13:52:13 -08002479DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2480M: Bernie Thompson <bernie@plugable.com>
2481L: linux-fbdev@vger.kernel.org
2482S: Maintained
2483W: http://plugable.com/category/projects/udlfb/
2484F: drivers/video/udlfb.c
2485F: include/video/udlfb.h
2486F: Documentation/fb/udlfb.txt
2487
Randy Dunlape7839f22008-10-12 16:11:45 -07002488DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002489M: Christine Caulfield <ccaulfie@redhat.com>
2490M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002491L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002492W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002493T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002494S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002495F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002496
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302497DMA BUFFER SHARING FRAMEWORK
2498M: Sumit Semwal <sumit.semwal@linaro.org>
2499S: Maintained
2500L: linux-media@vger.kernel.org
2501L: dri-devel@lists.freedesktop.org
2502L: linaro-mm-sig@lists.linaro.org
2503F: drivers/base/dma-buf*
2504F: include/linux/dma-buf*
2505F: Documentation/dma-buf-sharing.txt
2506T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2507
Dan Williamsb3e5f262007-08-07 10:26:35 -07002508DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002509M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002510M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002511S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002512F: drivers/dma/
2513F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302514T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2515T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002516
Juerg Haefligerb8250372007-06-09 10:11:16 -04002517DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002518M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002519L: lm-sensors@lm-sensors.org
2520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002521F: Documentation/hwmon/dme1737
2522F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002523
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002524DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002525M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002526L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002527S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002528F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002529
Joe Perches7d2c86b2009-04-07 20:59:01 -07002530DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002531M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002532L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002533T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002534S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002535F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002536
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002538M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539L: blinux-list@redhat.com
2540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002541F: drivers/char/dtlk.c
2542F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002544DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002545M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002546L: linux-scsi@vger.kernel.org
2547W: http://www.adaptec.com/
2548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002549F: drivers/scsi/dpt*
2550F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002551
Philipp Reisnerb411b362009-09-25 16:07:19 -07002552DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002553P: Philipp Reisner
2554P: Lars Ellenberg
2555M: drbd-dev@lists.linbit.com
2556L: drbd-user@lists.linbit.com
2557W: http://www.drbd.org
2558T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2559T: git git://git.drbd.org/drbd-8.3.git
2560S: Supported
2561F: drivers/block/drbd/
2562F: lib/lru_cache.c
2563F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002564
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002565DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002566M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002567T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002569F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002570F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002571F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002572F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002573F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002574F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002575F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576
2577DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002578M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002579L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002580T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002582F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002583F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Chris Wilson8daf7472010-09-28 14:07:26 +01002585INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002586M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002587L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002588L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002589T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002590S: Supported
2591F: drivers/gpu/drm/i915
2592F: include/drm/i915*
2593
Kyungmin Park398a6d42011-11-02 11:33:16 +09002594DRM DRIVERS FOR EXYNOS
2595M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002596M: Joonyoung Shim <jy0922.shim@samsung.com>
2597M: Seung-Woo Kim <sw0312.kim@samsung.com>
2598M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002599L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002600T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002601S: Supported
2602F: drivers/gpu/drm/exynos
2603F: include/drm/exynos*
2604
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002605DRM DRIVERS FOR NVIDIA TEGRA
2606M: Thierry Reding <thierry.reding@avionic-design.de>
2607L: dri-devel@lists.freedesktop.org
2608L: linux-tegra@vger.kernel.org
2609T: git git://gitorious.org/thierryreding/linux.git
2610S: Maintained
2611F: drivers/gpu/drm/tegra/
2612F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2613
Alexey Klimov598df1a2012-11-28 17:16:32 -03002614DSBR100 USB FM RADIO DRIVER
2615M: Alexey Klimov <klimov.linux@gmail.com>
2616L: linux-media@vger.kernel.org
2617T: git git://linuxtv.org/media_tree.git
2618S: Maintained
2619F: drivers/media/radio/dsbr100.c
2620
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002622M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002623L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002625F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626
Antti Palosaari91952bc2012-10-01 12:28:46 -03002627DVB_USB_AF9015 MEDIA DRIVER
2628M: Antti Palosaari <crope@iki.fi>
2629L: linux-media@vger.kernel.org
2630W: http://linuxtv.org/
2631W: http://palosaari.fi/linux/
2632Q: http://patchwork.linuxtv.org/project/linux-media/list/
2633T: git git://linuxtv.org/anttip/media_tree.git
2634S: Maintained
2635F: drivers/media/usb/dvb-usb-v2/af9015*
2636
2637DVB_USB_AF9035 MEDIA DRIVER
2638M: Antti Palosaari <crope@iki.fi>
2639L: linux-media@vger.kernel.org
2640W: http://linuxtv.org/
2641W: http://palosaari.fi/linux/
2642Q: http://patchwork.linuxtv.org/project/linux-media/list/
2643T: git git://linuxtv.org/anttip/media_tree.git
2644S: Maintained
2645F: drivers/media/usb/dvb-usb-v2/af9035*
2646
2647DVB_USB_ANYSEE MEDIA DRIVER
2648M: Antti Palosaari <crope@iki.fi>
2649L: linux-media@vger.kernel.org
2650W: http://linuxtv.org/
2651W: http://palosaari.fi/linux/
2652Q: http://patchwork.linuxtv.org/project/linux-media/list/
2653T: git git://linuxtv.org/anttip/media_tree.git
2654S: Maintained
2655F: drivers/media/usb/dvb-usb-v2/anysee*
2656
2657DVB_USB_AU6610 MEDIA DRIVER
2658M: Antti Palosaari <crope@iki.fi>
2659L: linux-media@vger.kernel.org
2660W: http://linuxtv.org/
2661W: http://palosaari.fi/linux/
2662Q: http://patchwork.linuxtv.org/project/linux-media/list/
2663T: git git://linuxtv.org/anttip/media_tree.git
2664S: Maintained
2665F: drivers/media/usb/dvb-usb-v2/au6610*
2666
2667DVB_USB_CE6230 MEDIA DRIVER
2668M: Antti Palosaari <crope@iki.fi>
2669L: linux-media@vger.kernel.org
2670W: http://linuxtv.org/
2671W: http://palosaari.fi/linux/
2672Q: http://patchwork.linuxtv.org/project/linux-media/list/
2673T: git git://linuxtv.org/anttip/media_tree.git
2674S: Maintained
2675F: drivers/media/usb/dvb-usb-v2/ce6230*
2676
Michael Krufkyd099dea2012-10-02 00:56:20 -03002677DVB_USB_CXUSB MEDIA DRIVER
2678M: Michael Krufky <mkrufky@linuxtv.org>
2679L: linux-media@vger.kernel.org
2680W: http://linuxtv.org/
2681W: http://github.com/mkrufky
2682Q: http://patchwork.linuxtv.org/project/linux-media/list/
2683T: git git://linuxtv.org/media_tree.git
2684S: Maintained
Cesar Eduardo Barros3408d882012-11-23 20:26:32 -03002685F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002686
Antti Palosaari91952bc2012-10-01 12:28:46 -03002687DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2688M: Antti Palosaari <crope@iki.fi>
2689L: linux-media@vger.kernel.org
2690W: http://linuxtv.org/
2691W: http://palosaari.fi/linux/
2692Q: http://patchwork.linuxtv.org/project/linux-media/list/
2693T: git git://linuxtv.org/anttip/media_tree.git
2694S: Maintained
2695F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2696
2697DVB_USB_EC168 MEDIA DRIVER
2698M: Antti Palosaari <crope@iki.fi>
2699L: linux-media@vger.kernel.org
2700W: http://linuxtv.org/
2701W: http://palosaari.fi/linux/
2702Q: http://patchwork.linuxtv.org/project/linux-media/list/
2703T: git git://linuxtv.org/anttip/media_tree.git
2704S: Maintained
2705F: drivers/media/usb/dvb-usb-v2/ec168*
2706
Michael Krufky8856f5f2012-10-02 00:55:50 -03002707DVB_USB_MXL111SF MEDIA DRIVER
2708M: Michael Krufky <mkrufky@linuxtv.org>
2709L: linux-media@vger.kernel.org
2710W: http://linuxtv.org/
2711W: http://github.com/mkrufky
2712Q: http://patchwork.linuxtv.org/project/linux-media/list/
2713T: git git://linuxtv.org/mkrufky/mxl111sf.git
2714S: Maintained
2715F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2716
Antti Palosaari91952bc2012-10-01 12:28:46 -03002717DVB_USB_RTL28XXU MEDIA DRIVER
2718M: Antti Palosaari <crope@iki.fi>
2719L: linux-media@vger.kernel.org
2720W: http://linuxtv.org/
2721W: http://palosaari.fi/linux/
2722Q: http://patchwork.linuxtv.org/project/linux-media/list/
2723T: git git://linuxtv.org/anttip/media_tree.git
2724S: Maintained
2725F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2726
2727DVB_USB_V2 MEDIA DRIVER
2728M: Antti Palosaari <crope@iki.fi>
2729L: linux-media@vger.kernel.org
2730W: http://linuxtv.org/
2731W: http://palosaari.fi/linux/
2732Q: http://patchwork.linuxtv.org/project/linux-media/list/
2733T: git git://linuxtv.org/anttip/media_tree.git
2734S: Maintained
2735F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2736F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2737
Jason Baronac0ac382011-08-11 14:36:43 -04002738DYNAMIC DEBUG
2739M: Jason Baron <jbaron@redhat.com>
2740S: Maintained
2741F: lib/dynamic_debug.c
2742F: include/linux/dynamic_debug.h
2743
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002744DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002745M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002746S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002747F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002748
Antti Palosaari91952bc2012-10-01 12:28:46 -03002749E4000 MEDIA DRIVER
2750M: Antti Palosaari <crope@iki.fi>
2751L: linux-media@vger.kernel.org
2752W: http://linuxtv.org/
2753W: http://palosaari.fi/linux/
2754Q: http://patchwork.linuxtv.org/project/linux-media/list/
2755T: git git://linuxtv.org/anttip/media_tree.git
2756S: Maintained
2757F: drivers/media/tuners/e4000*
2758
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002760M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002761L: linux-eata@i-connect.net
2762L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002764F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
2766EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002767M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768L: linux-scsi@vger.kernel.org
2769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002770F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771
2772EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002773M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002774L: linux-eata@i-connect.net
2775L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002777F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778
2779EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002780M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002781L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782W: http://ebtables.sourceforge.net/
2783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002784F: include/linux/netfilter_bridge/ebt_*.h
2785F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
Antti Palosaari91952bc2012-10-01 12:28:46 -03002787EC100 MEDIA DRIVER
2788M: Antti Palosaari <crope@iki.fi>
2789L: linux-media@vger.kernel.org
2790W: http://linuxtv.org/
2791W: http://palosaari.fi/linux/
2792Q: http://patchwork.linuxtv.org/project/linux-media/list/
2793T: git git://linuxtv.org/anttip/media_tree.git
2794S: Maintained
2795F: drivers/media/dvb-frontends/ec100*
2796
Michael Halcrow237fead2006-10-04 02:16:22 -07002797ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002798M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002799M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002800L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002801W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002802S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002803F: Documentation/filesystems/ecryptfs.txt
2804F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002805
Alan Coxda9bb1d2006-01-18 17:44:13 -08002806EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002807M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002808L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002809W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002810S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002811F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002812F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002813F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002814
Borislav Petkovc476c232009-05-20 20:31:58 +02002815EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002816M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002817M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002818L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002819W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002820S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002821F: drivers/edac/amd64_edac*
2822
Ralf Baechlef65aad42012-10-17 00:39:09 +02002823EDAC-CAVIUM
2824M: Ralf Baechle <ralf@linux-mips.org>
2825M: David Daney <david.daney@cavium.com>
2826L: linux-edac@vger.kernel.org
2827L: linux-mips@linux-mips.org
2828W: bluesmoke.sourceforge.net
2829S: Supported
2830F: drivers/edac/octeon_edac*
2831
Dave Peterson0e438e32006-03-26 01:38:55 -08002832EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002833M: Mark Gross <mark.gross@intel.com>
2834M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002835L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002836W: bluesmoke.sourceforge.net
2837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002838F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002839
2840EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002841M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002842L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002843W: bluesmoke.sourceforge.net
2844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002845F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002846
Douglas Thompson6bc78402007-07-19 01:50:12 -07002847EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002848M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002849L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002850W: bluesmoke.sourceforge.net
2851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002852F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002853
2854EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002855M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002856L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002857W: bluesmoke.sourceforge.net
2858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002859F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002860
2861EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002862M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002863L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002864W: bluesmoke.sourceforge.net
2865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002866F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002867
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002868EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002869M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002870L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002871W: bluesmoke.sourceforge.net
2872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002873F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002874
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002875EDAC-I7300
2876M: Mauro Carvalho Chehab <mchehab@redhat.com>
2877L: linux-edac@vger.kernel.org
2878W: bluesmoke.sourceforge.net
2879S: Maintained
2880F: drivers/edac/i7300_edac.c
2881
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002882EDAC-I7CORE
2883M: Mauro Carvalho Chehab <mchehab@redhat.com>
2884L: linux-edac@vger.kernel.org
2885W: bluesmoke.sourceforge.net
2886S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002887F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002888
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002889EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002890M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302891M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002892L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002893W: bluesmoke.sourceforge.net
2894S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002895F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002896
2897EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002898M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002899L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002900W: bluesmoke.sourceforge.net
2901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002902F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002903
Dave Peterson0e438e32006-03-26 01:38:55 -08002904EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002905M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002906L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002907W: bluesmoke.sourceforge.net
2908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002909F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002910
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002911EDAC-SBRIDGE
2912M: Mauro Carvalho Chehab <mchehab@redhat.com>
2913L: linux-edac@vger.kernel.org
2914W: bluesmoke.sourceforge.net
2915S: Maintained
2916F: drivers/edac/sb_edac.c
2917
Clemens Ladischaf399172011-01-10 16:32:54 +01002918EDIROL UA-101/UA-1000 DRIVER
2919M: Clemens Ladisch <clemens@ladisch.de>
2920L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2921T: git git://git.alsa-project.org/alsa-kernel.git
2922S: Maintained
2923F: sound/usb/misc/ua101.c
2924
Matt Fleming1f7df952012-10-03 10:04:02 +01002925EXTENSIBLE FIRMWARE INTERFACE (EFI)
2926M: Matt Fleming <matt.fleming@intel.com>
2927L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002928T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002929S: Maintained
2930F: Documentation/x86/efi-stub.txt
2931F: arch/ia64/kernel/efi.c
2932F: arch/x86/boot/compressed/eboot.[ch]
2933F: arch/x86/include/asm/efi.h
2934F: arch/x86/platform/efi/*
2935F: drivers/firmware/efivars.c
2936F: include/linux/efi*.h
2937
Peter Jones85a00d92010-09-22 13:05:04 -07002938EFIFB FRAMEBUFFER DRIVER
2939L: linux-fbdev@vger.kernel.org
2940M: Peter Jones <pjones@redhat.com>
2941S: Maintained
2942F: drivers/video/efifb.c
2943
Josh Triplett0bee8d22006-07-30 03:03:58 -07002944EFS FILESYSTEM
2945W: http://aeschi.ch.eu.org/efs/
2946S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002947F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002948
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002949EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002950M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2951M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002952L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002953S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002954F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002955
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002956EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002957M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002958L: netdev@vger.kernel.org
2959S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002960F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002961
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02002962EM28XX VIDEO4LINUX DRIVER
2963M: Mauro Carvalho Chehab <mchehab@redhat.com>
2964L: linux-media@vger.kernel.org
2965W: http://linuxtv.org
2966T: git git://linuxtv.org/media_tree.git
2967S: Maintained
2968F: drivers/media/usb/em28xx/
2969
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002970EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002971M: Paul Gortmaker <paul.gortmaker@windriver.com>
2972M: Matt Mackall <mpm@selenic.com>
2973M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002974L: linux-embedded@vger.kernel.org
2975S: Maintained
2976
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002977EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002978M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002979L: linux-scsi@vger.kernel.org
2980W: http://sourceforge.net/projects/lpfcxxxx
2981S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002982F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002983
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002984ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002985M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002986S: Maintained
2987F: drivers/misc/cb710/
2988F: drivers/mmc/host/cb710-mmc.*
2989F: include/linux/cb710.h
2990
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002991ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2992M: Maxim Levitsky <maximlevitsky@gmail.com>
2993S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002994F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002995
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002997M: Christopher Hoover <ch@murgatroid.com>
2998M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003000F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003002EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003003M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003004S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07003005T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07003006F: drivers/video/s1d13xxxfb.c
3007F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003008
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003010M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003011L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07003013F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
3015ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05003016M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07003017L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08003018L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003019W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003021F: include/linux/netfilter_bridge/
3022F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023
3024ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003025M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07003027F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028
3029EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003030M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003031L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003033F: Documentation/filesystems/ext2.txt
3034F: fs/ext2/
3035F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036
3037EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003038M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07003039M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003040M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003041L: linux-ext4@vger.kernel.org
3042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003043F: Documentation/filesystems/ext3.txt
3044F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08003045
3046EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003047M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003048M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003049L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003050W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003051Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003053F: Documentation/filesystems/ext4.txt
3054F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
Mimi Zoharc5532b02011-08-17 18:52:24 -04003056Extended Verification Module (EVM)
3057M: Mimi Zohar <zohar@us.ibm.com>
3058S: Supported
3059F: security/integrity/evm/
3060
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003061EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3062M: MyungJoo Ham <myungjoo.ham@samsung.com>
3063M: Chanwoo Choi <cw00.choi@samsung.com>
3064L: linux-kernel@vger.kernel.org
3065S: Maintained
3066F: drivers/extcon/
3067F: Documentation/extcon/
3068
Jingoo Han0a799512012-02-06 11:30:39 +09003069EXYNOS DP DRIVER
3070M: Jingoo Han <jg1.han@samsung.com>
3071L: linux-fbdev@vger.kernel.org
3072S: Maintained
3073F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003074F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003075
Donghwa Lee33ad3912012-03-06 11:44:58 +09003076EXYNOS MIPI DISPLAY DRIVERS
3077M: Inki Dae <inki.dae@samsung.com>
3078M: Donghwa Lee <dh09.lee@samsung.com>
3079M: Kyungmin Park <kyungmin.park@samsung.com>
3080L: linux-fbdev@vger.kernel.org
3081S: Maintained
3082F: drivers/video/exynos/exynos_mipi*
3083F: include/video/exynos_mipi*
3084
Jean Delvaree53004e2006-01-09 23:26:14 +01003085F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003086M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003087L: lm-sensors@lm-sensors.org
3088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003089F: Documentation/hwmon/f71805f
3090F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003091
Michael Büscheea977e2012-04-02 12:14:32 -03003092FC0011 TUNER DRIVER
3093M: Michael Buesch <m@bues.ch>
3094L: linux-media@vger.kernel.org
3095S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003096F: drivers/media/tuners/fc0011.h
3097F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003098
Antti Palosaari91952bc2012-10-01 12:28:46 -03003099FC2580 MEDIA DRIVER
3100M: Antti Palosaari <crope@iki.fi>
3101L: linux-media@vger.kernel.org
3102W: http://linuxtv.org/
3103W: http://palosaari.fi/linux/
3104Q: http://patchwork.linuxtv.org/project/linux-media/list/
3105T: git git://linuxtv.org/anttip/media_tree.git
3106S: Maintained
3107F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108
Eric Paris88b2dbd2010-08-18 12:25:50 -04003109FANOTIFY
3110M: Eric Paris <eparis@redhat.com>
3111S: Maintained
3112F: fs/notify/fanotify/
3113F: include/linux/fanotify.h
3114
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003116M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117W: http://www.farsite.co.uk/
3118S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003119F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120
Akinobu Mitac5408b82007-04-23 14:41:20 -07003121FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003122M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003123S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003124F: Documentation/fault-injection/
3125F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003126
Robert Lovecae727d2010-02-16 12:16:00 -08003127FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3128M: Robert Love <robert.w.love@intel.com>
3129L: devel@open-fcoe.org
3130W: www.Open-FCoE.org
3131S: Supported
3132F: drivers/scsi/libfc/
3133F: drivers/scsi/fcoe/
3134F: include/scsi/fc/
3135F: include/scsi/libfc.h
3136F: include/scsi/libfcoe.h
3137
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003138FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003139M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003140L: linux-fsdevel@vger.kernel.org
3141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003142F: include/linux/fcntl.h
3143F: include/linux/fs.h
3144F: fs/fcntl.c
3145F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003146
3147FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003148M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003149L: linux-fsdevel@vger.kernel.org
3150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003151F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003152
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003153FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003154M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003155L: lm-sensors@lm-sensors.org
3156S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003157F: drivers/hwmon/f75375s.c
3158F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003159
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003160FIREWIRE AUDIO DRIVERS
3161M: Clemens Ladisch <clemens@ladisch.de>
3162L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3163T: git git://git.alsa-project.org/alsa-kernel.git
3164S: Maintained
3165F: sound/firewire/
3166
Stefan Richtereb86ec52012-11-03 09:25:20 +01003167FIREWIRE MEDIA DRIVERS (firedtv)
3168M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3169L: linux-media@vger.kernel.org
3170L: linux1394-devel@lists.sourceforge.net
3171T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3172S: Maintained
3173F: drivers/media/firewire/
3174
Chris Boota511ce32012-04-14 17:50:35 -07003175FIREWIRE SBP-2 TARGET
3176M: Chris Boot <bootc@bootc.net>
3177L: linux-scsi@vger.kernel.org
3178L: target-devel@vger.kernel.org
3179L: linux1394-devel@lists.sourceforge.net
3180T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3181S: Maintained
3182F: drivers/target/sbp/
3183
Joe Perches7d2c86b2009-04-07 20:59:01 -07003184FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003185M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003186L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003187W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003188T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003190F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003191F: include/linux/firewire.h
3192F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003193F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003194
3195FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003196M: Ming Lei <ming.lei@canonical.com>
3197L: linux-kernel@vger.kernel.org
3198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003199F: Documentation/firmware_class/
3200F: drivers/base/firmware*.c
3201F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003202
Jiri Kosina8206f662012-05-18 13:52:29 +02003203FLOPPY DRIVER
3204M: Jiri Kosina <jkosina@suse.cz>
3205T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3206S: Odd fixes
3207F: drivers/block/floppy.c
3208
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003209FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003210M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003211W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003213F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003214
3215FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003216L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003217S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003218F: drivers/net/wan/dlci.c
3219F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003220
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003222M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003223L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003225Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003226T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003227S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003228F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003229F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003230F: drivers/video/
3231F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003232F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
Timur Tabia57c1882012-10-16 17:33:42 -05003234FREESCALE DIU FRAMEBUFFER DRIVER
3235M: Timur Tabi <timur@freescale.com>
3236L: linux-fbdev@vger.kernel.org
3237S: Supported
3238F: drivers/video/fsl-diu-fb.*
3239
Zhang Wei173acc72008-03-01 07:42:48 -07003240FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003241M: Li Yang <leoli@freescale.com>
3242M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003243L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003244S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003245F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003246
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003247FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003248M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003249L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003250L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003252F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003253
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003254FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003255M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003256L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003257L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003259F: arch/arm/plat-mxc/include/mach/imxfb.h
3260F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003261
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003262FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003263M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3264M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003265L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003266L: netdev@vger.kernel.org
3267S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003268F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003269F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003270
Timur Tabid9e9d822008-04-24 08:45:26 +10003271FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003272M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003273L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003274S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003275F: arch/powerpc/sysdev/qe_lib/
3276F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003277
Joe Perchesb55ef9292009-10-26 16:49:46 -07003278FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003279M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003280L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003281L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003282S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003283F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003284
Li Yangbeaf53b2007-05-25 13:54:02 +08003285FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003286M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003287L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003288L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003289S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003290F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003291
Timur Tabid9e9d822008-04-24 08:45:26 +10003292FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003293M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003294L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003295S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003296F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003297
3298FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003299M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003300L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003301L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003302S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003303F: sound/soc/fsl/fsl*
3304F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003305
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003307M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003310F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311
Pavel Machek71038f52009-01-15 13:51:02 -08003312FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003313M: Pavel Machek <pavel@ucw.cz>
3314M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003315L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003316S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003317F: Documentation/power/freezing-of-tasks.txt
3318F: include/linux/freezer.h
3319F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003320
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003321FRONTSWAP API
3322M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3323L: linux-kernel@vger.kernel.org
3324S: Maintained
3325F: mm/frontswap.c
3326F: include/linux/frontswap.h
3327
David Howellsa5432f5a2009-04-20 15:46:45 +01003328FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003329M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01003330L: linux-cachefs@redhat.com
3331S: Supported
3332F: Documentation/filesystems/caching/
3333F: fs/fscache/
3334F: include/linux/fscache*.h
3335
David Howells5ab7ffe2007-04-10 15:10:45 +01003336FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003337M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003339F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340
Jonathan Woithe20b93732008-06-11 10:14:56 +09303341FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303342M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd09448532010-02-11 10:40:13 -05003343L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003345F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303346
Heungjun Kim4da621b62011-11-11 08:05:33 -03003347FUJITSU M-5MO LS CAMERA ISP DRIVER
3348M: Kyungmin Park <kyungmin.park@samsung.com>
3349M: Heungjun Kim <riverful.kim@samsung.com>
3350L: linux-media@vger.kernel.org
3351S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003352F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b62011-11-11 08:05:33 -03003353F: include/media/m5mols.h
3354
Robert Gerlach2d24c492012-01-18 14:26:22 +01003355FUJITSU TABLET EXTRAS
3356M: Robert Gerlach <khnz@gmx.de>
3357L: platform-driver-x86@vger.kernel.org
3358S: Maintained
3359F: drivers/platform/x86/fujitsu-tablet.c
3360
Miklos Szeredi04578f12005-09-09 13:10:22 -07003361FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003362M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003363L: fuse-devel@lists.sourceforge.net
3364W: http://fuse.sourceforge.net/
3365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003366F: fs/fuse/
3367F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003368
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003370M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003372S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003373F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374
3375GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003376M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377L: linux-scsi@vger.kernel.org
3378W: http://www.icp-vortex.com/
3379S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003380F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381
Hans Verkuil3169a1c2012-11-23 07:11:58 -03003382GEMTEK FM RADIO RECEIVER DRIVER
3383M: Hans Verkuil <hverkuil@xs4all.nl>
3384L: linux-media@vger.kernel.org
3385T: git git://linuxtv.org/media_tree.git
3386W: http://linuxtv.org
3387S: Maintained
3388F: drivers/media/radio/radio-gemtek*
3389
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003390GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003391M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003392S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003393F: drivers/i2c/busses/i2c-gpio.c
3394F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003395
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003396GENERIC GPIO I2C MULTIPLEXER DRIVER
3397M: Peter Korsgaard <peter.korsgaard@barco.com>
3398L: linux-i2c@vger.kernel.org
3399S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003400F: drivers/i2c/muxes/i2c-mux-gpio.c
3401F: include/linux/i2c-mux-gpio.h
3402F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003403
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003404GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003405M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003408F: drivers/net/wan/c101.c
3409F: drivers/net/wan/hd6457*
3410F: drivers/net/wan/hdlc*
3411F: drivers/net/wan/n2.c
3412F: drivers/net/wan/pc300too.c
3413F: drivers/net/wan/pci200syn.c
3414F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003416GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003417M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003418L: linux-arch@vger.kernel.org
3419T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3420S: Maintained
3421F: include/asm-generic
3422
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003423GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003424M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003425L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003426S: Supported
3427F: drivers/uio/uio_pci_generic.c
3428
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003429GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003430M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003431L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003432W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003433T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3434T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003435S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003436F: Documentation/filesystems/gfs2*.txt
3437F: fs/gfs2/
3438F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003439
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003440GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003441M: Hansjoerg Lipp <hjlipp@web.de>
3442M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003443L: gigaset307x-common@lists.sourceforge.net
3444W: http://gigaset307x.sourceforge.net/
3445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003446F: Documentation/isdn/README.gigaset
3447F: drivers/isdn/gigaset/
3448F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003449
Grant Likelya0dc00b2011-02-12 01:48:14 -07003450GPIO SUBSYSTEM
3451M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003452M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003453S: Maintained
3454T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003455F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003456F: drivers/gpio/
3457F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003458F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003459
Harry Wei71a6d0a2011-05-11 15:13:33 -07003460GRE DEMULTIPLEXER DRIVER
3461M: Dmitry Kozlov <xeb@mail.ru>
3462L: netdev@vger.kernel.org
3463S: Maintained
3464F: net/ipv4/gre.c
3465F: include/net/gre.h
3466
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003467GRETH 10/100/1G Ethernet MAC device driver
3468M: Kristoffer Glembo <kristoffer@gaisler.com>
3469L: netdev@vger.kernel.org
3470S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003471F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003472
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003473GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003474M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003475L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003476T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003477S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003478F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003479
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003480GSPCA GL860 SUBDRIVER
3481M: Olivier Lorin <o.lorin@laposte.net>
3482L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003483T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003484S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003485F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003486
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003487GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003488M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003489L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003490T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003491S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003492F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003493
3494GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003495M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003496L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003497T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003498S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003499F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003500
Brian Johnson261982f2009-07-19 15:58:56 -03003501GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003502M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003503L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003504T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003505S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003506F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003507
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003508GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003509M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003510L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003511T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003512S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003513F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003514
3515GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003516M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003517L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003518T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003519S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003520F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003521
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003522STK1160 USB VIDEO CAPTURE DRIVER
3523M: Ezequiel Garcia <elezegarcia@gmail.com>
3524L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003525T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003526S: Maintained
3527F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003528
Harry Wei71a6d0a2011-05-11 15:13:33 -07003529HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3530M: Frank Seidel <frank@f-seidel.de>
3531L: platform-driver-x86@vger.kernel.org
3532W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3533S: Maintained
3534F: drivers/platform/x86/hdaps.c
3535
3536HWPOISON MEMORY FAILURE HANDLING
3537M: Andi Kleen <andi@firstfloor.org>
3538L: linux-mm@kvack.org
3539T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3540S: Maintained
3541F: mm/memory-failure.c
3542F: mm/hwpoison-inject.c
3543
3544HYPERVISOR VIRTUAL CONSOLE DRIVER
3545L: linuxppc-dev@lists.ozlabs.org
3546S: Odd Fixes
3547F: drivers/tty/hvc/
3548
Michael Buesch844dd052006-06-26 00:24:59 -07003549HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003550M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003551M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003552L: lm-sensors@lm-sensors.org
3553W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003554T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003555T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003556S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003557F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003558F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003559F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003560
3561HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003562M: Matt Mackall <mpm@selenic.com>
3563M: Herbert Xu <herbert@gondor.apana.org.au>
3564S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003565F: Documentation/hw_random.txt
3566F: drivers/char/hw_random/
3567F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003568
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003569HARDWARE SPINLOCK CORE
3570M: Ohad Ben-Cohen <ohad@wizery.com>
3571S: Maintained
3572F: Documentation/hwspinlock.txt
3573F: drivers/hwspinlock/hwspinlock_*
3574F: include/linux/hwspinlock.h
3575
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003577L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003579F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580
Antti Palosaari91952bc2012-10-01 12:28:46 -03003581HD29L2 MEDIA DRIVER
3582M: Antti Palosaari <crope@iki.fi>
3583L: linux-media@vger.kernel.org
3584W: http://linuxtv.org/
3585W: http://palosaari.fi/linux/
3586Q: http://patchwork.linuxtv.org/project/linux-media/list/
3587T: git git://linuxtv.org/anttip/media_tree.git
3588S: Maintained
3589F: drivers/media/dvb-frontends/hd29l2*
3590
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003591HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003592M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003593L: iss_storagedev@hp.com
3594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003595F: Documentation/blockdev/cpqarray.txt
3596F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003597
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003598HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003599M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003600L: iss_storagedev@hp.com
3601S: Supported
3602F: Documentation/scsi/hpsa.txt
3603F: drivers/scsi/hpsa*.[ch]
3604F: include/linux/cciss*.h
3605
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003606HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003607M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003608L: iss_storagedev@hp.com
3609S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003610F: Documentation/blockdev/cciss.txt
3611F: drivers/block/cciss*
3612F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003613
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003615L: linux-fsdevel@vger.kernel.org
3616S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003617F: Documentation/filesystems/hfs.txt
3618F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619
3620HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003621M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622L: linux-nvidia@lists.surfsouth.com
3623W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003625F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003627HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003628M: Pavel Machek <pavel@ucw.cz>
3629M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003630L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003631S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003632F: arch/x86/power/
3633F: drivers/base/power/
3634F: kernel/power/
3635F: include/linux/suspend.h
3636F: include/linux/freezer.h
3637F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003638F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003639
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003640HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003641M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003642L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003643T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003645F: drivers/hid/
3646F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003647
Ingo Molnar38bed542007-02-22 09:09:34 +01003648HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003649M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003650T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003651S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003652F: Documentation/timers/
3653F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003654F: kernel/time/clockevents.c
3655F: kernel/time/tick*.*
3656F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003657F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003658F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003659
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003662S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003663F: drivers/net/hamradio/dmascc.c
3664F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003666HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003667M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003668W: http://www.highpoint-tech.com
3669S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003670F: Documentation/scsi/hptiop.txt
3671F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003672
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003674M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675L: linux-hippi@sunsite.dk
3676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003677F: include/linux/hippidevice.h
3678F: include/linux/if_hippi.h
3679F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003680F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681
Jouni Malinenff1d2762005-05-12 22:54:16 -04003682HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003683M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003684L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003685L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003686W: http://hostap.epitest.fi/
3687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003688F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003689
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003690HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05003691L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003692S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003693F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003694
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003695HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003696M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003697S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003698F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003699
Joe Perches7d2c86b2009-04-07 20:59:01 -07003700HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003701M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003703F: Documentation/timers/hpet.txt
3704F: drivers/char/hpet.c
3705F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003706
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003707HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003708M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003710F: arch/x86/kernel/hpet.c
3711F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003712
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003714M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003717F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718
Joe Perches7d2c86b2009-04-07 20:59:01 -07003719HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003720M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003721W: http://www.pharscape.org
3722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003723F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003724
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003725HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003726M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003727L: linux-input@vger.kernel.org
3728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003729F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003730
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003732M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003734F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003736Hyper-V CORE AND DRIVERS
3737M: K. Y. Srinivasan <kys@microsoft.com>
3738M: Haiyang Zhang <haiyangz@microsoft.com>
3739L: devel@linuxdriverproject.org
3740S: Maintained
3741F: drivers/hv/
3742F: drivers/hid/hid-hyperv.c
3743F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003744
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003745I2C OVER PARALLEL PORT
3746M: Jean Delvare <khali@linux-fr.org>
3747L: linux-i2c@vger.kernel.org
3748S: Maintained
3749F: Documentation/i2c/busses/i2c-parport
3750F: Documentation/i2c/busses/i2c-parport-light
3751F: drivers/i2c/busses/i2c-parport.c
3752F: drivers/i2c/busses/i2c-parport-light.c
3753
3754I2C/SMBUS CONTROLLER DRIVERS FOR PC
3755M: Jean Delvare <khali@linux-fr.org>
3756L: linux-i2c@vger.kernel.org
3757S: Maintained
3758F: Documentation/i2c/busses/i2c-ali1535
3759F: Documentation/i2c/busses/i2c-ali1563
3760F: Documentation/i2c/busses/i2c-ali15x3
3761F: Documentation/i2c/busses/i2c-amd756
3762F: Documentation/i2c/busses/i2c-amd8111
3763F: Documentation/i2c/busses/i2c-i801
3764F: Documentation/i2c/busses/i2c-nforce2
3765F: Documentation/i2c/busses/i2c-piix4
3766F: Documentation/i2c/busses/i2c-sis5595
3767F: Documentation/i2c/busses/i2c-sis630
3768F: Documentation/i2c/busses/i2c-sis96x
3769F: Documentation/i2c/busses/i2c-via
3770F: Documentation/i2c/busses/i2c-viapro
3771F: drivers/i2c/busses/i2c-ali1535.c
3772F: drivers/i2c/busses/i2c-ali1563.c
3773F: drivers/i2c/busses/i2c-ali15x3.c
3774F: drivers/i2c/busses/i2c-amd756.c
3775F: drivers/i2c/busses/i2c-amd756-s4882.c
3776F: drivers/i2c/busses/i2c-amd8111.c
3777F: drivers/i2c/busses/i2c-i801.c
3778F: drivers/i2c/busses/i2c-isch.c
3779F: drivers/i2c/busses/i2c-nforce2.c
3780F: drivers/i2c/busses/i2c-nforce2-s4985.c
3781F: drivers/i2c/busses/i2c-piix4.c
3782F: drivers/i2c/busses/i2c-sis5595.c
3783F: drivers/i2c/busses/i2c-sis630.c
3784F: drivers/i2c/busses/i2c-sis96x.c
3785F: drivers/i2c/busses/i2c-via.c
3786F: drivers/i2c/busses/i2c-viapro.c
3787
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003788I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003789M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003790L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003791S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003792F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003793
Jean Delvare5b543962005-08-15 19:51:02 +02003794I2C SUBSYSTEM
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003795M: Wolfram Sang <w.sang@pengutronix.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003796M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003797L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003798W: http://i2c.wiki.kernel.org/
3799T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003800T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003802F: Documentation/i2c/
3803F: drivers/i2c/
3804F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003805F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003807I2C-TAOS-EVM DRIVER
3808M: Jean Delvare <khali@linux-fr.org>
3809L: linux-i2c@vger.kernel.org
3810S: Maintained
3811F: Documentation/i2c/busses/i2c-taos-evm
3812F: drivers/i2c/busses/i2c-taos-evm.c
3813
Till Harbaume8c76ee2007-05-01 23:26:35 +02003814I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003815M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003816L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003817W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003819F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003820
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003822M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003824F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825
3826i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003827M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003828T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829S: Maintained
3830
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003832M: Tony Luck <tony.luck@intel.com>
3833M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003835T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003837F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838
Kent Yoder956c2032012-09-07 04:17:01 +08003839IBM Power in-Nest Crypto Acceleration
3840M: Kent Yoder <key@linux.vnet.ibm.com>
3841L: linux-crypto@vger.kernel.org
3842S: Supported
3843F: drivers/crypto/nx/
3844
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003845IBM Power 842 compression accelerator
3846M: Robert Jennings <rcj@linux.vnet.ibm.com>
3847S: Supported
3848F: drivers/crypto/nx/nx-842.c
3849F: include/linux/nx842.h
3850
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003852M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003854F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855
Santiago Leon9d348af2010-09-03 18:29:53 +00003856IBM Power Virtual Ethernet Device Driver
3857M: Santiago Leon <santil@linux.vnet.ibm.com>
3858L: netdev@vger.kernel.org
3859S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003860F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003861
Robert Jennings4b7652c2012-07-31 12:34:36 -05003862IBM Power Virtual SCSI/FC Device Drivers
3863M: Robert Jennings <rcj@linux.vnet.ibm.com>
3864L: linux-scsi@vger.kernel.org
3865S: Supported
3866F: drivers/scsi/ibmvscsi/
3867X: drivers/scsi/ibmvscsi/ibmvstgt.c
3868
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869IBM ServeRAID RAID DRIVER
3870P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003871M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003873S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003874F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003876ICH LPC AND GPIO DRIVER
3877M: Peter Tyser <ptyser@xes-inc.com>
3878S: Maintained
3879F: drivers/mfd/lpc_ich.c
3880F: drivers/gpio/gpio-ich.c
3881
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003882IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003883M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003885Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003886T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003888F: Documentation/ide/
3889F: drivers/ide/
3890F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891
Ike Panhc6cb8c132011-08-25 22:28:45 +08003892IDEAPAD LAPTOP EXTRAS DRIVER
3893M: Ike Panhc <ike.pan@canonical.com>
3894L: platform-driver-x86@vger.kernel.org
3895W: http://launchpad.net/ideapad-laptop
3896S: Maintained
3897F: drivers/platform/x86/ideapad-laptop.c
3898
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003899IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003900M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003901L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003903F: Documentation/cdrom/ide-cd
3904F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905
Andy Henroid27471fd2008-10-09 11:45:22 -07003906IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003907M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003908L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003909S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003910F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003911
Sergey Lapin02cf2282009-06-08 12:18:50 +00003912IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003913M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003914M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003915L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003916W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003917T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003918S: Maintained
3919F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003920F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003921F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003922
Sean Young40ad4a32012-11-19 10:32:53 -03003923IGUANAWORKS USB IR TRANSCEIVER
3924M: Sean Young <sean@mess.org>
3925L: linux-media@vger.kernel.org
3926S: Maintained
3927F: drivers/media/rc/iguanair.c
3928
Ameya Palande9545f862012-01-10 09:00:58 -08003929IIO SUBSYSTEM AND DRIVERS
3930M: Jonathan Cameron <jic23@cam.ac.uk>
3931L: linux-iio@vger.kernel.org
3932S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003933F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003934F: drivers/staging/iio/
3935
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003936IKANOS/ADI EAGLE ADSL USB DRIVER
3937M: Matthieu Castet <castet.matthieu@free.fr>
3938M: Stanislaw Gruszka <stf_xl@wp.pl>
3939S: Maintained
3940F: drivers/usb/atm/ueagle-atm.c
3941
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01003942INDUSTRY PACK SUBSYSTEM (IPACK)
3943M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
3944M: Jens Taprogge <jens.taprogge@taprogge.org>
3945M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3946L: industrypack-devel@lists.sourceforge.net
3947W: http://industrypack.sourceforge.net
3948S: Maintained
3949F: drivers/ipack/
3950
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003951INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003952M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003953S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003954F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003955
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003957L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003958S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003959F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960
3961INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003962M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003963M: Sean Hefty <sean.hefty@intel.com>
3964M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003965L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003966W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003967Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003968T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003970F: Documentation/infiniband/
3971F: drivers/infiniband/
3972F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973
Robert Lovec9f04f52005-07-15 12:21:07 -04003974INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003975M: John McCutchan <john@johnmccutchan.com>
3976M: Robert Love <rlove@rlove.org>
3977M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003979F: Documentation/filesystems/inotify.txt
3980F: fs/notify/inotify/
3981F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003982
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003983INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003984M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3985M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003986L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003987Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003988T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003990F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003991F: include/linux/input.h
3992F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003993
Henrik Rydberg3267a872010-06-24 19:10:40 -07003994INPUT MULTITOUCH (MT) PROTOCOL
3995M: Henrik Rydberg <rydberg@euromail.se>
3996L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003997T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003998S: Maintained
3999F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004000F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07004001K: \b(ABS|SYN)_MT_
4002
Dave Jiang4ac13e12011-07-29 17:16:55 -07004003INTEL C600 SERIES SAS CONTROLLER DRIVER
4004M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07004005M: Lukasz Dorau <lukasz.dorau@intel.com>
4006M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004007M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004008L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07004009T: git git://git.code.sf.net/p/intel-sas/isci
4010S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07004011F: drivers/scsi/isci/
4012F: firmware/isci/
4013
Len Brown26717172010-03-08 14:07:30 -05004014INTEL IDLE DRIVER
4015M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02004016L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004017T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05004018S: Supported
4019F: drivers/idle/intel_idle.c
4020
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004021INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08004022M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004023L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004025F: Documentation/fb/intelfb.txt
4026F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004027
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004029M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004030L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004032F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304034INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004035M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05004036L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304037W: http://www.lesswatts.org/projects/acpi/
4038S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004039F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304040
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004042M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004044F: arch/x86/kernel/microcode_core.c
4045F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004047INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004048M: Dan Williams <djbw@fb.com>
4049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004050F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004051
David Woodhouse6c8909b2008-10-18 16:12:17 +01004052INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004053M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004054L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004055T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004056S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004057F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004058F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004059
Dan Williamsb3e5f262007-08-07 10:26:35 -07004060INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004061M: Dan Williams <djbw@fb.com>
4062S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004063F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004064
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004065INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004066M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004068F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4069F: arch/arm/mach-ixp4xx/include/mach/npe.h
4070F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4071F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004072F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004073F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004074
Michael Buesch844dd052006-06-26 00:24:59 -07004075INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004076M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004078F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004079
Jeff Kirsher0d164402010-10-05 01:15:17 +00004080INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004081M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4082M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4083M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004084M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4085M: Don Skidmore <donald.c.skidmore@intel.com>
4086M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004087M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004088M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004089M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004090M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004091L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004092W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004093W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004094T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4095T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004097F: Documentation/networking/e100.txt
4098F: Documentation/networking/e1000.txt
4099F: Documentation/networking/e1000e.txt
4100F: Documentation/networking/igb.txt
4101F: Documentation/networking/igbvf.txt
4102F: Documentation/networking/ixgb.txt
4103F: Documentation/networking/ixgbe.txt
4104F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004105F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106
Len Brown6dccf9c2011-07-12 22:29:32 -04004107INTEL MRST PMU DRIVER
4108M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02004109L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04004110S: Supported
4111F: arch/x86/platform/mrst/pmu.*
4112
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004113INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4114M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004115L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004117F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004118F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004119F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004120
Shane Wang4bd96a72010-03-10 14:36:10 +08004121INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004122M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4123M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004124M: Shane Wang <shane.wang@intel.com>
4125L: tboot-devel@lists.sourceforge.net
4126W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004127T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004128S: Supported
4129F: Documentation/intel_txt.txt
4130F: include/linux/tboot.h
4131F: arch/x86/kernel/tboot.c
4132
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004133INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004134M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004135M: linux-wimax@intel.com
4136L: wimax@linuxwimax.org
4137S: Supported
4138W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004139F: Documentation/wimax/README.i2400m
4140F: drivers/net/wimax/i2400m/
4141F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004142
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004143INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4144M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004145L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004146S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004147F: drivers/net/wireless/iwlegacy/
4148
Zhu Yib481de92007-09-25 17:54:57 -07004149INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004150M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004151M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004152M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004153L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004154W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07004155T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004156S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004157F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004158
Tomas Winklerde8fe022012-05-09 16:39:02 +03004159INTEL MANAGEMENT ENGINE (mei)
4160M: Tomas Winkler <tomas.winkler@intel.com>
4161L: linux-kernel@vger.kernel.org
4162S: Supported
4163F: include/linux/mei.h
4164F: drivers/misc/mei/*
4165F: Documentation/mei/*
4166
Ralf Baechlecb109a02007-08-30 23:56:30 -07004167IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004168M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169L: linux-mips@linux-mips.org
4170S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004171F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172
Ralf Baechlecb109a02007-08-30 23:56:30 -07004173IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004174M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004175L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004176S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004177F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004178
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004179IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004180M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004182F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183
Francois Romieu1202d6f2007-09-17 17:13:55 -07004184IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004185M: Francois Romieu <romieu@fr.zoreil.com>
4186M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004187L: netdev@vger.kernel.org
4188S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004189F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004190
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004191IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004192M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004193L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004195F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004196
Corey Minyard4409ebe2006-04-20 02:43:12 -07004197IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004198M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004199L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004200W: http://openipmi.sourceforge.net/
4201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004202F: Documentation/IPMI.txt
4203F: drivers/char/ipmi/
4204F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004205
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004206IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004207M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004208L: linux-scsi@vger.kernel.org
4209W: http://www.adaptec.com/
4210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004211F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004212
4213IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004214M: Wensong Zhang <wensong@linux-vs.org>
4215M: Simon Horman <horms@verge.net.au>
4216M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004217L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004218L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004220F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004221F: include/net/ip_vs.h
4222F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004223F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224
Randy Dunlape7839f22008-10-12 16:11:45 -07004225IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004226M: Jiri Kosina <jkosina@suse.cz>
4227M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004228S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004229F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004230
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004231IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004232M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004233L: netdev@vger.kernel.org
4234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004235F: include/linux/ipx.h
4236F: include/net/ipx.h
4237F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004238
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004240M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004241L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004242L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004244S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004245T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004246F: Documentation/networking/irda.txt
4247F: drivers/net/irda/
4248F: include/net/irda/
4249F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004251IRQ SUBSYSTEM
4252M: Thomas Gleixner <tglx@linutronix.de>
4253S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004254T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004255F: kernel/irq/
4256
Grant Likely7ab3a832012-02-14 14:06:47 -07004257IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4258M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4259M: Grant Likely <grant.likely@secretlab.ca>
4260T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4261S: Maintained
4262F: Documentation/IRQ-domain.txt
4263F: include/linux/irqdomain.h
4264F: kernel/irq/irqdomain.c
4265
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004266ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004267M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004268S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004269F: Documentation/isapnp.txt
4270F: drivers/pnp/isapnp/
4271F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004272
Hans Verkuild39b84202012-11-23 07:07:02 -03004273ISA RADIO MODULE
4274M: Hans Verkuil <hverkuil@xs4all.nl>
4275L: linux-media@vger.kernel.org
4276T: git git://linuxtv.org/media_tree.git
4277W: http://linuxtv.org
4278S: Maintained
4279F: drivers/media/radio/radio-isa*
4280
Harry Wei71a6d0a2011-05-11 15:13:33 -07004281iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4282M: Peter Jones <pjones@redhat.com>
4283M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4284S: Maintained
4285F: drivers/firmware/iscsi_ibft*
4286
Mike Christie14816b1e2007-11-28 16:22:06 -08004287ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004288M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004289L: open-iscsi@googlegroups.com
4290W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004291T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004293F: drivers/scsi/*iscsi*
4294F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004295
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004297M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004298L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004299L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004301T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004303F: Documentation/isdn/
4304F: drivers/isdn/
4305F: include/linux/isdn.h
4306F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307
4308ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004309M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004310L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311W: http://www.melware.de
4312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004313F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314
Jean Delvared6248702010-03-05 22:17:20 +01004315IT87 HARDWARE MONITORING DRIVER
4316M: Jean Delvare <khali@linux-fr.org>
4317L: lm-sensors@lm-sensors.org
4318S: Maintained
4319F: Documentation/hwmon/it87
4320F: drivers/hwmon/it87.c
4321
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004322IT913X MEDIA DRIVER
4323M: Malcolm Priestley <tvboxspy@gmail.com>
4324L: linux-media@vger.kernel.org
4325W: http://linuxtv.org/
4326Q: http://patchwork.linuxtv.org/project/linux-media/list/
4327S: Maintained
4328F: drivers/media/usb/dvb-usb-v2/it913x*
4329
4330IT913X FE MEDIA DRIVER
4331M: Malcolm Priestley <tvboxspy@gmail.com>
4332L: linux-media@vger.kernel.org
4333W: http://linuxtv.org/
4334Q: http://patchwork.linuxtv.org/project/linux-media/list/
4335S: Maintained
4336F: drivers/media/dvb-frontends/it913x-fe*
4337
Hans Verkuil91821ff2007-12-02 09:35:33 -03004338IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004339M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004340L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004341L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004342T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004343W: http://www.ivtvdriver.org
4344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004345F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004346F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004347F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004348
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004349IX2505V MEDIA DRIVER
4350M: Malcolm Priestley <tvboxspy@gmail.com>
4351L: linux-media@vger.kernel.org
4352W: http://linuxtv.org/
4353Q: http://patchwork.linuxtv.org/project/linux-media/list/
4354S: Maintained
4355F: drivers/media/dvb-frontends/ix2505v*
4356
Guenter Roeck4453d732010-08-09 17:21:08 -07004357JC42.4 TEMPERATURE SENSOR DRIVER
4358M: Guenter Roeck <linux@roeck-us.net>
4359L: lm-sensors@lm-sensors.org
4360S: Maintained
4361F: drivers/hwmon/jc42.c
4362F: Documentation/hwmon/jc42
4363
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004364JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004365M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004366L: jfs-discussion@lists.sourceforge.net
4367W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004368T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004370F: Documentation/filesystems/jfs.txt
4371F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004372
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004373JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004374M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004375L: netdev@vger.kernel.org
4376S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004377F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004378
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004380M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004381L: linux-mtd@lists.infradead.org
4382W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004384F: fs/jffs2/
4385F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386
Josh Triplettde456d32006-07-30 03:04:00 -07004387JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004388M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004389M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004390L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004391S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004392F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004393F: include/linux/jbd.h
4394
4395JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4396M: "Theodore Ts'o" <tytso@mit.edu>
4397L: linux-ext4@vger.kernel.org
4398S: Maintained
4399F: fs/jbd2/
4400F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004401
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004402JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004403M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004404L: linux-serial@vger.kernel.org
4405S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004406F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004407
Clemens Ladischaf399172011-01-10 16:32:54 +01004408K10TEMP HARDWARE MONITORING DRIVER
4409M: Clemens Ladisch <clemens@ladisch.de>
4410L: lm-sensors@lm-sensors.org
4411S: Maintained
4412F: Documentation/hwmon/k10temp
4413F: drivers/hwmon/k10temp.c
4414
Rudolf Marek4660cb32006-10-08 22:01:26 +02004415K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004416M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004417L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004419F: Documentation/hwmon/k8temp
4420F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421
4422KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004423M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004424L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004425S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004426F: Documentation/kbuild/kconfig-language.txt
4427F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428
Vivek Goyalea6c2082006-05-20 14:59:55 -07004429KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004430M: Vivek Goyal <vgoyal@redhat.com>
4431M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004432L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004433W: http://lse.sourceforge.net/kdump/
4434S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004435F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004436
Hans Verkuilf41bf022012-11-23 07:04:36 -03004437KEENE FM RADIO TRANSMITTER DRIVER
4438M: Hans Verkuil <hverkuil@xs4all.nl>
4439L: linux-media@vger.kernel.org
4440T: git git://linuxtv.org/media_tree.git
4441W: http://linuxtv.org
4442S: Maintained
4443F: drivers/media/radio/radio-keene*
4444
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004446M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004447L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004449F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450
Michal Marek70fb7ba2010-01-29 14:22:43 +01004451KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004452M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004453T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4454T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004455L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004457F: Documentation/kbuild/
4458F: Makefile
4459F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004460F: scripts/basic/
4461F: scripts/mk*
4462F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463
4464KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004465L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004466W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004467S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004469KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004470M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004471L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472W: http://nfs.sourceforge.net/
NeilBrown98fac23f2007-01-26 00:56:57 -08004473S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004474F: fs/nfsd/
4475F: include/linux/nfsd/
4476F: fs/lockd/
4477F: fs/nfs_common/
4478F: net/sunrpc/
4479F: include/linux/lockd/
4480F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481
Avi Kivity426d62e2006-12-13 00:34:03 -08004482KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004483M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004484M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004485L: kvm@vger.kernel.org
4486W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004487S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004488F: Documentation/*/kvm.txt
4489F: arch/*/kvm/
4490F: arch/*/include/asm/kvm*
4491F: include/linux/kvm*
4492F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004493
Joerg Roedelad8003d2008-09-10 20:01:07 +02004494KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004495M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004496L: kvm@vger.kernel.org
4497W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004499F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004500F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004501
Hollis Blanchard513014b2008-04-16 23:28:08 -05004502KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004503M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004504L: kvm-ppc@vger.kernel.org
4505W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004506T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004507S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004508F: arch/powerpc/include/asm/kvm*
4509F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004510
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004511KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004512M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004513L: kvm-ia64@vger.kernel.org
4514W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004516F: Documentation/ia64/kvm.txt
4517F: arch/ia64/include/asm/kvm*
4518F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004519
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004520KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004521M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004522M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004523M: linux390@de.ibm.com
4524L: linux-s390@vger.kernel.org
4525W: http://www.ibm.com/developerworks/linux/linux390/
4526S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004527F: Documentation/s390/kvm.txt
4528F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004529F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004530F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004531
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004532KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004533M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004534W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004535L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004537F: include/linux/kexec.h
4538F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004539
David Howellse9714612010-03-29 23:42:09 +01004540KEYS/KEYRINGS:
4541M: David Howells <dhowells@redhat.com>
4542L: keyrings@linux-nfs.org
4543S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004544F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004545F: include/linux/key.h
4546F: include/linux/key-type.h
4547F: include/keys/
4548F: security/keys/
4549
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004550KEYS-TRUSTED
4551M: David Safford <safford@watson.ibm.com>
4552M: Mimi Zohar <zohar@us.ibm.com>
4553L: linux-security-module@vger.kernel.org
4554L: keyrings@linux-nfs.org
4555S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004556F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004557F: include/keys/trusted-type.h
4558F: security/keys/trusted.c
4559F: security/keys/trusted.h
4560
4561KEYS-ENCRYPTED
4562M: Mimi Zohar <zohar@us.ibm.com>
4563M: David Safford <safford@watson.ibm.com>
4564L: linux-security-module@vger.kernel.org
4565L: keyrings@linux-nfs.org
4566S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004567F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004568F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004569F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004570
Jason Wessel5b778da2010-05-20 21:04:28 -05004571KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004572M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004573W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004574L: kgdb-bugreport@lists.sourceforge.net
4575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004576F: Documentation/DocBook/kgdb.tmpl
4577F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004578F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004579F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004580F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004581F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004582
Pekka Enberg456db8c2008-04-28 22:47:29 +03004583KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004584M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004585M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004586S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004587F: Documentation/kmemcheck.txt
4588F: arch/x86/include/asm/kmemcheck.h
4589F: arch/x86/mm/kmemcheck/
4590F: include/linux/kmemcheck.h
4591F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004592
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004593KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004594M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004595S: Maintained
4596F: Documentation/kmemleak.txt
4597F: include/linux/kmemleak.h
4598F: mm/kmemleak.c
4599F: mm/kmemleak-test.c
4600
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004601KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004602M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4603M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4604M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004605M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004607F: Documentation/kprobes.txt
4608F: include/linux/kprobes.h
4609F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004610
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004611KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004612M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004613W: http://miguelojeda.es/auxdisplay.htm
4614W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004615S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004616F: Documentation/auxdisplay/ks0108
4617F: drivers/auxdisplay/ks0108.c
4618F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004619
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004622S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004623F: Documentation/networking/lapb-module.txt
4624F: include/*/lapb.h
4625F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626
4627LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004628M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629L: linux-scsi@vger.kernel.org
4630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004631F: Documentation/scsi/53c700.txt
4632F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633
Richard Purdie263de9b2006-05-15 09:44:16 -07004634LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004635M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004636M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004637L: linux-leds@vger.kernel.org
4638T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004640F: drivers/leds/
4641F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004642
Jean Delvareb0461a42011-06-15 15:08:46 -07004643LEGACY EEPROM DRIVER
4644M: Jean Delvare <khali@linux-fr.org>
4645S: Maintained
4646F: Documentation/misc-devices/eeprom
4647F: drivers/misc/eeprom/eeprom.c
4648
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004650M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651L: legousb-devel@lists.sourceforge.net
4652W: http://legousb.sourceforge.net/
4653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004654F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655
Michael Krufky055616a2012-10-02 00:56:06 -03004656LG2160 MEDIA DRIVER
4657M: Michael Krufky <mkrufky@linuxtv.org>
4658L: linux-media@vger.kernel.org
4659W: http://linuxtv.org/
4660W: http://github.com/mkrufky
4661Q: http://patchwork.linuxtv.org/project/linux-media/list/
4662T: git git://linuxtv.org/mkrufky/tuners.git
4663S: Maintained
4664F: drivers/media/dvb-frontends/lg2160.*
4665
Michael Krufky6f0e7722012-10-02 00:56:00 -03004666LGDT3305 MEDIA DRIVER
4667M: Michael Krufky <mkrufky@linuxtv.org>
4668L: linux-media@vger.kernel.org
4669W: http://linuxtv.org/
4670W: http://github.com/mkrufky
4671Q: http://patchwork.linuxtv.org/project/linux-media/list/
4672T: git git://linuxtv.org/mkrufky/tuners.git
4673S: Maintained
4674F: drivers/media/dvb-frontends/lgdt3305.*
4675
Rusty Russell568a17f2007-10-25 14:12:24 +10004676LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004677M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004678L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004679W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004680S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004681F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004682F: arch/x86/lguest/
4683F: drivers/lguest/
4684F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004685F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004686
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004688M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689W: http://www.ibm.com/linux/ltc/projects/ppc
4690S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004691F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004693LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004694M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4695M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004697L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004698Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004699T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004701F: Documentation/powerpc/
4702F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703
4704LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004705M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004707L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004709F: arch/powerpc/platforms/powermac/
4710F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711
Grant Likely77a76362008-07-12 12:11:43 -06004712LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004713M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004714L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004715T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004717F: arch/powerpc/platforms/512x/
4718F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719
4720LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004721M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004722M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004724L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004725T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004727F: arch/powerpc/platforms/40x/
4728F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729
Grant Likely260c02a2007-10-02 12:15:34 +10004730LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004731M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004732W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004733L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004734T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004736F: arch/powerpc/*/*virtex*
4737F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738
Tom Rinie93adf12005-07-26 12:49:53 -07004739LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004740M: Vitaly Bordug <vitb@kernel.crashing.org>
4741M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004742W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004743L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004744S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004745F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004746
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004748M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004749W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004750L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004751S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004752F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004753F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754
Olof Johanssonab06ff32006-09-06 14:44:54 -05004755LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004756M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004757L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004758S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004759F: arch/powerpc/platforms/pasemi/
4760F: drivers/*/*pasemi*
4761F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004762
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004764M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004765L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766S: Supported
4767
Harry Weia23ce6d2011-02-11 16:52:20 +01004768LIS3LV02D ACCELEROMETER DRIVER
4769M: Eric Piel <eric.piel@tremplin-utc.net>
4770S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004771F: Documentation/misc-devices/lis3lv02d
4772F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004773F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004774
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004775LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004776M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004777S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004778F: include/linux/llc.h
4779F: include/net/llc*
4780F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004781
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004782LM73 HARDWARE MONITOR DRIVER
4783M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4784L: lm-sensors@lm-sensors.org
4785S: Maintained
4786F: drivers/hwmon/lm73.c
4787
Jean Delvare156e2d12011-07-25 21:46:11 +02004788LM78 HARDWARE MONITOR DRIVER
4789M: Jean Delvare <khali@linux-fr.org>
4790L: lm-sensors@lm-sensors.org
4791S: Maintained
4792F: Documentation/hwmon/lm78
4793F: drivers/hwmon/lm78.c
4794
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004796M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004797L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004799F: Documentation/hwmon/lm83
4800F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801
4802LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004803M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004804L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004806F: Documentation/hwmon/lm90
4807F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004809LME2510 MEDIA DRIVER
4810M: Malcolm Priestley <tvboxspy@gmail.com>
4811L: linux-media@vger.kernel.org
4812W: http://linuxtv.org/
4813Q: http://patchwork.linuxtv.org/project/linux-media/list/
4814S: Maintained
4815F: drivers/media/usb/dvb-usb-v2/lmedm04*
4816
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004817LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004818M: Peter Zijlstra <peterz@infradead.org>
4819M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004820T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004822F: Documentation/lockdep*.txt
4823F: Documentation/lockstat.txt
4824F: include/linux/lockdep.h
4825F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004826
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004827LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004828M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004829L: linux-ntfs-dev@lists.sourceforge.net
4830W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004832F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004833F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834
Joern Engelef6ada32009-11-20 22:17:12 +01004835LogFS
4836M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304837M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004838L: logfs@logfs.org
4839W: logfs.org
4840S: Maintained
4841F: fs/logfs/
4842
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004843LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304844M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
4845M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004846M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004847L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004848L: linux-scsi@vger.kernel.org
4849W: http://www.lsilogic.com/support
4850S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004851F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304852F: drivers/scsi/mpt2sas/
4853F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004854
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004856M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857L: linux-scsi@vger.kernel.org
4858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004859F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860
Guenter Roecke5f5c992010-06-25 11:59:54 -07004861LTC4261 HARDWARE MONITOR DRIVER
4862M: Guenter Roeck <linux@roeck-us.net>
4863L: lm-sensors@lm-sensors.org
4864S: Maintained
4865F: Documentation/hwmon/ltc4261
4866F: drivers/hwmon/ltc4261.c
4867
Mike Frysinger81365c32008-10-29 14:01:12 -07004868LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004869M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004870M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004871M: Cyril Hrubis <chrubis@suse.cz>
4872M: Caspar Zhang <caspar@casparzhang.com>
4873M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004874L: ltp-list@lists.sourceforge.net (subscribers-only)
4875W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004876T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004877T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004878S: Maintained
4879
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004880M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004881M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004882L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004883L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4884W: http://www.linux-m32r.org/
4885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004886F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004887
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004889M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890L: linux-m68k@lists.linux-m68k.org
4891W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004892T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004894F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004895F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896
4897M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004898M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004900L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004902F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903
4904M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004905M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906W: http://www.tazenda.demon.co.uk/phil/linux-hp
4907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004908F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004910M88RS2000 MEDIA DRIVER
4911M: Malcolm Priestley <tvboxspy@gmail.com>
4912L: linux-media@vger.kernel.org
4913W: http://linuxtv.org/
4914Q: http://patchwork.linuxtv.org/project/linux-media/list/
4915S: Maintained
4916F: drivers/media/dvb-frontends/m88rs2000*
4917
Alexey Klimov07a092f2012-11-12 02:57:32 -03004918MA901 MASTERKIT USB FM RADIO DRIVER
4919M: Alexey Klimov <klimov.linux@gmail.com>
4920L: linux-media@vger.kernel.org
4921T: git git://linuxtv.org/media_tree.git
4922S: Maintained
4923F: drivers/media/radio/radio-ma901.c
4924
Jiri Benc64a327a2007-05-05 11:47:08 -07004925MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004926M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004927L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004928W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004929T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4930T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004932F: Documentation/networking/mac80211-injection.txt
4933F: include/net/mac80211.h
4934F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004935
Stefano Brivio1036d862007-12-23 04:46:27 +01004936MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004937M: Stefano Brivio <stefano.brivio@polimi.it>
4938M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004939L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004940W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004941T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4942T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004944F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004945
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004946MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004947M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004948L: netdev@vger.kernel.org
4949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004950F: drivers/net/macvlan.c
4951F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004952
Michael Kerriskfaf16682005-07-31 22:34:47 -07004953MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004954M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004955W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004956L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004957S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004958
stephen hemminger44c14c12012-04-02 12:59:47 +00004959MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4960M: Mirko Lindner <mlindner@marvell.com>
4961M: Stephen Hemminger <shemminger@vyatta.com>
4962L: netdev@vger.kernel.org
4963S: Maintained
4964F: drivers/net/ethernet/marvell/sk*
4965
Stefano Brivio74cda162007-11-19 20:27:46 +01004966MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004967M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004968L: libertas-dev@lists.infradead.org
4969S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004970F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004971
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004972MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004973M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004974L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004975S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004976F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004977F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02004979MARVELL MVNETA ETHERNET DRIVER
4980M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4981L: netdev@vger.kernel.org
4982S: Maintained
4983F: drivers/net/ethernet/marvell/mvneta.*
4984
Bing Zhaofcad5842011-07-13 13:11:58 -07004985MARVELL MWIFIEX WIRELESS DRIVER
4986M: Bing Zhao <bzhao@marvell.com>
4987L: linux-wireless@vger.kernel.org
4988S: Maintained
4989F: drivers/net/wireless/mwifiex/
4990
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004991MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004992M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004993L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004994S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004995F: drivers/net/wireless/mwl8k.c
4996
Pierre Ossman2a695672009-03-16 19:52:26 +01004997MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004998M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004999S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07005000F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01005001
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005003L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07005004S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005005F: drivers/video/matrox/matroxfb_*
5006F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007
Guenter Roeckca462082012-06-01 23:28:23 -07005008MAX16065 HARDWARE MONITOR DRIVER
5009M: Guenter Roeck <linux@roeck-us.net>
5010L: lm-sensors@lm-sensors.org
5011S: Maintained
5012F: Documentation/hwmon/max16065
5013F: drivers/hwmon/max16065.c
5014
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005015MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07005016M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005017L: lm-sensors@lm-sensors.org
5018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005019F: Documentation/hwmon/max6650
5020F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005021
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03005022MAXIRADIO FM RADIO RECEIVER DRIVER
5023M: Hans Verkuil <hverkuil@xs4all.nl>
5024L: linux-media@vger.kernel.org
5025T: git git://linuxtv.org/media_tree.git
5026W: http://linuxtv.org
5027S: Maintained
5028F: drivers/media/radio/radio-maxiradio*
5029
Joe Perches127c49a2009-04-08 08:34:04 -07005030MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005031M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07005032P: LinuxTV.org Project
5033L: linux-media@vger.kernel.org
5034W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005035Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005036T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07005037S: Maintained
5038F: Documentation/dvb/
5039F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005040F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005041F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005042F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005043F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005044F: include/uapi/linux/dvb/
5045F: include/uapi/linux/videodev2.h
5046F: include/uapi/linux/media.h
5047F: include/uapi/linux/v4l2-*
5048F: include/uapi/linux/meye.h
5049F: include/uapi/linux/ivtv*
5050F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005051
Hans Verkuil6149a932012-11-23 07:21:19 -03005052MEDIAVISION PRO MOVIE STUDIO DRIVER
5053M: Hans Verkuil <hverkuil@xs4all.nl>
5054L: linux-media@vger.kernel.org
5055T: git git://linuxtv.org/media_tree.git
5056W: http://linuxtv.org
5057S: Odd Fixes
5058F: drivers/media/parport/pms*
5059
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005060MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005061M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005062L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005063W: http://megaraid.lsilogic.com
5064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005065F: Documentation/scsi/megaraid.txt
5066F: drivers/scsi/megaraid.*
5067F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005068
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005069MELLANOX ETHERNET DRIVER (mlx4_en)
5070M: Amir Vadai <amirv@mellanox.com>
5071L: netdev@vger.kernel.org
5072S: Supported
5073W: http://www.mellanox.com
5074Q: http://patchwork.ozlabs.org/project/netdev/list/
5075F: drivers/net/ethernet/mellanox/mlx4/en_*
5076
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005077MEMORY MANAGEMENT
5078L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005079W: http://www.linux-mm.org
5080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005081F: include/linux/mm.h
5082F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005083
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005084MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005085M: Johannes Weiner <hannes@cmpxchg.org>
5086M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005087M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005088M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005089L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005090L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005092F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005093F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005094
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005095MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005096M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005098W: http://www.linux-mtd.infradead.org/
5099Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005100T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005102F: drivers/mtd/
5103F: include/linux/mtd/
5104F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105
Michal Simekc6375b02009-03-27 14:25:52 +01005106MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005107M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005108L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005109W: http://www.monstr.eu/fdt/
5110T: git git://git.monstr.eu/linux-2.6-microblaze.git
5111S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005112F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113
5114MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005115M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005117F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118
5119MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005120M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005122W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005123T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005124Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005125S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005126F: Documentation/mips/
5127F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128
Hans Verkuil08b76202012-11-23 07:15:42 -03005129MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5130M: Hans Verkuil <hverkuil@xs4all.nl>
5131L: linux-media@vger.kernel.org
5132T: git git://linuxtv.org/media_tree.git
5133W: http://linuxtv.org
5134S: Odd Fixes
5135F: drivers/media/radio/radio-miropcm20*
5136
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005138M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005140F: include/linux/module.h
5141F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142
5143MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005145S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005146F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005147F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005148F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149
Pavel Pisac58ff042007-05-16 01:10:41 +02005150MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005151M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005152L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02005153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005154F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02005155
Jiri Slabyb9705b62008-04-30 00:53:48 -07005156MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005157M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005159F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005160F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005161
Alexey Klimov889b2f82012-11-16 17:43:59 -03005162MR800 AVERMEDIA USB FM RADIO DRIVER
5163M: Alexey Klimov <klimov.linux@gmail.com>
5164L: linux-media@vger.kernel.org
5165T: git git://linuxtv.org/media_tree.git
5166S: Maintained
5167F: drivers/media/radio/radio-mr800.c
5168
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005169MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07005170M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05005171L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005173F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005174
Anisse Astier0f1006b2009-12-17 11:28:49 +01005175MSI WMI SUPPORT
5176M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd09448532010-02-11 10:40:13 -05005177L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005178S: Supported
5179F: drivers/platform/x86/msi-wmi.c
5180
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03005181MT9M032 SENSOR DRIVER
5182M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5183L: linux-media@vger.kernel.org
5184T: git git://linuxtv.org/media_tree.git
5185S: Maintained
5186F: drivers/media/i2c/mt9m032.c
5187F: include/media/mt9m032.h
5188
5189MT9P031 SENSOR DRIVER
5190M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5191L: linux-media@vger.kernel.org
5192T: git git://linuxtv.org/media_tree.git
5193S: Maintained
5194F: drivers/media/i2c/mt9p031.c
5195F: include/media/mt9p031.h
5196
5197MT9T001 SENSOR DRIVER
5198M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5199L: linux-media@vger.kernel.org
5200T: git git://linuxtv.org/media_tree.git
5201S: Maintained
5202F: drivers/media/i2c/mt9t001.c
5203F: include/media/mt9t001.h
5204
5205MT9V032 SENSOR DRIVER
5206M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5207L: linux-media@vger.kernel.org
5208T: git git://linuxtv.org/media_tree.git
5209S: Maintained
5210F: drivers/media/i2c/mt9v032.c
5211F: include/media/mt9v032.h
5212
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005213MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005214M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005215T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005216S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005217F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005218
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005219MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005220M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005221L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005222T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005224F: drivers/mmc/
5225F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005226
David Brownell15a05802007-08-08 09:12:54 -07005227MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005228S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005229F: drivers/mmc/host/mmc_spi.c
5230F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005231
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005233M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005235F: Documentation/sound/oss/MultiSound
5236F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005237
Jiri Slabyd7354102006-12-08 02:38:35 -08005238MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005239S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005240F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005241F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005242
Felipe Balbi550a7372008-07-24 12:27:36 +03005243MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005244M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005245L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005246T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005248F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005249
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005250MXL5007T MEDIA DRIVER
5251M: Michael Krufky <mkrufky@linuxtv.org>
5252L: linux-media@vger.kernel.org
5253W: http://linuxtv.org/
5254W: http://github.com/mkrufky
5255Q: http://patchwork.linuxtv.org/project/linux-media/list/
5256T: git git://linuxtv.org/mkrufky/tuners.git
5257S: Maintained
5258F: drivers/media/tuners/mxl5007t.*
5259
Brice Goglin2d3cf582008-05-17 12:45:36 +02005260MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005261M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005262L: netdev@vger.kernel.org
5263W: http://www.myri.com/scs/download-Myri10GE.html
5264S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005265F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005266
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005268S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005269F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270
Daniel Mack23dc05a2011-05-18 11:28:38 +02005271NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5272M: Daniel Mack <zonque@gmail.com>
5273S: Maintained
5274L: alsa-devel@alsa-project.org
5275W: http://www.native-instruments.com
5276F: sound/usb/caiaq/
5277
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005279M: Petr Vandrovec <petr@vandrovec.name>
5280S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005281F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282
5283NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005284M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285L: linux-scsi@vger.kernel.org
5286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005287F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005289NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005290M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005291L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005292W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005293S: Supported
5294F: drivers/infiniband/hw/nes/
5295
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005296NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05005297M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07005298L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005300F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005301
Jon Masonb2f5a052010-07-15 08:47:27 +00005302NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005303M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005304L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005305S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005306F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005307F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005308F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005309
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311P: Harald Welte
5312P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005313M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005314M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005315L: netfilter-devel@vger.kernel.org
5316L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005317L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318W: http://www.netfilter.org/
5319W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005320T: git git://1984.lsi.us.es/nf
5321T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005323F: include/linux/netfilter*
5324F: include/linux/netfilter/
5325F: include/net/netfilter/
5326F: net/*/netfilter.c
5327F: net/*/netfilter/
5328F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329
Paul Moore4cc67732006-09-25 15:57:13 -07005330NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005331M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005332W: http://netlabel.sf.net
5333L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005334S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005335F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005336F: include/net/netlabel.h
5337F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005338
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005340M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005342W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005344F: include/linux/netrom.h
5345F: include/net/netrom.h
5346F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005348NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005349M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005351F: Documentation/blockdev/nbd.txt
5352F: drivers/block/nbd.c
5353F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354
Neil Horman6e436502009-10-05 03:56:55 +00005355NETWORK DROP MONITOR
5356M: Neil Horman <nhorman@tuxdriver.com>
5357L: netdev@vger.kernel.org
5358S: Maintained
5359W: https://fedorahosted.org/dropwatch/
5360F: net/core/drop_monitor.c
5361
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005363M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005364L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005365W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005366Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005367T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5368T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005370F: net/
5371F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005372F: include/linux/in.h
5373F: include/linux/net.h
5374F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375
5376NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005377M: "David S. Miller" <davem@davemloft.net>
5378M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005379M: James Morris <jmorris@namei.org>
5380M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5381M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005382L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005383T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005385F: net/ipv4/
5386F: net/ipv6/
5387F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005388F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389
David S. Miller73b76562012-10-16 14:08:40 -04005390NETWORKING [IPSEC]
5391M: Steffen Klassert <steffen.klassert@secunet.com>
5392M: Herbert Xu <herbert@gondor.apana.org.au>
5393M: "David S. Miller" <davem@davemloft.net>
5394L: netdev@vger.kernel.org
5395T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5396S: Maintained
5397F: net/xfrm/
5398F: net/key/
5399F: net/ipv4/xfrm*
5400F: net/ipv6/xfrm*
5401F: include/uapi/linux/xfrm.h
5402F: include/net/xfrm.h
5403
James Morris10e2ff12007-08-25 14:41:28 -07005404NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005405M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005406L: netdev@vger.kernel.org
5407S: Maintained
5408
John W. Linville29f8f632006-01-18 14:52:48 -08005409NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005410M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005411L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005412Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005413T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005414S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005415F: net/mac80211/
5416F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005417F: net/wireless/
5418F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005419F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005420F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005421F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005422
Joe Perches788873a2009-04-16 09:38:45 +00005423NETWORKING DRIVERS
5424L: netdev@vger.kernel.org
5425W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005426Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005427T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5428T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005429S: Odd Fixes
5430F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005431F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005432F: include/linux/netdevice.h
5433F: include/linux/arcdevice.h
5434F: include/linux/etherdevice.h
5435F: include/linux/fcdevice.h
5436F: include/linux/fddidevice.h
5437F: include/linux/hippidevice.h
5438F: include/linux/inetdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005439
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005440NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005441M: Sony Chacko <sony.chacko@qlogic.com>
5442M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005443L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005444W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005445S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005446F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005447
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005448NFC SUBSYSTEM
5449M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5450M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5451M: Samuel Ortiz <sameo@linux.intel.com>
5452L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005453L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005454S: Maintained
5455F: net/nfc/
5456F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005457F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005458F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005459F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005461NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005462M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005463L: linux-nfs@vger.kernel.org
5464W: http://client.linux-nfs.org
5465T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005467F: fs/lockd/
5468F: fs/nfs/
5469F: fs/nfs_common/
5470F: net/sunrpc/
5471F: include/linux/lockd/
5472F: include/linux/nfs*
5473F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474
5475NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005476M: Jan-Pascal van Best <janpascal@vanbest.org>
5477M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005478L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005479S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005480F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005482NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005483M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005484L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005485W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005486T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005487S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005488F: Documentation/filesystems/nilfs2.txt
5489F: fs/nilfs2/
5490F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005491
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005493M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005496F: Documentation/scsi/NinjaSCSI.txt
5497F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005498
5499NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005500M: GOTO Masanori <gotom@debian.or.jp>
5501M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005502W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005504F: Documentation/scsi/NinjaSCSI.txt
5505F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506
Linus Torvalds1da177e2005-04-16 15:20:36 -07005507NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005508M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005509L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005510W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005511T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005512S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005513F: Documentation/filesystems/ntfs.txt
5514F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005516NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005517M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005518L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005520F: drivers/video/riva/
5521F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005522
Tony Lindgrenf5525782009-05-28 13:23:53 -07005523OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005524M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005525L: linux-omap@vger.kernel.org
5526W: http://www.muru.com/linux/omap/
5527W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005528Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005529T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005530S: Maintained
Felipe Contreras4e04d5a32009-09-21 17:04:25 -07005531F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005532F: drivers/i2c/busses/i2c-omap.c
5533F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005534
5535OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005536M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005537L: linux-omap@vger.kernel.org
5538S: Maintained
5539F: arch/arm/*omap*/*clock*
5540
5541OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005542M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005543L: linux-omap@vger.kernel.org
5544S: Maintained
5545F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005546F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005547
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005548OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5549M: Rajendra Nayak <rnayak@ti.com>
5550M: Paul Walmsley <paul@pwsan.com>
5551L: linux-omap@vger.kernel.org
5552S: Maintained
5553F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5554F: arch/arm/mach-omap2/powerdomain44xx.c
5555F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5556F: arch/arm/mach-omap2/clockdomain44xx.c
5557
Tony Lindgrenf5525782009-05-28 13:23:53 -07005558OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005559M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005560M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005561L: alsa-devel@alsa-project.org (subscribers-only)
5562L: linux-omap@vger.kernel.org
5563S: Maintained
5564F: sound/soc/omap/
5565
5566OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005567M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005568L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005569L: linux-omap@vger.kernel.org
5570S: Maintained
5571F: drivers/video/omap/
5572
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005573OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005574M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005575L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005576L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005577S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005578F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005579F: Documentation/arm/OMAP/DSS
5580
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005581OMAP HARDWARE SPINLOCK SUPPORT
5582M: Ohad Ben-Cohen <ohad@wizery.com>
5583L: linux-omap@vger.kernel.org
5584S: Maintained
5585F: drivers/hwspinlock/omap_hwspinlock.c
5586F: arch/arm/mach-omap2/hwspinlock.c
5587
Tony Lindgrenf5525782009-05-28 13:23:53 -07005588OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005589M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005590L: linux-omap@vger.kernel.org
5591S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005592F: drivers/mmc/host/omap.c
5593
5594OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305595M: Venkatraman S <svenkatr@ti.com>
5596L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005597L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305598S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005599F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005600
5601OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005602M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005603S: Maintained
5604F: drivers/char/hw_random/omap-rng.c
5605
Paul Walmsleyf400c822010-12-06 19:08:54 -07005606OMAP HWMOD SUPPORT
5607M: Benoît Cousson <b-cousson@ti.com>
5608M: Paul Walmsley <paul@pwsan.com>
5609L: linux-omap@vger.kernel.org
5610S: Maintained
5611F: arch/arm/mach-omap2/omap_hwmod.c
5612F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5613
5614OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5615M: Benoît Cousson <b-cousson@ti.com>
5616L: linux-omap@vger.kernel.org
5617S: Maintained
5618F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5619
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005620OMAP IMAGE SIGNAL PROCESSOR (ISP)
5621M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5622L: linux-media@vger.kernel.org
5623S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005624F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005625
Tony Lindgrenf5525782009-05-28 13:23:53 -07005626OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005627M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005628L: linux-usb@vger.kernel.org
5629L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005630T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005631S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005632F: drivers/usb/*/*omap*
5633F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005634
Kevin Hilman6d994712012-07-16 10:05:07 -07005635OMAP GPIO DRIVER
5636M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5637M: Kevin Hilman <khilman@ti.com>
5638L: linux-omap@vger.kernel.org
5639S: Maintained
5640F: drivers/gpio/gpio-omap.c
5641
Bob Copeland0ad122d2008-07-25 19:45:18 -07005642OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005643M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005644L: linux-karma-devel@lists.sourceforge.net
5645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005646F: Documentation/filesystems/omfs.txt
5647F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005648
Harald Weltec1986ee2005-11-13 16:06:29 -08005649OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005650M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005651S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005652F: drivers/char/pcmcia/cm4000_cs.c
5653F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005654
Harald Welte77c44ab2005-11-13 16:06:26 -08005655OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005656M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005658F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005659
Jonathan Corbet77d51402007-03-22 19:44:17 -03005660OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005661M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005662L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005663T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005664S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005665F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005666
Thomas Gleixner431bca72007-05-02 09:31:35 +02005667ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005668M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005669L: linux-mtd@lists.infradead.org
5670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005671F: drivers/mtd/onenand/
5672F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005673
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005675M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676L: osst-users@lists.sourceforge.net
5677L: linux-scsi@vger.kernel.org
5678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005679F: drivers/scsi/osst*
5680F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005682OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005683M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005684L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005686F: Documentation/i2c/busses/i2c-ocores
5687F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005688
Grant Likely860c44c2009-10-26 16:49:49 -07005689OPEN FIRMWARE AND FLATTENED DEVICE TREE
5690M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005691M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005692L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005693W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005694T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005695S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005696F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005697F: drivers/of
5698F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005699F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005700K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005701K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005702
Jonas Bonn19f9d392011-06-04 22:00:38 +03005703OPENRISC ARCHITECTURE
5704M: Jonas Bonn <jonas@southpole.se>
5705W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005706L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005707S: Maintained
5708T: git git://openrisc.net/~jonas/linux
5709F: arch/openrisc
5710
Jesse Grossccb13522011-10-25 19:26:31 -07005711OPENVSWITCH
5712M: Jesse Gross <jesse@nicira.com>
5713L: dev@openvswitch.org
5714W: http://openvswitch.org
5715T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5716S: Maintained
5717F: net/openvswitch/
5718
Clemens Ladischaf399172011-01-10 16:32:54 +01005719OPL4 DRIVER
5720M: Clemens Ladisch <clemens@ladisch.de>
5721L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5722T: git git://git.alsa-project.org/alsa-kernel.git
5723S: Maintained
5724F: sound/drivers/opl4/
5725
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005727M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005728L: oprofile-list@lists.sf.net
5729S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005730F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005731F: arch/*/oprofile/
5732F: drivers/oprofile/
5733F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005734
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005735ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005736M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005737M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005738L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5739W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005740T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005741S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005742F: Documentation/filesystems/ocfs2.txt
5743F: Documentation/filesystems/dlmfs.txt
5744F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005745
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005747L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005748W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005749W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005750S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005751F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005752
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005753OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005754M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005755M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005756L: osd-dev@open-osd.org
5757W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005758T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005759S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005760F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005761F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005762F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005763
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005764P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005765M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005766L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005767W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005769F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005770
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005771PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005772M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005773L: netdev@vger.kernel.org
5774S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005775F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005776
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005777PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005778M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005779L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005781F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005782
Steffen Klassert48fc2672010-08-13 10:10:46 -04005783PADATA PARALLEL EXECUTION MECHANISM
5784M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005785L: linux-crypto@vger.kernel.org
5786S: Maintained
5787F: kernel/padata.c
5788F: include/linux/padata.h
5789F: Documentation/padata.txt
5790
Harald Welte709ee532008-09-23 17:46:57 +02005791PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005792M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05005793L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005795F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005796
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005797PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005798M: David Howells <dhowells@redhat.com>
5799M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005800L: linux-am33-list@redhat.com (moderated for non-subscribers)
5801W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005803F: Documentation/mn10300/
5804F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005805
Linus Torvalds1da177e2005-04-16 15:20:36 -07005806PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005807L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005808S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005809F: drivers/parport/
5810F: include/linux/parport*.h
5811F: drivers/char/ppdev.c
5812F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005814PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005815M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005816M: Chris Wright <chrisw@sous-sol.org>
5817M: Alok Kataria <akataria@vmware.com>
5818M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005819L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005820S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005821F: Documentation/ia64/paravirt_ops.txt
5822F: arch/*/kernel/paravirt*
5823F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005824
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005826M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005827L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005828W: http://www.torque.net/linux-pp.html
5829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005830F: Documentation/blockdev/paride.txt
5831F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005832
5833PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005834M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005835M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005836L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005837W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005838Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005839T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005841F: arch/parisc/
5842F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843
Jim Cromie1662d322006-10-06 00:43:59 -07005844PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005845M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005846L: lm-sensors@lm-sensors.org
5847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005848F: Documentation/hwmon/pc87360
5849F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005850
5851PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005852M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005853S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005854F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005855
Jean Delvare1ad107f2010-08-14 21:09:00 +02005856PC87427 HARDWARE MONITORING DRIVER
5857M: Jean Delvare <khali@linux-fr.org>
5858L: lm-sensors@lm-sensors.org
5859S: Maintained
5860F: Documentation/hwmon/pc87427
5861F: drivers/hwmon/pc87427.c
5862
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005863PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005864M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005865S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005866F: drivers/leds/leds-pca9532.c
5867F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005868
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005869PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005870M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005871L: linux-i2c@vger.kernel.org
5872S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005873F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005874
Wolfram Sanga1867d32009-09-18 22:45:51 +02005875PCA9564/PCA9665 I2C BUS DRIVER
5876M: Wolfram Sang <w.sang@pengutronix.de>
5877L: linux-i2c@vger.kernel.org
5878S: Maintained
5879F: drivers/i2c/algos/i2c-algo-pca.c
5880F: drivers/i2c/busses/i2c-pca-*
5881F: include/linux/i2c-algo-pca.h
5882F: include/linux/i2c-pca-platform.h
5883
Khalid Aziz3971dae2012-04-12 12:49:13 -07005884PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005885M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005886S: Maintained
5887F: drivers/firmware/pcdp.*
5888
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005889PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005890M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005891L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005892S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005893F: Documentation/PCI/pci-error-recovery.txt
5894F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005895
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005897M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005898L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005899Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005900T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005902F: Documentation/PCI/
5903F: drivers/pci/
5904F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005907P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005908L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005909W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005910T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005912F: Documentation/pcmcia/
5913F: drivers/pcmcia/
5914F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005915
5916PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005917M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005918L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005919S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005920F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005921
Steffen Klassert48fc2672010-08-13 10:10:46 -04005922PCRYPT PARALLEL CRYPTO ENGINE
5923M: Steffen Klassert <steffen.klassert@secunet.com>
5924L: linux-crypto@vger.kernel.org
5925S: Maintained
5926F: crypto/pcrypt.c
5927F: include/crypto/pcrypt.h
5928
Tejun Heoe72df0b2010-12-10 17:02:49 +01005929PER-CPU MEMORY ALLOCATOR
5930M: Tejun Heo <tj@kernel.org>
5931M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005932T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5933S: Maintained
5934F: include/linux/percpu*.h
5935F: mm/percpu*.c
5936F: arch/*/include/asm/percpu.h
5937
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005938PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005939M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005940S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005941F: include/linux/delayacct.h
5942F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005943
Ingo Molnar57c0c152009-09-21 12:20:38 +02005944PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005945M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5946M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005947M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005948M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005949T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005950S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005951F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005952F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005953F: arch/*/kernel/perf_event*.c
5954F: arch/*/kernel/*/perf_event*.c
5955F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005956F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005957F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005958F: arch/*/kernel/perf_callchain.c
5959F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005960
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005961PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005962M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005963L: linux-abi-devel@lists.sourceforge.net
5964S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005965F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005966
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005967PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005968M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005969S: Supported
5970F: Documentation/networking/phonet.txt
5971F: include/linux/phonet.h
5972F: include/net/phonet/
5973F: net/phonet/
5974
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005976M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005977L: linux-mtd@lists.infradead.org
5978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005979F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005980
Bruno Prémontefdbb102012-07-30 21:39:03 +02005981PICOLCD HID DRIVER
5982M: Bruno Prémont <bonbons@linux-vserver.org>
5983L: linux-input@vger.kernel.org
5984S: Maintained
5985F: drivers/hid/hid-picolcd*
5986
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005987PICOXCELL SUPPORT
5988M: Jamie Iles <jamie@jamieiles.com>
5989L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5990T: git git://github.com/jamieiles/linux-2.6-ji.git
5991S: Supported
5992F: arch/arm/mach-picoxcell
5993F: drivers/*/picoxcell*
5994F: drivers/*/*/picoxcell*
5995
Linus Walleij2744e8a2011-05-02 20:50:54 +02005996PIN CONTROL SUBSYSTEM
5997M: Linus Walleij <linus.walleij@linaro.org>
5998S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005999F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006000F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02006001
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02006002PIN CONTROLLER - ATMEL AT91
6003M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6004L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6005S: Maintained
6006F: drivers/pinctrl/pinctrl-at91.c
6007
Viresh Kumardeda8282012-03-28 22:27:07 +05306008PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006009M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05306010L: spear-devel@list.st.com
6011L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6012W: http://www.st.com/spear
6013S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006014F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05306015
Peter Osterlund249a6772005-09-27 21:45:30 -07006016PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02006017M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07006018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006019F: drivers/block/pktcdvd.c
6020F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07006021
GuanXuetaob31d8272011-01-16 00:35:49 +08006022PKUNITY SOC DRIVERS
6023M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6024W: http://mprc.pku.edu.cn/~guanxuetao/linux
6025S: Maintained
6026T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6027F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08006028F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08006029F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08006030F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08006031
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006032PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07006033M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006034L: lm-sensors@lm-sensors.org
6035W: http://www.lm-sensors.org/
6036W: http://www.roeck-us.net/linux/drivers/
6037T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6038S: Maintained
6039F: Documentation/hwmon/pmbus
6040F: drivers/hwmon/pmbus/
6041F: include/linux/i2c/pmbus.h
6042
Anil Ravindranath89a36812009-08-25 17:35:18 -07006043PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07006044M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07006045L: linux-scsi@vger.kernel.org
6046W: http://www.pmc-sierra.com/
6047S: Supported
6048F: drivers/scsi/pmcraid.*
6049
jack wangdbf9bfe2009-10-14 16:19:21 +08006050PMC SIERRA PM8001 DRIVER
6051M: jack_wang@usish.com
6052M: lindar_liu@usish.com
6053L: linux-scsi@vger.kernel.org
6054S: Supported
6055F: drivers/scsi/pm8001/
6056
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07006058M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006059T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006060S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006061F: fs/timerfd.c
6062F: include/linux/timer*
6063F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064
Anton Vorontsov3be86142007-07-15 04:43:36 +04006065POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006066M: Anton Vorontsov <cbou@mail.ru>
6067M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07006068T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04006069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006070F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07006071F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04006072
Linus Torvalds1da177e2005-04-16 15:20:36 -07006073PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006074M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07006075M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006077F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006078
Vitaly Wool999445d2007-01-04 13:07:03 +01006079PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006080M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006081L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01006082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006083F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01006084
Linus Torvalds1da177e2005-04-16 15:20:36 -07006085PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07006086M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006087L: linux-ppp@vger.kernel.org
6088S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006089F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090
6091PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006092M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006094F: net/atm/pppoatm.c
6095F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006096
6097PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006098M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006100F: drivers/net/ppp/pppoe.c
6101F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006102
James Chapmana6d23702007-06-27 15:53:17 -07006103PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006104M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006105S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006106F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006107F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006108
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006109PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006110M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006111W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6112L: linuxpps@ml.enneenne.com (subscribers-only)
6113S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006114F: Documentation/pps/
6115F: drivers/pps/
6116F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006117
Harry Wei71a6d0a2011-05-11 15:13:33 -07006118PPTP DRIVER
6119M: Dmitry Kozlov <xeb@mail.ru>
6120L: netdev@vger.kernel.org
6121S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006122F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006123W: http://sourceforge.net/projects/accel-pptp
6124
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006126M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006127L: kpreempt-tech@lists.sourceforge.net
6128W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6129S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006130F: Documentation/preempt-locking.txt
6131F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006132
6133PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006134M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006135L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006136W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006137S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006138F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006140PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006141M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006142L: linux-ide@vger.kernel.org
6143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006144F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006145
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006146PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006147M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006148L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006149L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006150S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006151F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006152
Geoff Levandf58a9d12006-11-23 00:46:51 +01006153PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006154M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006155L: linuxppc-dev@lists.ozlabs.org
6156L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006157S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006158F: arch/powerpc/boot/ps3*
6159F: arch/powerpc/include/asm/lv1call.h
6160F: arch/powerpc/include/asm/ps3*.h
6161F: arch/powerpc/platforms/ps3/
6162F: drivers/*/ps3*
6163F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006164F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006165F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006166F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006167
Jim Pariscffb4add2009-01-06 11:32:10 +00006168PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006169M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006170L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006171S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006172F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006173
Anton Vorontsov8defe592012-08-03 18:07:20 -07006174PSTORE FILESYSTEM
6175M: Anton Vorontsov <cbouatmailru@gmail.com>
6176M: Colin Cross <ccross@android.com>
6177M: Kees Cook <keescook@chromium.org>
6178M: Tony Luck <tony.luck@intel.com>
6179S: Maintained
6180T: git git://git.infradead.org/users/cbou/linux-pstore.git
6181F: fs/pstore/
6182F: include/linux/pstore*
6183F: drivers/firmware/efivars.c
6184F: drivers/acpi/apei/erst.c
6185
Richard Cochran7fbc4152012-03-10 01:55:53 +00006186PTP HARDWARE CLOCK SUPPORT
6187M: Richard Cochran <richardcochran@gmail.com>
6188S: Maintained
6189W: http://linuxptp.sourceforge.net/
6190F: Documentation/ABI/testing/sysfs-ptp
6191F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006192F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006193F: drivers/net/phy/dp83640*
6194F: drivers/ptp/*
6195F: include/linux/ptp_cl*
6196
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006197PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006198M: Roland McGrath <roland@redhat.com>
6199M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006200S: Maintained
6201F: include/asm-generic/syscall.h
6202F: include/linux/ptrace.h
6203F: include/linux/regset.h
6204F: include/linux/tracehook.h
6205F: kernel/ptrace.c
6206
Michael Krufky83202042006-07-03 00:24:18 -07006207PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006208M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006209L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006210L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006211W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006212T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006214F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006215F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006216
Hans de Goede39532e62012-11-04 17:05:59 -03006217PWC WEBCAM DRIVER
6218M: Hans de Goede <hdegoede@redhat.com>
6219L: linux-media@vger.kernel.org
6220T: git git://linuxtv.org/media_tree.git
6221S: Maintained
6222F: drivers/media/usb/pwc/*
6223
Thierry Reding200efed2012-03-27 13:16:18 +02006224PWM SUBSYSTEM
6225M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006226L: linux-kernel@vger.kernel.org
6227S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006228W: http://gitorious.org/linux-pwm
6229T: git git://gitorious.org/linux-pwm/linux-pwm.git
6230F: Documentation/pwm.txt
6231F: Documentation/devicetree/bindings/pwm/
6232F: include/linux/pwm.h
6233F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006234F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006235F: drivers/video/backlight/pwm_bl.c
6236F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006237
Eric Miao30ec2612008-06-12 15:21:41 -07006238PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006239M: Eric Miao <eric.y.miao@gmail.com>
6240M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006241M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006242L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006243T: git git://github.com/hzhuang1/linux.git
6244T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006246F: arch/arm/mach-pxa/
6247F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006248F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006249F: drivers/usb/gadget/pxa2*
6250F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006251F: sound/arm/pxa*
6252F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006254MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006255M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006256M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006257L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006258T: git git://github.com/hzhuang1/linux.git
6259T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006260S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006261F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006262
Pierre Ossman272f1332007-05-14 21:25:26 +02006263PXA MMCI DRIVER
6264S: Orphan
6265
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006266PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006267M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006268L: rtc-linux@googlegroups.com
6269S: Maintained
6270
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006271QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006272M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006273L: linux-rdma@vger.kernel.org
6274S: Supported
6275F: drivers/infiniband/hw/qib/
6276
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006277QLOGIC QLA1280 SCSI DRIVER
6278M: Michael Reed <mdr@sgi.com>
6279L: linux-scsi@vger.kernel.org
6280S: Maintained
6281F: drivers/scsi/qla1280.[ch]
6282
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006284M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006285M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286L: linux-scsi@vger.kernel.org
6287S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006288F: Documentation/scsi/LICENSE.qla2xxx
6289F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290
Ravi Anand883c98f2010-04-28 11:45:49 +05306291QLOGIC QLA4XXX iSCSI DRIVER
6292M: Ravi Anand <ravi.anand@qlogic.com>
6293M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6294M: iscsi-driver@qlogic.com
6295L: linux-scsi@vger.kernel.org
6296S: Supported
6297F: drivers/scsi/qla4xxx/
6298
Ron Mercer5a4faa872006-07-25 00:40:21 -07006299QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006300M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006301M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006302M: linux-driver@qlogic.com
6303L: netdev@vger.kernel.org
6304S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006305F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006306F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006307
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006308QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006309M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006310M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006311M: linux-driver@qlogic.com
6312L: netdev@vger.kernel.org
6313S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006314F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006315
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006316QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006317M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006318M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006319M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006320L: netdev@vger.kernel.org
6321S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006322F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006323
Linus Torvalds1da177e2005-04-16 15:20:36 -07006324QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006325M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006326W: http://www.alarsen.net/linux/qnx4fs/
6327S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006328F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07006329F: include/linux/qnx4_fs.h
6330F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006331
Antti Palosaari91952bc2012-10-01 12:28:46 -03006332QT1010 MEDIA DRIVER
6333M: Antti Palosaari <crope@iki.fi>
6334L: linux-media@vger.kernel.org
6335W: http://linuxtv.org/
6336W: http://palosaari.fi/linux/
6337Q: http://patchwork.linuxtv.org/project/linux-media/list/
6338T: git git://linuxtv.org/anttip/media_tree.git
6339S: Maintained
6340F: drivers/media/tuners/qt1010*
6341
Richard Kuo4f4567c2011-10-31 18:56:38 -05006342QUALCOMM HEXAGON ARCHITECTURE
6343M: Richard Kuo <rkuo@codeaurora.org>
6344L: linux-hexagon@vger.kernel.org
6345S: Supported
6346F: arch/hexagon/
6347
Hans Verkuil35e35402012-11-23 07:02:29 -03006348QUICKCAM PARALLEL PORT WEBCAMS
6349M: Hans Verkuil <hverkuil@xs4all.nl>
6350L: linux-media@vger.kernel.org
6351T: git git://linuxtv.org/media_tree.git
6352W: http://linuxtv.org
6353S: Odd Fixes
6354F: drivers/media/parport/*-qcam*
6355
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006356RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006357M: Yehuda Sadeh <yehuda@inktank.com>
6358M: Sage Weil <sage@inktank.com>
6359M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006360M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006361W: http://ceph.com/
6362T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006363S: Supported
6364F: drivers/block/rbd.c
6365F: drivers/block/rbd_types.h
6366
Linus Torvalds1da177e2005-04-16 15:20:36 -07006367RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006368M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006369L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006371F: drivers/video/aty/radeon*
6372F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006373
Hans de Goedec6c9b342012-11-04 17:03:58 -03006374RADIOSHARK RADIO DRIVER
6375M: Hans de Goede <hdegoede@redhat.com>
6376L: linux-media@vger.kernel.org
6377T: git git://linuxtv.org/media_tree.git
6378S: Maintained
6379F: drivers/media/radio/radio-shark.c
6380
6381RADIOSHARK2 RADIO DRIVER
6382M: Hans de Goede <hdegoede@redhat.com>
6383L: linux-media@vger.kernel.org
6384T: git git://linuxtv.org/media_tree.git
6385S: Maintained
6386F: drivers/media/radio/radio-shark2.c
6387F: drivers/media/radio/radio-tea5777.c
6388
Linus Torvalds1da177e2005-04-16 15:20:36 -07006389RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006390M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006391L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006393F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006394
Randy Dunlape7839f22008-10-12 16:11:45 -07006395RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006396P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006397M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006398M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006399M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006400L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006401L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006402W: http://rt2x00.serialmonkey.com/
6403S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006404T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006405F: drivers/net/wireless/rt2x00/
6406
Nick Piggin9db55792008-02-08 04:19:49 -08006407RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006408M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006410F: Documentation/blockdev/ramdisk.txt
6411F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006412
Matt Mackall9e95ce22005-04-16 15:25:56 -07006413RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006414M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006416F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006417
Matt Porter394b7012005-11-07 01:00:15 -08006418RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006419M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006420M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006422F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006423
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006424RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006425L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006426S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006427F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006428
6429RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006430M: Josh Triplett <josh@freedesktop.org>
6431M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006432S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006433T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006434F: Documentation/RCU/torture.txt
6435F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006436
Florian Fainellic1f766b2008-02-06 22:39:44 +01006437RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006438M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006439S: Maintained
6440
Florian Fainellidb17f3952007-12-19 11:30:30 +01006441RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006442M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f3952007-12-19 11:30:30 +01006443L: netdev@vger.kernel.org
6444S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006445F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f3952007-12-19 11:30:30 +01006446
Andy Grovera09ed662009-02-24 15:30:41 +00006447RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006448M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006449L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006450S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006451F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006452
Josh Triplett595182b2006-10-04 02:17:21 -07006453READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006454M: Dipankar Sarma <dipankar@in.ibm.com>
6455M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006456W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006457S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006458T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006459F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006460X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006461F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006462F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006463X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006464
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006465REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006466M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo764654932006-12-10 02:19:06 -08006467L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006468Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006470F: Documentation/rtc.txt
6471F: drivers/rtc/
6472F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006473
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006475L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006477F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006478
Mark Brownb83a3132011-05-11 19:59:58 +02006479REGISTER MAP ABSTRACTION
6480M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6481T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6482S: Supported
6483F: drivers/base/regmap/
6484F: include/linux/regmap.h
6485
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006486REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6487M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006488T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006489S: Maintained
6490F: drivers/remoteproc/
6491F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006492F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006493
Ivo van Doorne08976452008-04-12 19:23:55 +02006494RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006495M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006496L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006497W: http://wireless.kernel.org/
6498T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6499T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006500S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006501F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006502F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006503
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006504RICOH SMARTMEDIA/XD DRIVER
6505M: Maxim Levitsky <maximlevitsky@gmail.com>
6506S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006507F: drivers/mtd/nand/r852.c
6508F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006509
Maxim Levitsky92634122011-03-25 01:56:59 -07006510RICOH R5C592 MEMORYSTICK DRIVER
6511M: Maxim Levitsky <maximlevitsky@gmail.com>
6512S: Maintained
6513F: drivers/memstick/host/r592.*
6514
Linus Torvalds1da177e2005-04-16 15:20:36 -07006515ROCKETPORT DRIVER
6516P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006517W: http://www.comtrol.com
6518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006519F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006520F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521
6522ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006523M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006524L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006525W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006527F: include/linux/rose.h
6528F: include/net/rose.h
6529F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006530
Antti Palosaari91952bc2012-10-01 12:28:46 -03006531RTL2830 MEDIA DRIVER
6532M: Antti Palosaari <crope@iki.fi>
6533L: linux-media@vger.kernel.org
6534W: http://linuxtv.org/
6535W: http://palosaari.fi/linux/
6536Q: http://patchwork.linuxtv.org/project/linux-media/list/
6537T: git git://linuxtv.org/anttip/media_tree.git
6538S: Maintained
6539F: drivers/media/dvb-frontends/rtl2830*
6540
Larry Finger59840482008-11-12 17:13:09 -06006541RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006542M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006543L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006544W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006545T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006546S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006547F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006548
Larry Finger59840482008-11-12 17:13:09 -06006549RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006550M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006551M: Hin-Tak Leung <htl10@users.sourceforge.net>
6552M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006553L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006554W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006555T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006556S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006557F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006558
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006559RTL8192CE WIRELESS DRIVER
6560M: Larry Finger <Larry.Finger@lwfinger.net>
6561M: Chaoming Li <chaoming_li@realsil.com.cn>
6562L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006563W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006564T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6565S: Maintained
6566F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006567F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006568
6569S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006570M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006571L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006573F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006574
Linus Torvalds1da177e2005-04-16 15:20:36 -07006575S390
Joe Perches8b58be82009-07-29 15:04:30 -07006576M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6577M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006579L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006580W: http://www.ibm.com/developerworks/linux/linux390/
6581S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006582F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006583F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006584F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006585F: Documentation/s390/
6586F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006587
6588S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006589M: Ursula Braun <ursula.braun@de.ibm.com>
6590M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006591M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006592L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006593W: http://www.ibm.com/developerworks/linux/linux390/
6594S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006595F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006596
Felix Beckfeed9b62009-03-26 15:24:23 +01006597S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006598M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006599M: linux390@de.ibm.com
6600L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006601W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006602S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006603F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006604
Heiko Carstens5238da42006-02-11 17:56:01 -08006605S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006606M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006607M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006608L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006609W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006611F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006612
Ursula Braundd96df22007-09-19 13:09:02 +02006613S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006614M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006615M: linux390@de.ibm.com
6616L: linux-s390@vger.kernel.org
6617W: http://www.ibm.com/developerworks/linux/linux390/
6618S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006619F: drivers/s390/net/*iucv*
6620F: include/net/iucv/
6621F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006622
Ben Dooks4dde7f72008-06-30 22:40:38 +01006623S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006624M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006625L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006626S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006627F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006628
Hans Verkuil1f15a222012-11-23 07:45:29 -03006629SAA6588 RDS RECEIVER DRIVER
6630M: Hans Verkuil <hverkuil@xs4all.nl>
6631L: linux-media@vger.kernel.org
6632T: git git://linuxtv.org/media_tree.git
6633W: http://linuxtv.org
6634S: Odd Fixes
6635F: drivers/media/i2c/saa6588*
6636
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006637SAA7134 VIDEO4LINUX DRIVER
6638M: Mauro Carvalho Chehab <mchehab@redhat.com>
6639L: linux-media@vger.kernel.org
6640W: http://linuxtv.org
6641T: git git://linuxtv.org/media_tree.git
6642S: Odd fixes
6643F: Documentation/video4linux/saa7134/
6644F: drivers/media/pci/saa7134/
6645
Linus Torvalds1da177e2005-04-16 15:20:36 -07006646SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03006647M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006648L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006649T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006650S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006651F: drivers/media/common/saa7146/
6652F: drivers/media/pci/saa7146/
6653F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006654
Corentin Chary92304a42011-12-05 12:38:35 -05006655SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006656M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006657L: platform-driver-x86@vger.kernel.org
6658S: Maintained
6659F: drivers/platform/x86/samsung-laptop.c
6660
Mark Brown4a109cc2010-09-24 10:50:46 +01006661SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006662M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006663L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6664S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006665F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006666
Jingoo Han0d89a282011-12-19 11:09:35 +09006667SAMSUNG FRAMEBUFFER DRIVER
6668M: Jingoo Han <jg1.han@samsung.com>
6669L: linux-fbdev@vger.kernel.org
6670S: Maintained
6671F: drivers/video/s3c-fb.c
6672
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006673SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6674M: Sangbeom Kim <sbkim73@samsung.com>
6675L: linux-kernel@vger.kernel.org
6676S: Supported
6677F: drivers/mfd/sec*.c
6678F: drivers/regulator/s2m*.c
6679F: drivers/regulator/s5m*.c
6680F: drivers/rtc/rtc-sec.c
6681F: include/linux/mfd/samsung/
6682
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006683SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6684M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6685L: linux-media@vger.kernel.org
6686L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6687S: Maintained
6688F: drivers/media/platform/s3c-camif/
6689F: include/media/s3c_camif.h
6690
Alan Coxca749e22011-03-18 13:56:14 +00006691SERIAL DRIVERS
6692M: Alan Cox <alan@linux.intel.com>
6693L: linux-serial@vger.kernel.org
6694S: Maintained
6695F: drivers/tty/serial
6696
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306697SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006698M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306699S: Maintained
6700F: include/linux/dw_dmac.h
6701F: drivers/dma/dw_dmac_regs.h
6702F: drivers/dma/dw_dmac.c
6703
Thomas Gleixner88606e82010-12-14 21:37:13 +01006704TIMEKEEPING, NTP
6705M: John Stultz <johnstul@us.ibm.com>
6706M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006707T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006708S: Supported
6709F: include/linux/clocksource.h
6710F: include/linux/time.h
6711F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006712F: kernel/time/clocksource.c
6713F: kernel/time/time*.c
6714F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006715F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006716
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006717TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006718M: Huang Shijie <shijie8@gmail.com>
6719M: Kang Yong <kangyong@telegent.com>
6720M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006721S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006722F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006723
Linus Torvalds1da177e2005-04-16 15:20:36 -07006724SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006725M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006727F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006728
6729SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006730M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006731M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006732T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006733S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006734F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006735F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006736
Chen Liqin6bcf6732009-06-13 15:24:33 +08006737SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006738M: Chen Liqin <liqin.chen@sunplusct.com>
6739M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006740W: http://www.sunplusct.com
6741S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006742F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006743
Linus Torvalds1da177e2005-04-16 15:20:36 -07006744SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006745M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006746L: linux-scsi@vger.kernel.org
6747W: http://www.kernel.dk
6748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006749F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006750
Roland Dreierfb50a832010-10-07 09:54:53 -07006751SCSI RDMA PROTOCOL (SRP) INITIATOR
6752M: David Dillow <dillowda@ornl.gov>
6753L: linux-rdma@vger.kernel.org
6754S: Supported
6755W: http://www.openfabrics.org
6756Q: http://patchwork.kernel.org/project/linux-rdma/list/
6757T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6758F: drivers/infiniband/ulp/srp/
6759F: include/scsi/srp.h
6760
Linus Torvalds1da177e2005-04-16 15:20:36 -07006761SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006762M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006763L: linux-scsi@vger.kernel.org
6764W: http://www.torque.net/sg
6765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006766F: drivers/scsi/sg.c
6767F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006768
6769SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006770M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006771L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006772T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6773T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6774T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006776F: drivers/scsi/
6777F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006778
6779SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006780M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006781L: linux-scsi@vger.kernel.org
6782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006783F: Documentation/scsi/st.txt
6784F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006785
6786SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006787M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006788M: Sridhar Samudrala <sri@us.ibm.com>
Neil Horman02c38d02012-10-24 09:26:51 +00006789M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006790L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006791W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006793F: Documentation/networking/sctp.txt
6794F: include/linux/sctp.h
6795F: include/net/sctp/
6796F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006797
6798SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006799M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006800S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006801F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006802F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006803F: drivers/watchdog/scx200_wdt.c
6804F: drivers/i2c/busses/scx200*
6805F: drivers/mtd/maps/scx200_docflash.c
6806F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006807
6808SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006809M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006811F: drivers/char/scx200_gpio.c
6812F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006813
6814SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006815M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006817F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006818
Sascha Sommer6a369132008-07-15 14:21:29 +02006819SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006820M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006821L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006823F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006824
Randy Dunlape7839f22008-10-12 16:11:45 -07006825SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006826M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006827L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006828T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6829S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006830F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006831F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006832
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006833SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006834M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006835L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006836L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006837S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006838F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006839
Ben Dooks0d1bb412009-06-14 13:52:37 +01006840SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006841M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006842L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006843S: Maintained
6844F: drivers/mmc/host/sdhci-s3c.c
6845
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006846SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006847M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006848L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006849L: linux-mmc@vger.kernel.org
6850S: Maintained
6851F: drivers/mmc/host/sdhci-spear.c
6852
James Morris8711cca2008-12-04 03:19:45 +11006853SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006854M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006855L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006856T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006857W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006858S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006859F: security/
James Morris8711cca2008-12-04 03:19:45 +11006860
Linus Torvalds1da177e2005-04-16 15:20:36 -07006861SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006862M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006863S: Supported
6864
6865SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006866M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006867M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006868M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006869L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006870W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006871T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006872S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006873F: include/linux/selinux*
6874F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006875F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006876
John Johansenc1c124e2010-07-29 14:48:09 -07006877APPARMOR SECURITY MODULE
6878M: John Johansen <john.johansen@canonical.com>
6879L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6880W: apparmor.wiki.kernel.org
6881T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6882S: Supported
6883F: security/apparmor/
6884
Jiri Slabycef2cf02007-05-08 00:31:45 -07006885SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006886M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006888F: drivers/misc/phantom.c
6889F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006890
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006891SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006892M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006893L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006894T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006895S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006896F: drivers/ata/
6897F: include/linux/ata.h
6898F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006899
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306900SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006901M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006902L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006903W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006904S: Supported
6905F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306906
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006907SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006908M: Sathya Perla <sathya.perla@emulex.com>
6909M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6910M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006911L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006912W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006913S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006914F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006915
Ben Hutchings8ceee662008-04-27 12:55:59 +01006916SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006917M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006918M: Ben Hutchings <bhutchings@solarflare.com>
6919L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006920S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006921F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006922
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006923SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006924M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006926F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006927
6928SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006929M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006930L: linux-ia64@vger.kernel.org
6931S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006932F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006933F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006934F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006935
Linus Torvalds1da177e2005-04-16 15:20:36 -07006936SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006937M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006938L: linux-visws-devel@lists.sf.net
6939W: http://linux-visws.sf.net
6940S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006941F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006942
Jack Steiner75312612008-08-15 00:40:42 -07006943SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006944M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006946F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006947
Hans Verkuil49cc6292012-11-30 07:13:29 -03006948SI470X FM RADIO RECEIVER I2C DRIVER
6949M: Hans Verkuil <hverkuil@xs4all.nl>
6950L: linux-media@vger.kernel.org
6951T: git git://linuxtv.org/media_tree.git
6952W: http://linuxtv.org
6953S: Odd Fixes
6954F: drivers/media/radio/si470x/radio-si470x-i2c.c
6955
6956SI470X FM RADIO RECEIVER USB DRIVER
6957M: Hans Verkuil <hverkuil@xs4all.nl>
6958L: linux-media@vger.kernel.org
6959T: git git://linuxtv.org/media_tree.git
6960W: http://linuxtv.org
6961S: Maintained
6962F: drivers/media/radio/si470x/radio-si470x-common.c
6963F: drivers/media/radio/si470x/radio-si470x.h
6964F: drivers/media/radio/si470x/radio-si470x-usb.c
6965
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03006966SH_VEU V4L2 MEM2MEM DRIVER
6967M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
6968L: linux-media@vger.kernel.org
6969S: Maintained
6970F: drivers/media/platform/sh_veu.c
6971F: include/media/sh_veu.h
6972
6973SH_VOU V4L2 OUTPUT DRIVER
6974M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
6975L: linux-media@vger.kernel.org
6976S: Maintained
6977F: drivers/media/platform/sh_vou.c
6978F: include/media/sh_vou.h
6979
Len Brown6349d992009-08-14 15:07:14 -04006980SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006981M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006982L: sfi-devel@simplefirmware.org
6983W: http://simplefirmware.org/
6984T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006985S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006986F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006987F: drivers/sfi/
6988F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006989
Linus Torvalds1da177e2005-04-16 15:20:36 -07006990SIMTEC EB110ATX (Chalice CATS)
6991P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006992P: Vincent Sanders <vince@simtec.co.uk>
6993M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006994W: http://www.simtec.co.uk/products/EB110ATX/
6995S: Supported
6996
6997SIMTEC EB2410ITX (BAST)
6998P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006999P: Vincent Sanders <vince@simtec.co.uk>
7000M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007001W: http://www.simtec.co.uk/products/EB2410ITX/
7002S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08007003F: arch/arm/mach-s3c2410/mach-bast.c
7004F: arch/arm/mach-s3c2410/bast-ide.c
7005F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007006
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007007TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08007008M: Sekhar Nori <nsekhar@ti.com>
7009M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05307010L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05307011T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007012Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007013S: Supported
7014F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01007015F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007016
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007017TI DAVINCI SERIES MEDIA DRIVER
7018M: Manjunath Hadli <manjunath.hadli@ti.com>
7019M: Prabhakar Lad <prabhakar.lad@ti.com>
7020L: linux-media@vger.kernel.org
7021L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7022W: http://linuxtv.org/
7023Q: http://patchwork.linuxtv.org/project/linux-media/list/
7024T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
7025S: Supported
7026F: drivers/media/platform/davinci/
7027F: include/media/davinci/
7028
Francois Romieu92aab3c2005-07-30 13:11:18 +02007029SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007030M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02007031L: netdev@vger.kernel.org
7032S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007033F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02007034
Linus Torvalds1da177e2005-04-16 15:20:36 -07007035SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007036M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007037W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07007038L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007039S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007040F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007041
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007042SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007043M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01007044L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007046F: Documentation/i2c/busses/i2c-sis96x
7047F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007048
Linus Torvalds1da177e2005-04-16 15:20:36 -07007049SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007050M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007051W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007053F: Documentation/fb/sisfb.txt
7054F: drivers/video/sis/
7055F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007056
7057SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007058M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007059W: http://www.winischhofer.at/linuxsisusbvga.shtml
7060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007061F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007062
Christoph Lameter415ad262007-07-26 10:40:56 -07007063SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07007064M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02007065M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007066M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07007067L: linux-mm@kvack.org
7068S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007069F: include/linux/sl?b*.h
7070F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07007071
Paul E. McKenney9fab97872012-05-07 09:36:34 -07007072SLEEPABLE READ-COPY UPDATE (SRCU)
7073M: Lai Jiangshan <laijs@cn.fujitsu.com>
7074M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7075W: http://www.rdrop.com/users/paulmck/RCU/
7076S: Supported
7077T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7078F: include/linux/srcu*
7079F: kernel/srcu*
7080
Casey Schaufler66372842012-05-23 18:34:52 -07007081SMACK SECURITY MODULE
7082M: Casey Schaufler <casey@schaufler-ca.com>
7083L: linux-security-module@vger.kernel.org
7084W: http://schaufler-ca.com
7085T: git git://git.gitorious.org/smack-next/kernel.git
7086S: Maintained
7087F: Documentation/security/Smack.txt
7088F: security/smack/
7089
Linus Torvalds1da177e2005-04-16 15:20:36 -07007090SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04007091M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04007092S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07007093F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007094
Sakari Ailuse8e31622012-11-12 18:14:39 -03007095SMIA AND SMIA++ IMAGE SENSOR DRIVER
7096M: Sakari Ailus <sakari.ailus@iki.fi>
7097L: linux-media@vger.kernel.org
7098S: Maintained
7099F: drivers/media/i2c/smiapp
7100F: include/media/smiapp.h
7101F: drivers/media/i2c/smiapp-pll.c
7102F: drivers/media/i2c/smiapp-pll.h
7103
Guenter Roeck920fa1f2010-08-09 17:21:06 -07007104SMM665 HARDWARE MONITOR DRIVER
7105M: Guenter Roeck <linux@roeck-us.net>
7106L: lm-sensors@lm-sensors.org
7107S: Maintained
7108F: Documentation/hwmon/smm665
7109F: drivers/hwmon/smm665.c
7110
Steve Glendinning9df73052010-08-14 21:08:54 +02007111SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007112M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02007113L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007114S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02007115F: Documentation/hwmon/emc2103
7116F: drivers/hwmon/emc2103.c
7117
Hans de Goedea98d5062011-03-21 17:59:36 +01007118SMSC SCH5627 HARDWARE MONITOR DRIVER
7119M: Hans de Goede <hdegoede@redhat.com>
7120L: lm-sensors@lm-sensors.org
7121S: Supported
7122F: Documentation/hwmon/sch5627
7123F: drivers/hwmon/sch5627.c
7124
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007125SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007126M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007127L: lm-sensors@lm-sensors.org
7128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007129F: Documentation/hwmon/smsc47b397
7130F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007131
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007132SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007133M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007134L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007136F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007137F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007138
Steve Glendinning2cb37722008-12-11 20:54:30 -08007139SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007140M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007141L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007142S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007143F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007144
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007145SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007146M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007147L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007148S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007149F: drivers/video/smscufx.c
7150
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007151SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07007152M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007153L: linux-altix@sgi.com
7154L: linux-ia64@vger.kernel.org
7155W: http://www.sgi.com/altix
7156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007157F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007158
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007159SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007160M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007161L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007162T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007163S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007164F: include/media/soc*
7165F: drivers/media/i2c/soc_camera/
7166F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007167
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007168SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007169M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007171F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007172
Linus Torvalds1da177e2005-04-16 15:20:36 -07007173SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007174M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007175L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007176S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007177F: drivers/md/
7178F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007179
Linus Torvalds1da177e2005-04-16 15:20:36 -07007180SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007181M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007182L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007183S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007184F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007185
Michael Buesch61e115a2007-09-18 15:12:50 -04007186SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007187M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007188L: netdev@vger.kernel.org
7189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007190F: drivers/ssb/
7191F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007192
Linus Torvalds1da177e2005-04-16 15:20:36 -07007193SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007194M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd09448532010-02-11 10:40:13 -05007195L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007196W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007198F: Documentation/laptops/sony-laptop.txt
7199F: drivers/char/sonypi.c
7200F: drivers/platform/x86/sony-laptop.c
7201F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007202
Alex Dubovbaf85322008-02-09 10:20:54 -08007203SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007204M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007205W: http://tifmxx.berlios.de/
7206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007207F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007208
Linus Torvalds1da177e2005-04-16 15:20:36 -07007209SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007210M: Jaroslav Kysela <perex@perex.cz>
7211M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007212L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007213W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007214T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007215T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007216S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007217F: Documentation/sound/
7218F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007219F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007220
Mark Brownbd903bd2008-11-19 19:16:05 +00007221SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01007222M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007223M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00007224T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007225L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007226W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007227S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007228F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007229F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007230
Sam Ravnborg473321f2009-01-04 15:47:49 -08007231SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007232M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007233L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007234Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007235T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7236T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007238F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007239F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007240
David S. Miller6404fcc2010-03-16 01:00:17 -07007241SPARC SERIAL DRIVERS
7242M: "David S. Miller" <davem@davemloft.net>
7243L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007244T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7245T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007246S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007247F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007248F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007249F: drivers/tty/serial/sunhv.c
7250F: drivers/tty/serial/sunsab.c
7251F: drivers/tty/serial/sunsab.h
7252F: drivers/tty/serial/sunsu.c
7253F: drivers/tty/serial/sunzilog.c
7254F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007255
Christopher Li389325b2012-04-05 14:25:14 -07007256SPARSE CHECKER
7257M: "Christopher Li" <sparse@chrisli.org>
7258L: linux-sparse@vger.kernel.org
7259W: https://sparse.wiki.kernel.org/
7260T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7261T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7262S: Maintained
7263F: include/linux/compiler.h
7264
viresh kumarfc0c1952010-04-01 12:31:21 +01007265SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007266M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307267M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007268L: spear-devel@list.st.com
7269L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007270W: http://www.st.com/spear
7271S: Maintained
7272F: arch/arm/plat-spear/
7273
Viresh Kumar71e09a92012-04-20 22:39:48 +05307274SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007275M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307276M: Shiraz Hashim <shiraz.hashim@st.com>
7277L: spear-devel@list.st.com
7278L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7279W: http://www.st.com/spear
7280S: Maintained
7281F: arch/arm/mach-spear13xx/
7282
viresh kumarfc0c1952010-04-01 12:31:21 +01007283SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007284M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307285M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007286L: spear-devel@list.st.com
7287L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007288W: http://www.st.com/spear
7289S: Maintained
7290F: arch/arm/mach-spear3xx/
7291
7292SPEAR6XX MACHINE SUPPORT
7293M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307294M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007295M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007296L: spear-devel@list.st.com
7297L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007298W: http://www.st.com/spear
7299S: Maintained
7300F: arch/arm/mach-spear6xx/
7301
7302SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007303M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007304L: spear-devel@list.st.com
7305L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007306W: http://www.st.com/spear
7307S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307308F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007309
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007310SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007311M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007312L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08007313Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06007314T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007316F: Documentation/spi/
7317F: drivers/spi/
7318F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007319
Jim Lewis2752e4012006-09-29 02:01:19 -07007320SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007321M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7322M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e4012006-09-29 02:01:19 -07007323L: netdev@vger.kernel.org
7324S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007325F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007326F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e4012006-09-29 02:01:19 -07007327
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007328SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007329M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007330L: linuxppc-dev@lists.ozlabs.org
7331L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007332W: http://www.ibm.com/developerworks/power/cell/
7333S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007334F: Documentation/filesystems/spufs.txt
7335F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007336
Phillip Lougherfc555842009-01-05 08:46:29 +00007337SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007338M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007339L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7340W: http://squashfs.org.uk
7341S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007342F: Documentation/filesystems/squashfs.txt
7343F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007344
Linus Torvalds1da177e2005-04-16 15:20:36 -07007345SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007346M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007348F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007349
Linus Torvalds26e9a392008-10-17 09:50:12 -07007350STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007351M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007352L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007353S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007354
Linus Torvalds26e9a392008-10-17 09:50:12 -07007355STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007356M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007357T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007358L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007359S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007360F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007361
Joe Perchesc8c8b102011-07-05 09:42:12 -07007362STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7363M: Henk de Groot <pe1dnn@amsat.org>
7364S: Odd Fixes
7365F: drivers/staging/wlags49_h2/
7366F: drivers/staging/wlags49_h25/
7367
Joe Perchesc9555152011-07-05 09:42:01 -07007368STAGING - ASUS OLED
7369M: Jakub Schmidtke <sjakub@gmail.com>
7370S: Odd Fixes
7371F: drivers/staging/asus_oled/
7372
Joe Perchesebd3d012011-07-05 09:42:02 -07007373STAGING - COMEDI
7374M: Ian Abbott <abbotti@mev.co.uk>
7375M: Mori Hess <fmhess@users.sourceforge.net>
7376S: Odd Fixes
7377F: drivers/staging/comedi/
7378
Joe Perches8ca572c2011-07-05 09:42:03 -07007379STAGING - CRYSTAL HD VIDEO DECODER
7380M: Naren Sankar <nsankar@broadcom.com>
7381M: Jarod Wilson <jarod@wilsonet.com>
7382M: Scott Davilla <davilla@4pi.com>
7383M: Manu Abraham <abraham.manu@gmail.com>
7384S: Odd Fixes
7385F: drivers/staging/crystalhd/
7386
Joe Perches0f16ffc2011-07-05 09:42:04 -07007387STAGING - ECHO CANCELLER
7388M: Steve Underwood <steveu@coppice.org>
7389M: David Rowe <david@rowetel.com>
7390S: Odd Fixes
7391F: drivers/staging/echo/
7392
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007393STAGING - ET131X NETWORK DRIVER
7394M: Mark Einon <mark.einon@gmail.com>
7395S: Odd Fixes
7396F: drivers/staging/et131x/
7397
Joe Perchesa0138162011-07-05 15:21:34 -07007398STAGING - FLARION FT1000 DRIVERS
7399M: Marek Belisko <marek.belisko@gmail.com>
7400S: Odd Fixes
7401F: drivers/staging/ft1000/
7402
Joe Perchesec3fab92011-07-05 09:42:05 -07007403STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7404M: David Täht <d@teklibre.com>
7405S: Odd Fixes
7406F: drivers/staging/frontier/
7407
Joe Perches6c1bb422011-07-05 09:42:07 -07007408STAGING - INDUSTRIAL IO
7409M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007410L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007411S: Odd Fixes
7412F: drivers/staging/iio/
7413
Joe Perchesa0138162011-07-05 15:21:34 -07007414STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7415M: Jarod Wilson <jarod@wilsonet.com>
7416W: http://www.lirc.org/
7417S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007418F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007419
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007420STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007421M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007422M: Marc Dietrich <marvin24@gmx.de>
7423L: ac100@lists.launchpad.net (moderated for non-subscribers)
7424S: Maintained
7425F: drivers/staging/nvec/
7426
Joe Perchesa0138162011-07-05 15:21:34 -07007427STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7428M: Andres Salomon <dilinger@queued.net>
7429M: Chris Ball <cjb@laptop.org>
7430M: Jon Nettleton <jon.nettleton@gmail.com>
7431W: http://wiki.laptop.org/go/DCON
7432S: Odd Fixes
7433F: drivers/staging/olpc_dcon/
7434
Chris Kelly94cfdd12012-03-14 10:55:42 +00007435STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00007436M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007437M: Chris Kelly <ckelly@ozmodevices.com>
7438S: Maintained
7439F: drivers/staging/ozwpan/
7440
Joe Perchesa0138162011-07-05 15:21:34 -07007441STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007442M: Willy Tarreau <willy@meta-x.org>
7443S: Odd Fixes
7444F: drivers/staging/panel/
7445
Joe Perchesa0138162011-07-05 15:21:34 -07007446STAGING - REALTEK RTL8712U DRIVERS
7447M: Larry Finger <Larry.Finger@lwfinger.net>
7448M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7449S: Odd Fixes
7450F: drivers/staging/rtl8712/
7451
Joe Perches9629fa82011-07-05 09:42:09 -07007452STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7453M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7454S: Odd Fixes
7455F: drivers/staging/sm7xx/
7456
Joe Perchesa0138162011-07-05 15:21:34 -07007457STAGING - SOFTLOGIC 6x10 MPEG CODEC
7458M: Ben Collins <bcollins@bluecherry.net>
7459S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007460F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007461
7462STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7463M: William Hubbs <w.d.hubbs@gmail.com>
7464M: Chris Brannon <chris@the-brannons.com>
7465M: Kirk Reiser <kirk@braille.uwo.ca>
7466M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7467L: speakup@braille.uwo.ca
7468W: http://www.linux-speakup.org/
7469S: Odd Fixes
7470F: drivers/staging/speakup/
7471
7472STAGING - TI DSP BRIDGE DRIVERS
7473M: Omar Ramirez Luna <omar.ramirez@ti.com>
7474S: Odd Fixes
7475F: drivers/staging/tidspbridge/
7476
Joe Perchesa0138162011-07-05 15:21:34 -07007477STAGING - USB ENE SM/MS CARD READER DRIVER
7478M: Al Cho <acho@novell.com>
7479S: Odd Fixes
7480F: drivers/staging/keucr/
7481
Joe Perchesb3e871c2011-07-05 09:42:10 -07007482STAGING - VIA VT665X DRIVERS
7483M: Forest Bond <forest@alittletooquiet.net>
7484S: Odd Fixes
7485F: drivers/staging/vt665?/
7486
Joe Perches81a9a522011-07-05 09:42:11 -07007487STAGING - WINBOND IS89C35 WLAN USB DRIVER
7488M: Pavel Machek <pavel@ucw.cz>
7489S: Odd Fixes
7490F: drivers/staging/winbond/
7491
Joe Perches709bcb02011-07-05 09:42:13 -07007492STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007493M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007494S: Odd Fixes
7495F: drivers/staging/xgifb/
7496
Linus Torvalds1da177e2005-04-16 15:20:36 -07007497STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007498M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007499S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007500F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007501
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007502SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007503M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007504W: http://sammy.net/sun3/
7505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007506F: arch/m68k/kernel/*sun3*
7507F: arch/m68k/sun3*/
7508F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007509F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007510
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007511SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007512M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007513L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007514W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007515Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007516T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007517S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007518F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007519F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007520F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007521
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007522SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007523M: Len Brown <len.brown@intel.com>
7524M: Pavel Machek <pavel@ucw.cz>
7525M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007526L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007527S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007528F: Documentation/power/
7529F: arch/x86/kernel/acpi/
7530F: drivers/base/power/
7531F: kernel/power/
7532F: include/linux/suspend.h
7533F: include/linux/freezer.h
7534F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007535
7536SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007537M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007538L: linux-video@atrey.karlin.mff.cuni.cz
7539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007540F: Documentation/svga.txt
7541F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007542
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007543SWIOTLB SUBSYSTEM
7544M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7545L: linux-kernel@vger.kernel.org
7546S: Supported
7547F: lib/swiotlb.c
7548F: arch/*/kernel/pci-swiotlb.c
7549F: include/linux/swiotlb.h
7550
Linus Torvalds1da177e2005-04-16 15:20:36 -07007551SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007552M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007554F: Documentation/filesystems/sysv-fs.txt
7555F: fs/sysv/
7556F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007557
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007558TARGET SUBSYSTEM
7559M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7560L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007561L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007562L: http://groups.google.com/group/linux-iscsi-target-dev
7563W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007564T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007565S: Supported
7566F: drivers/target/
7567F: include/target/
7568F: Documentation/target/
7569
Alan Cox4e688522008-04-30 00:52:11 -07007570TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007571M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007573F: Documentation/accounting/taskstats*
7574F: include/linux/taskstats*
7575F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007576
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007577TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007578M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007579L: netdev@vger.kernel.org
7580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007581F: include/linux/pkt_cls.h
7582F: include/net/pkt_cls.h
7583F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007584
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007585TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007586M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7587M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007588W: http://tcp-lp-mod.sourceforge.net/
7589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007590F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007591
Antti Palosaari91952bc2012-10-01 12:28:46 -03007592TDA10071 MEDIA DRIVER
7593M: Antti Palosaari <crope@iki.fi>
7594L: linux-media@vger.kernel.org
7595W: http://linuxtv.org/
7596W: http://palosaari.fi/linux/
7597Q: http://patchwork.linuxtv.org/project/linux-media/list/
7598T: git git://linuxtv.org/anttip/media_tree.git
7599S: Maintained
7600F: drivers/media/dvb-frontends/tda10071*
7601
7602TDA18212 MEDIA DRIVER
7603M: Antti Palosaari <crope@iki.fi>
7604L: linux-media@vger.kernel.org
7605W: http://linuxtv.org/
7606W: http://palosaari.fi/linux/
7607Q: http://patchwork.linuxtv.org/project/linux-media/list/
7608T: git git://linuxtv.org/anttip/media_tree.git
7609S: Maintained
7610F: drivers/media/tuners/tda18212*
7611
7612TDA18218 MEDIA DRIVER
7613M: Antti Palosaari <crope@iki.fi>
7614L: linux-media@vger.kernel.org
7615W: http://linuxtv.org/
7616W: http://palosaari.fi/linux/
7617Q: http://patchwork.linuxtv.org/project/linux-media/list/
7618T: git git://linuxtv.org/anttip/media_tree.git
7619S: Maintained
7620F: drivers/media/tuners/tda18218*
7621
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007622TDA18271 MEDIA DRIVER
7623M: Michael Krufky <mkrufky@linuxtv.org>
7624L: linux-media@vger.kernel.org
7625W: http://linuxtv.org/
7626W: http://github.com/mkrufky
7627Q: http://patchwork.linuxtv.org/project/linux-media/list/
7628T: git git://linuxtv.org/mkrufky/tuners.git
7629S: Maintained
7630F: drivers/media/tuners/tda18271*
7631
Michael Krufkye48307a2012-10-02 00:56:33 -03007632TDA827x MEDIA DRIVER
7633M: Michael Krufky <mkrufky@linuxtv.org>
7634L: linux-media@vger.kernel.org
7635W: http://linuxtv.org/
7636W: http://github.com/mkrufky
7637Q: http://patchwork.linuxtv.org/project/linux-media/list/
7638T: git git://linuxtv.org/mkrufky/tuners.git
7639S: Maintained
7640F: drivers/media/tuners/tda8290.*
7641
Michael Krufky66cf9212012-10-02 00:56:28 -03007642TDA8290 MEDIA DRIVER
7643M: Michael Krufky <mkrufky@linuxtv.org>
7644L: linux-media@vger.kernel.org
7645W: http://linuxtv.org/
7646W: http://github.com/mkrufky
7647Q: http://patchwork.linuxtv.org/project/linux-media/list/
7648T: git git://linuxtv.org/mkrufky/tuners.git
7649S: Maintained
7650F: drivers/media/tuners/tda8290.*
7651
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007652TDA9840 MEDIA DRIVER
7653M: Hans Verkuil <hverkuil@xs4all.nl>
7654L: linux-media@vger.kernel.org
7655T: git git://linuxtv.org/media_tree.git
7656W: http://linuxtv.org
7657S: Maintained
7658F: drivers/media/i2c/tda9840*
7659
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007660TEA5761 TUNER 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/tuners/tea5761.*
7667
7668TEA5767 TUNER DRIVER
7669M: Mauro Carvalho Chehab <mchehab@redhat.com>
7670L: linux-media@vger.kernel.org
7671W: http://linuxtv.org
7672T: git git://linuxtv.org/media_tree.git
7673S: Maintained
7674F: drivers/media/tuners/tea5767.*
7675
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007676TEA6415C MEDIA DRIVER
7677M: Hans Verkuil <hverkuil@xs4all.nl>
7678L: linux-media@vger.kernel.org
7679T: git git://linuxtv.org/media_tree.git
7680W: http://linuxtv.org
7681S: Maintained
7682F: drivers/media/i2c/tea6415c*
7683
7684TEA6420 MEDIA DRIVER
7685M: Hans Verkuil <hverkuil@xs4all.nl>
7686L: linux-media@vger.kernel.org
7687T: git git://linuxtv.org/media_tree.git
7688W: http://linuxtv.org
7689S: Maintained
7690F: drivers/media/i2c/tea6420*
7691
Jiri Pirko3d249d42011-11-11 22:16:48 +00007692TEAM DRIVER
7693M: Jiri Pirko <jpirko@redhat.com>
7694L: netdev@vger.kernel.org
7695S: Supported
7696F: drivers/net/team/
7697F: include/linux/if_team.h
7698
Sean Young40ad4a32012-11-19 10:32:53 -03007699TECHNOTREND USB IR RECEIVER
7700M: Sean Young <sean@mess.org>
7701L: linux-media@vger.kernel.org
7702S: Maintained
7703F: drivers/media/rc/ttusbir.c
7704
Erik Gilling84b94142010-06-09 15:35:53 -07007705TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007706M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007707L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007708Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7709T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007710S: Supported
7711F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007712F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007713F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007714
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007715TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007716M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007717L: netdev@vger.kernel.org
7718S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007719F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007720
Alan Cox4e688522008-04-30 00:52:11 -07007721Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007722M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007723S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007724F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007725
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007726TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007727M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007728M: Max Filippov <jcmvbkbc@gmail.com>
7729L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007731F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007732
Zhang Ruid3fb6952012-11-15 08:58:27 +08007733THERMAL
7734M: Zhang Rui <rui.zhang@intel.com>
7735L: linux-pm@vger.kernel.org
7736T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7737S: Supported
7738F: drivers/thermal/
7739F: include/linux/thermal.h
7740
Alan Cox4e688522008-04-30 00:52:11 -07007741THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007742M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007743L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05007744L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007745W: http://ibm-acpi.sourceforge.net
7746W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007747T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007749F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007750
Alex Dubov4020f2d2006-10-04 02:15:37 -07007751TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007752M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007754F: drivers/misc/tifm*
7755F: drivers/mmc/host/tifm_sd.c
7756F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007757
M R Swami Reddy152ad442012-04-02 20:02:31 +05307758TI LM49xxx FAMILY ASoC CODEC DRIVERS
7759M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307760M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307761L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7762S: Maintained
7763F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307764F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307765
Kim, Milo0edd8072012-12-17 16:01:17 -08007766TI LP855x BACKLIGHT DRIVER
7767M: Milo Kim <milo.kim@ti.com>
7768S: Maintained
7769F: Documentation/backlight/lp855x-driver.txt
7770F: drivers/video/backlight/lp855x_bl.c
7771F: include/linux/platform_data/lp855x.h
7772
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007773TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007774M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007775L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7776S: Maintained
7777F: sound/soc/codecs/twl4030*
7778
Luciano Coelho90921012011-11-20 21:40:41 +02007779TI WILINK WIRELESS DRIVERS
7780M: Luciano Coelho <coelho@ti.com>
7781L: linux-wireless@vger.kernel.org
7782W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7783W: http://wireless.kernel.org/en/users/Drivers/wl1251
7784T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7785S: Maintained
7786F: drivers/net/wireless/ti/
7787F: include/linux/wl12xx.h
7788
Per Lidene86eaa32006-01-12 16:45:18 +01007789TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007790M: Jon Maloy <jon.maloy@ericsson.com>
7791M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007792L: netdev@vger.kernel.org (core kernel code)
7793L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007794W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007796F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007797F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007798
Chris Metcalf867e3592010-05-28 23:09:12 -04007799TILE ARCHITECTURE
7800M: Chris Metcalf <cmetcalf@tilera.com>
7801W: http://www.tilera.com/scm/
7802S: Supported
7803F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007804F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007805F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007806F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007807
Linus Torvalds1da177e2005-04-16 15:20:36 -07007808TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007809M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007810L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007811W: http://sourceforge.net/projects/tlan/
7812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007813F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007814F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007815
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007816TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007817M: Kentaro Takeda <takedakn@nttdata.co.jp>
7818M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007819L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7820L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007821L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7822L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7823W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007824T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007826F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007827
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007828TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007829M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05007830L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007831S: Maintained
7832F: drivers/platform/x86/topstar-laptop.c
7833
Linus Torvalds1da177e2005-04-16 15:20:36 -07007834TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05007835L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007836S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007837F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007838
7839TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007840M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007841L: tlinux-users@tce.toshiba-dme.co.jp
7842W: http://www.buzzard.org.uk/toshiba/
7843S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007844F: drivers/char/toshiba.c
7845F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007846
Pierre Ossmand719f902009-03-24 21:06:09 +01007847TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007848M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007849M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007850L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007851S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007852F: drivers/mmc/host/tmio_mmc*
7853F: drivers/mmc/host/sh_mobile_sdhi.c
7854F: include/linux/mmc/tmio.h
7855F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007856
Hugh Dickins98f32602009-05-21 20:33:58 +01007857TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007858M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007859L: linux-mm@kvack.org
7860S: Maintained
7861F: include/linux/shmem_fs.h
7862F: mm/shmem.c
7863
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02007864TM6000 VIDEO4LINUX DRIVER
7865M: Mauro Carvalho Chehab <mchehab@redhat.com>
7866L: linux-media@vger.kernel.org
7867W: http://linuxtv.org
7868T: git git://linuxtv.org/media_tree.git
7869S: Odd fixes
7870F: drivers/media/usb/tm6000/
7871
Alan Cox4e688522008-04-30 00:52:11 -07007872TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007873M: Kent Yoder <key@linux.vnet.ibm.com>
7874M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007875W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007876M: Marcel Selhorst <tpmdd@selhorst.net>
7877M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007878W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007879L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007881F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007882
Joe Perchesd6f005a2009-10-26 16:49:40 -07007883TRACING
7884M: Steven Rostedt <rostedt@goodmis.org>
7885M: Frederic Weisbecker <fweisbec@gmail.com>
7886M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007887T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007888S: Maintained
7889F: Documentation/trace/ftrace.txt
7890F: arch/*/*/*/ftrace.h
7891F: arch/*/kernel/ftrace.c
7892F: include/*/ftrace.h
7893F: include/linux/trace*.h
7894F: include/trace/
7895F: kernel/trace/
7896
Linus Torvalds1da177e2005-04-16 15:20:36 -07007897TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007898M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007899T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007900S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007901K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007902
Alan Cox4e688522008-04-30 00:52:11 -07007903TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007904M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01007905M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08007906S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007907T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007908F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007909F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007910F: include/linux/serial_core.h
7911F: include/linux/serial.h
7912F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007913
Antti Palosaari91952bc2012-10-01 12:28:46 -03007914TUA9001 MEDIA DRIVER
7915M: Antti Palosaari <crope@iki.fi>
7916L: linux-media@vger.kernel.org
7917W: http://linuxtv.org/
7918W: http://palosaari.fi/linux/
7919Q: http://patchwork.linuxtv.org/project/linux-media/list/
7920T: git git://linuxtv.org/anttip/media_tree.git
7921S: Maintained
7922F: drivers/media/tuners/tua9001*
7923
Grant Grundler740db6d2008-02-17 11:53:49 -07007924TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007925M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007926L: netdev@vger.kernel.org
7927S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007928F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007929
7930TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00007931M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007932W: http://vtun.sourceforge.net/tun
7933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007934F: Documentation/networking/tuntap.txt
7935F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007936
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007937TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007938M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007940F: drivers/tc/
7941F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007942
Linus Torvalds1da177e2005-04-16 15:20:36 -07007943U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007944M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007945L: linux-scsi@vger.kernel.org
7946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007947F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007948
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007949UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007950M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007951M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007952L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007953T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007954W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007956F: Documentation/filesystems/ubifs.txt
7957F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007958
Alan Coxcc2020e2008-05-19 14:21:51 +01007959UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007960M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007961W: http://www.uclinux.org/
7962L: uclinux-dev@uclinux.org (subscribers-only)
7963S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007964F: arch/m68k/*/*_no.*
7965F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007966
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007967UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007968M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007969W: http://uclinux-h8.sourceforge.jp/
7970S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007971F: arch/h8300/
7972F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007973F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007974
Linus Torvalds1da177e2005-04-16 15:20:36 -07007975UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007976M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007978F: Documentation/filesystems/udf.txt
7979F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007980
Alan Coxcc2020e2008-05-19 14:21:51 +01007981UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007982M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007984F: Documentation/filesystems/ufs.txt
7985F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007986
David Herrmann0a09d3a2012-06-10 15:16:28 +02007987UHID USERSPACE HID IO DRIVER:
7988M: David Herrmann <dh.herrmann@googlemail.com>
7989L: linux-input@vger.kernel.org
7990S: Maintained
7991F: drivers/hid/uhid.c
7992F: include/linux/uhid.h
7993
David Vrabel18332a82008-09-17 16:34:44 +01007994ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007995L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007996S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007997F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007998F: include/linux/uwb.h
7999F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01008000
GuanXuetaob31d8272011-01-16 00:35:49 +08008001UNICORE32 ARCHITECTURE:
8002M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8003W: http://mprc.pku.edu.cn/~guanxuetao/linux
8004S: Maintained
8005T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
8006F: arch/unicore32/
8007
Tony Finchd8379ab2009-11-27 15:50:30 +00008008UNIFDEF
8009M: Tony Finch <dot@dotat.at>
8010W: http://dotat.at/prog/unifdef
8011S: Maintained
8012F: scripts/unifdef.c
8013
Linus Torvalds1da177e2005-04-16 15:20:36 -07008014UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008015M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008016W: http://www.kernel.dk
8017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008018F: Documentation/cdrom/
8019F: drivers/cdrom/cdrom.c
8020F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008021
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05308022UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
8023M: Vinayak Holikatti <vinholikatti@gmail.com>
8024M: Santosh Y <santoshsy@gmail.com>
8025L: linux-scsi@vger.kernel.org
8026S: Supported
8027F: Documentation/scsi/ufs.txt
8028F: drivers/scsi/ufs/
8029
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008030UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008031M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008032W: http://www.linux-mtd.infradead.org/
8033L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008034T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008035S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008036F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07008037F: include/linux/mtd/ubi.h
8038F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008039
Richard Weinberger76ac66e2012-09-26 17:51:50 +02008040UNSORTED BLOCK IMAGES (UBI) Fastmap
8041M: Richard Weinberger <richard@nod.at>
8042L: linux-mtd@lists.infradead.org
8043S: Maintained
8044F: drivers/mtd/ubi/fastmap.c
8045
Linus Torvalds1da177e2005-04-16 15:20:36 -07008046USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008047M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07008048L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008050F: Documentation/usb/acm.txt
8051F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008052
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02008053USB AR5523 WIRELESS DRIVER
8054M: Pontus Fuchs <pontus.fuchs@gmail.com>
8055L: linux-wireless@vger.kernel.org
8056S: Maintained
8057F: drivers/net/wireless/ath/ar5523/
8058
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008059USB ATTACHED SCSI
8060M: Matthew Wilcox <willy@linux.intel.com>
8061M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
8062L: linux-usb@vger.kernel.org
8063L: linux-scsi@vger.kernel.org
8064S: Supported
8065F: drivers/usb/storage/uas.c
8066
Linus Torvalds1da177e2005-04-16 15:20:36 -07008067USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008068M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008069L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008071F: drivers/net/usb/cdc_*.c
8072F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008073
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008074USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008075M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008076L: linux-usb@vger.kernel.org
8077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008078F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008079
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008080USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008081M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008082L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008083W: http://www.linux-usb.org/usbnet
8084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008085F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008086
Alan Coxcc2020e2008-05-19 14:21:51 +01008087USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008088M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01008089L: rio500-users@lists.sourceforge.net
8090W: http://rio500.sourceforge.net
8091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008092F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01008093
Linus Torvalds1da177e2005-04-16 15:20:36 -07008094USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008095M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008096L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008097S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008098F: Documentation/usb/ehci.txt
8099F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008100
David Brownell69ae9e32006-11-14 02:03:31 -08008101USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03008102M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008103L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008104W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03008105T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008107F: drivers/usb/gadget/
8108F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08008109
Jiri Kosina2dea64b2007-07-11 12:12:11 +02008110USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07008111M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008112L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008113T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008114S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07008115F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07008116F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008117
matt mooney857aab32011-06-17 15:50:46 -07008118USB/IP DRIVERS
8119M: Matt Mooney <mfm@muteddisk.com>
8120L: linux-usb@vger.kernel.org
8121S: Maintained
8122F: drivers/staging/usbip/
8123
Olav Kongas959eea22005-11-03 17:38:14 +02008124USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008125M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008126L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008128F: drivers/usb/host/isp116x*
8129F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008130
Linus Torvalds1da177e2005-04-16 15:20:36 -07008131USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008132M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008133L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008135F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008136
8137USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008138M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008139L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008140L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008141S: Maintained
8142W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008143F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008144
Clemens Ladischaf399172011-01-10 16:32:54 +01008145USB MIDI DRIVER
8146M: Clemens Ladisch <clemens@ladisch.de>
8147L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8148T: git git://git.alsa-project.org/alsa-kernel.git
8149S: Maintained
8150F: sound/usb/midi.*
8151
Linus Torvalds1da177e2005-04-16 15:20:36 -07008152USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008153M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008154L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008156F: Documentation/usb/ohci.txt
8157F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008158
Matthias Urlichsba460e42005-07-14 00:33:47 -07008159USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008160M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008161L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008163F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008164
Linus Torvalds1da177e2005-04-16 15:20:36 -07008165USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008166M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008167L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008168L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008169W: http://pegasus2.sourceforge.net/
8170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008171F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008172
Felipe Balbid3ad5582012-05-21 16:24:49 +03008173USB PHY LAYER
8174M: Felipe Balbi <balbi@ti.com>
8175L: linux-usb@vger.kernel.org
8176T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8177S: Maintained
8178F: drivers/usb/phy/
8179F: drivers/usb/otg/
8180
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008181USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008182M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008183L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008184S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008185F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008186
8187USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008188M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008189L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008190L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008191W: http://pegasus2.sourceforge.net/
8192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008193F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008194
Alan Cox4e688522008-04-30 00:52:11 -07008195USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008196M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008197L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008199F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008200
8201USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008202M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008203L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008204S: Maintained
8205W: http://geocities.com/i0xox0i
8206W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008207F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008208
Linus Torvalds1da177e2005-04-16 15:20:36 -07008209USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008210M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008211W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008213F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008214
8215USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008216M: Peter Berger <pberger@brimson.com>
8217M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008218L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008220F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008221
8222USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008223M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008224L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008225S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008226F: Documentation/usb/usb-serial.txt
8227F: drivers/usb/serial/generic.c
8228F: drivers/usb/serial/usb-serial.c
8229F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008230
Linus Torvalds1da177e2005-04-16 15:20:36 -07008231USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008232M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008233L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008235F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008236
8237USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008238M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008239L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008241F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008242
8243USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008244M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008245L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008246W: http://www.connecttech.com
8247S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008248F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008249
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008250USB SMSC75XX ETHERNET DRIVER
8251M: Steve Glendinning <steve.glendinning@shawell.net>
8252L: netdev@vger.kernel.org
8253S: Maintained
8254F: drivers/net/usb/smsc75xx.*
8255
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008256USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008257M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008258L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008260F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008261
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008262USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008263M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008264L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008265L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008266T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008267W: http://www.linux-projects.org
8268S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008269F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008270F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008271
8272USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008273M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008274L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008275W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008276T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008277S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008278F: Documentation/usb/
8279F: drivers/net/usb/
8280F: drivers/usb/
8281F: include/linux/usb.h
8282F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008283
8284USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008285M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008286L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008288F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008289
David Brownell69ae9e32006-11-14 02:03:31 -08008290USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008291M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008292L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008293W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008295F: drivers/net/usb/usbnet.c
8296F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008297
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008298USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008299M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008300L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008301L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008302T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008303W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008304S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008305F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008306F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008307
Hans Verkuilb60b9c42012-11-23 07:54:42 -03008308USB VISION DRIVER
8309M: Hans Verkuil <hverkuil@xs4all.nl>
8310L: linux-media@vger.kernel.org
8311T: git git://linuxtv.org/media_tree.git
8312W: http://linuxtv.org
8313S: Odd Fixes
8314F: drivers/media/usb/usbvision/
8315
Laurent Pinchart8282da42012-10-04 02:32:42 +02008316USB WEBCAM GADGET
8317M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8318L: linux-usb@vger.kernel.org
8319S: Maintained
8320F: drivers/usb/gadget/*uvc*.c
8321F: drivers/usb/gadget/webcam.c
8322
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008323USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008324M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008325L: linux-wireless@vger.kernel.org
8326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008327F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008328
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008329USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008330M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008331L: linux-usb@vger.kernel.org
8332S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008333F: drivers/usb/host/xhci*
8334F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008335
Linus Torvalds1da177e2005-04-16 15:20:36 -07008336USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008337L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008338W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008339S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008340F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008341
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008342USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008343M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008344L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008345L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008346T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008347W: http://royale.zerezo.com/zr364xx/
8348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008349F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008350F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008351
Randy Dunlape7839f22008-10-12 16:11:45 -07008352USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008353M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008354M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008355L: user-mode-linux-devel@lists.sourceforge.net
8356L: user-mode-linux-user@lists.sourceforge.net
8357W: http://user-mode-linux.sourceforge.net
8358S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008359F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008360F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008361F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008362F: fs/hostfs/
8363F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008364
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008365USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008366M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008367M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008369F: Documentation/DocBook/uio-howto.tmpl
8370F: drivers/uio/
8371F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008372
Karel Zak256cccb2012-06-01 10:13:09 +02008373UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008374M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008375L: util-linux@vger.kernel.org
8376W: http://en.wikipedia.org/wiki/Util-linux
8377T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008378S: Maintained
8379
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008380UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008381M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008382L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008383W: http://dev.gentoo.org/~spock/projects/uvesafb/
8384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008385F: Documentation/fb/uvesafb.txt
8386F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008387
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008388VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008389M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008391F: Documentation/filesystems/vfat.txt
8392F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008393
Alex Williamsoncba33452012-07-31 08:16:22 -06008394VFIO DRIVER
8395M: Alex Williamson <alex.williamson@redhat.com>
8396L: kvm@vger.kernel.org
8397S: Maintained
8398F: Documentation/vfio.txt
8399F: drivers/vfio/
8400F: include/linux/vfio.h
8401
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008402VIDEOBUF2 FRAMEWORK
8403M: Pawel Osciak <pawel@osciak.com>
8404M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008405M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008406L: linux-media@vger.kernel.org
8407S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008408F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008409F: include/media/videobuf2-*
8410
Amit Shah9a824462010-03-23 18:23:09 +05308411VIRTIO CONSOLE DRIVER
8412M: Amit Shah <amit.shah@redhat.com>
8413L: virtualization@lists.linux-foundation.org
8414S: Maintained
8415F: drivers/char/virtio_console.c
8416F: include/linux/virtio_console.h
8417
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308418VIRTIO CORE, NET AND BLOCK DRIVERS
8419M: Rusty Russell <rusty@rustcorp.com.au>
8420M: "Michael S. Tsirkin" <mst@redhat.com>
8421L: virtualization@lists.linux-foundation.org
8422S: Maintained
8423F: drivers/virtio/
8424F: drivers/net/virtio_net.c
8425F: drivers/block/virtio_blk.c
8426F: include/linux/virtio_*.h
8427
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008428VIRTIO HOST (VHOST)
8429M: "Michael S. Tsirkin" <mst@redhat.com>
8430L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008431L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008432L: netdev@vger.kernel.org
8433S: Maintained
8434F: drivers/vhost/
8435F: include/linux/vhost.h
8436
Linus Torvalds1da177e2005-04-16 15:20:36 -07008437VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008438M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008439S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008440F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008441
Harald Weltef0bf7f62009-06-17 20:22:39 +02008442VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008443M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008444M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008445S: Maintained
8446F: drivers/mmc/host/via-sdmmc.c
8447
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008448VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008449M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008450L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008451S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008452F: include/linux/via-core.h
8453F: include/linux/via-gpio.h
8454F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008455F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008456
Francois Romieu01f20732007-01-26 00:57:17 -08008457VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008458M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008459L: netdev@vger.kernel.org
8460S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008461F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008462
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -03008463VIVI VIRTUAL VIDEO DRIVER
8464M: Hans Verkuil <hverkuil@xs4all.nl>
8465L: linux-media@vger.kernel.org
8466T: git git://linuxtv.org/media_tree.git
8467W: http://linuxtv.org
8468S: Maintained
8469F: drivers/media/platform/vivi*
8470
Patrick McHardybe7f8272007-10-23 20:26:36 -07008471VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008472M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008473L: netdev@vger.kernel.org
8474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008475F: drivers/net/macvlan.c
8476F: include/linux/if_*vlan.h
8477F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008478
Florian Fainelli55e331c2009-06-16 15:33:53 -07008479VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008480M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008481L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008482S: Maintained
8483F: drivers/vlynq/vlynq.c
8484F: include/linux/vlynq.h
8485
Martyn Welch390beae2012-05-03 17:52:36 +01008486VME SUBSYSTEM
8487M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008488M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008489M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8490L: devel@driverdev.osuosl.org
8491S: Maintained
8492T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8493F: Documentation/vme_api.txt
8494F: drivers/staging/vme/
8495F: drivers/vme/
8496F: include/linux/vme*
8497
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008498VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008499M: Shreyas Bhatewara <sbhatewara@vmware.com>
8500M: "VMware, Inc." <pv-drivers@vmware.com>
8501L: netdev@vger.kernel.org
8502S: Maintained
8503F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008504
Alok Kataria851b1642009-10-13 14:51:05 -07008505VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008506M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008507M: VMware PV-Drivers <pv-drivers@vmware.com>
8508L: linux-scsi@vger.kernel.org
8509S: Maintained
8510F: drivers/scsi/vmw_pvscsi.c
8511F: drivers/scsi/vmw_pvscsi.h
8512
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008513VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008514M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008515M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008516W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008517W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008518T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008519S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008520F: drivers/regulator/
8521F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008522
Juerg Haefligerab413192006-09-24 20:54:04 +02008523VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008524M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008525L: lm-sensors@lm-sensors.org
8526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008527F: Documentation/hwmon/vt1211
8528F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008529
Roger Lucas1de9e372005-11-26 20:20:05 +01008530VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008531M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008532L: lm-sensors@lm-sensors.org
8533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008534F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008535
Tony Olech88095e72011-05-14 16:48:13 -04008536VUB300 USB to SDIO/SD/MMC bridge chip
8537M: Tony Olech <tony.olech@elandigitalsystems.com>
8538L: linux-mmc@vger.kernel.org
8539L: linux-usb@vger.kernel.org
8540S: Supported
8541F: drivers/mmc/host/vub300.c
8542
Linus Torvalds1da177e2005-04-16 15:20:36 -07008543W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008544M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008546F: Documentation/w1/
8547F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008548
Charles Spirakis13927072006-07-05 18:05:15 +02008549W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008550M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008551L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008553F: Documentation/hwmon/w83791d
8554F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008555
Rudolf Marek61db0112006-12-12 18:18:30 +01008556W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008557M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008558L: lm-sensors@lm-sensors.org
8559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008560F: Documentation/hwmon/w83793
8561F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008562
Jean Delvaree3760b42010-10-28 20:31:49 +02008563W83795 HARDWARE MONITORING DRIVER
8564M: Jean Delvare <khali@linux-fr.org>
8565L: lm-sensors@lm-sensors.org
8566S: Maintained
8567F: drivers/hwmon/w83795.c
8568
Linus Torvalds1da177e2005-04-16 15:20:36 -07008569W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008570M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008572F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008573
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008574WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008575M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008576L: linux-watchdog@vger.kernel.org
8577W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008578T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008580F: Documentation/watchdog/
8581F: drivers/watchdog/
8582F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008583
Linus Torvalds1da177e2005-04-16 15:20:36 -07008584WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008585M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008586L: linux-scsi@vger.kernel.org
8587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008588F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008589
David Herrmannb22e00f2011-09-06 13:50:40 +02008590WIIMOTE HID DRIVER
8591M: David Herrmann <dh.herrmann@googlemail.com>
8592L: linux-input@vger.kernel.org
8593S: Maintained
8594F: drivers/hid/hid-wiimote*
8595
David Härdemane258b802009-09-21 17:04:53 -07008596WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008597M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008598S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008599F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008600
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008601WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008602M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008603M: linux-wimax@intel.com
8604L: wimax@linuxwimax.org
8605S: Supported
8606W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008607F: Documentation/wimax/README.wimax
8608F: include/linux/wimax.h
8609F: include/linux/wimax/debug.h
8610F: include/net/wimax.h
8611F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008612
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008613WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008614M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008615S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008616F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008617
Linus Torvalds1da177e2005-04-16 15:20:36 -07008618WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008619M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008620L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008621W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008623F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008624
Mark Brownfebf1df2008-04-02 00:51:09 -04008625WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008626M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8627M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008628L: linux-input@vger.kernel.org
8629T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8630W: http://opensource.wolfsonmicro.com/node/7
8631S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008632F: drivers/input/touchscreen/*wm97*
8633F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008634
Mark Brown055bcbc2010-08-13 14:18:12 +01008635WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008636M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008637L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008638T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008639T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008640W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008641S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008642F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008643F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008644F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008645F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008646F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008647F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008648F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008649F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008650F: drivers/input/misc/wm831x-on.c
8651F: drivers/input/touchscreen/wm831x-ts.c
8652F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008653F: drivers/mfd/arizona*
8654F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008655F: drivers/power/wm83*.c
8656F: drivers/rtc/rtc-wm83*.c
8657F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008658F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008659F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008660F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008661F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008662F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008663F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008664F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008665F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008666F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008667F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008668
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008669WORKQUEUE
8670M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008671T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8672S: Maintained
8673F: include/linux/workqueue.h
8674F: kernel/workqueue.c
8675F: Documentation/workqueue.txt
8676
Linus Torvalds1da177e2005-04-16 15:20:36 -07008677X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008678M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008679L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008680S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008681F: Documentation/networking/x25*
8682F: include/net/x25*
8683F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008684
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008685X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008686M: Thomas Gleixner <tglx@linutronix.de>
8687M: Ingo Molnar <mingo@redhat.com>
8688M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008689M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008690T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008692F: Documentation/x86/
8693F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008694
Matthew Garrettd09448532010-02-11 10:40:13 -05008695X86 PLATFORM DRIVERS
8696M: Matthew Garrett <mjg@redhat.com>
8697L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008698T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd09448532010-02-11 10:40:13 -05008699S: Maintained
8700F: drivers/platform/x86
8701
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008702X86 MCE INFRASTRUCTURE
8703M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008704M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008705L: linux-edac@vger.kernel.org
8706S: Maintained
8707F: arch/x86/kernel/cpu/mcheck/*
8708
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008709XC2028/3028 TUNER DRIVER
8710M: Mauro Carvalho Chehab <mchehab@redhat.com>
8711L: linux-media@vger.kernel.org
8712W: http://linuxtv.org
8713T: git git://linuxtv.org/media_tree.git
8714S: Maintained
8715F: drivers/media/tuners/tuner-xc2028.*
8716
Ian Campbellc4468082011-04-27 15:26:46 -07008717XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008718M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008719M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008720L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8721L: virtualization@lists.linux-foundation.org
8722S: Supported
8723F: arch/x86/xen/
8724F: drivers/*/xen-*front.c
8725F: drivers/xen/
8726F: arch/x86/include/asm/xen/
8727F: include/xen/
8728
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008729XEN HYPERVISOR ARM
8730M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8731L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8732S: Supported
8733F: arch/arm/xen/
8734F: arch/arm/include/asm/xen/
8735
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008736XEN NETWORK BACKEND DRIVER
8737M: Ian Campbell <ian.campbell@citrix.com>
8738L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8739L: netdev@vger.kernel.org
8740S: Supported
8741F: drivers/net/xen-netback/*
8742
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008743XEN PCI SUBSYSTEM
8744M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008745L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008746S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008747F: arch/x86/pci/*xen*
8748F: drivers/pci/*xen*
8749
8750XEN SWIOTLB SUBSYSTEM
8751M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008752L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008753S: Supported
8754F: arch/x86/xen/*swiotlb*
8755F: drivers/xen/*swiotlb*
8756
Linus Torvalds1da177e2005-04-16 15:20:36 -07008757XFS FILESYSTEM
8758P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008759M: Ben Myers <bpm@sgi.com>
8760M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008761M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008762L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008763W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008764T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008765S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008766F: Documentation/filesystems/xfs.txt
8767F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008768
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008769XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008770M: Anirudha Sarangi <anirudh@xilinx.com>
8771M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008772S: Maintained
8773F: drivers/net/ethernet/xilinx/xilinx_axienet*
8774
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008775XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008776M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008777W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008779F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008780
Peter Korsgaard238b8722006-12-06 20:35:17 -08008781XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008782M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008783L: linux-serial@vger.kernel.org
8784S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008785F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008786
Linus Torvalds1da177e2005-04-16 15:20:36 -07008787YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008788M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008789L: linux-hams@vger.kernel.org
8790S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008791F: drivers/net/hamradio/yam*
8792F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008793
Henkaf64a5e2005-10-12 15:02:56 +02008794YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008795M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008796L: usbb2k-api-dev@nongnu.org
8797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008798F: Documentation/input/yealink.txt
8799F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008800
Linus Torvalds1da177e2005-04-16 15:20:36 -07008801Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008802M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008803W: http://yaina.de/jreuter/
8804W: http://www.qsl.net/dl1bke/
8805L: linux-hams@vger.kernel.org
8806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008807F: Documentation/networking/z8530drv.txt
8808F: drivers/net/hamradio/*scc.c
8809F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008810
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008811ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008812M: Daniel Drake <dsd@gentoo.org>
8813M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008814W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008815L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008816L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008818F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008819
Linus Torvalds1da177e2005-04-16 15:20:36 -07008820ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008821L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008822L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008823W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008824T: Mercurial http://linuxtv.org/hg/v4l-dvb
8825S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008826F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008827
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008828ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008829M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008830S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008831F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008832
Linus Torvalds1da177e2005-04-16 15:20:36 -07008833THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008834M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008835L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008836Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008837T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008838S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008839F: *
8840F: */