blob: b0b880da6e5c0e57c932c21f72e0025f2bc6435b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93 X: Files and directories that are NOT maintained, same rules as F:
94 Files exclusions are tested before file matches.
95 Can be useful for excluding a specific subdirectory, for instance:
96 F: net/
97 X: net/ipv6/
98 matches all files in and below net excluding net/ipv6/
99 K: Keyword perl extended regex pattern to match content in a
100 patch or file. For instance:
101 K: of_get_profile
102 matches patches or files that contain "of_get_profile"
103 K: \b(printk|pr_(info|err))\b
104 matches patches or files that contain one or more of the words
105 printk, pr_info or pr_err
106 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108Note: For the hard of thinking, this list is meant to remain in alphabetical
109order. If you could add yourselves to it in alphabetical order that would be
110so much easier [Ed]
111
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700114 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163C505 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700117M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700118L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -0700120F: drivers/net/ethernet/i825xx/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Steffen Klasserta6d89912007-08-10 14:05:27 -07001223C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700123M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700124L: netdev@vger.kernel.org
125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700127F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700130M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700131L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700133F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
adam radfordc4de0ce2010-03-08 12:40:36 -08001353WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
136M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800138W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800140F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
14253C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700143M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144L: linux-scsi@vger.kernel.org
145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700146F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
1486PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700149M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150L: linux-hams@vger.kernel.org
151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700152F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700155M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700156M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700157L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700159F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
1618250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800162M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163L: linux-serial@vger.kernel.org
164W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700165S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700166T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800167F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700168F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
1708390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700171L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000172S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700173F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001759P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700176M: Eric Van Hensbergen <ericvh@gmail.com>
177M: Ron Minnich <rminnich@sandia.gov>
178M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100179L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500180W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800181Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800182T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700184F: Documentation/filesystems/9p.txt
185F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800186
Antti Palosaari91952bc2012-10-01 12:28:46 -0300187A8293 MEDIA DRIVER
188M: Antti Palosaari <crope@iki.fi>
189L: linux-media@vger.kernel.org
190W: http://linuxtv.org/
191W: http://palosaari.fi/linux/
192Q: http://patchwork.linuxtv.org/project/linux-media/list/
193T: git git://linuxtv.org/anttip/media_tree.git
194S: Maintained
195F: drivers/media/dvb-frontends/a8293*
196
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700197AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700198M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700199L: linux-scsi@vger.kernel.org
200W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700202F: Documentation/scsi/aacraid.txt
203F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100206M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207L: lm-sensors@lm-sensors.org
208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700209F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200210
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700212M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213L: lm-sensors@lm-sensors.org
214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700215F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700218M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219L: linux-acenic@sunsite.dk
220S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700221F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Peter Feuerere86435e2009-06-21 18:53:03 +0200223ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700224M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500225L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700226W: http://piie.net/?section=acerhdf
227S: Maintained
228F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200229
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230ACER WMI LAPTOP EXTRAS
Carlos Corbachod9269a72011-05-02 09:57:18 +0100231M: Joey Lee <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500232L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700234F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700237M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200238M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500239L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400240W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800241Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400242T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500243S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700244F: drivers/acpi/
245F: drivers/pnp/pnpacpi/
246F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700247F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500248
Len Brown8b59a452007-01-08 19:03:28 -0500249ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700250M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500251L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300252W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500253S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700254F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Len Brown8b59a452007-01-08 19:03:28 -0500256ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700257M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500258L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300259W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700261F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700262
Len Brown359acec2007-02-10 01:59:24 -0500263ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700264M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500265L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300266W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500269
Carlos Corbachobff431e2008-02-05 02:17:04 +0000270ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500271L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100272S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700273F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000274
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100275AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700276M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200277W: http://wiki.parisc-linux.org/AD1889
278L: linux-parisc@vger.kernel.org
279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700280F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100281
Michael Hennerich527a1a82010-10-28 11:31:28 +0000282AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
283M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100284L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700285W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000286S: Supported
287F: drivers/misc/ad525x_dpot.c
288
289AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
290M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100291L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700292W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000293S: Supported
294F: drivers/regulator/ad5398.c
295
296AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
297M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100298L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700299W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000300S: Supported
301F: drivers/input/misc/ad714x.c
302
303AD7877 TOUCHSCREEN DRIVER
304M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100305L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700306W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000307S: Supported
308F: drivers/input/touchscreen/ad7877.c
309
310AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
311M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100312L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700313W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000314S: Supported
315F: drivers/input/touchscreen/ad7879.c
316
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700317ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
318M: Jiri Kosina <jkosina@suse.cz>
319S: Maintained
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700322M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200323L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700325F: Documentation/hwmon/adm1025
326F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Corentin Labbecae2caa2007-02-14 21:15:04 +0100328ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700329M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330L: lm-sensors@lm-sensors.org
331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700332F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100333
Michael Wucc0b88c2007-08-31 01:15:25 -0400334ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400335L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200336W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400337S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700338F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400339
Michael Hennerich527a1a82010-10-28 11:31:28 +0000340ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
341M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100342L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700343W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000344S: Supported
345F: drivers/mfd/adp5520.c
346F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700347F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800348F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000349F: drivers/input/keyboard/adp5520-keys.c
350
351ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
352M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100353L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700354W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000355S: Supported
356F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800357F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000358
359ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
360M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100361L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700362W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000363S: Supported
364F: drivers/video/backlight/adp8860_bl.c
365
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100366ADS1015 HARDWARE MONITOR DRIVER
367M: Dirk Eibach <eibach@gdsys.de>
368L: lm-sensors@lm-sensors.org
369S: Maintained
370F: Documentation/hwmon/ads1015
371F: drivers/hwmon/ads1015.c
372F: include/linux/i2c/ads1015.h
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700375M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700377F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Jean Delvareb058b852009-12-09 20:36:08 +0100379ADT7475 HARDWARE MONITOR DRIVER
380M: Jean Delvare <khali@linux-fr.org>
381L: lm-sensors@lm-sensors.org
382S: Maintained
383F: Documentation/hwmon/adt7475
384F: drivers/hwmon/adt7475.c
385
Michael Hennerich527a1a82010-10-28 11:31:28 +0000386ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
387M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100388L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700389W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000390S: Supported
391F: drivers/input/misc/adxl34x.c
392
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400393ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700394M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400395L: linux-scsi@vger.kernel.org
396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700397F: Documentation/scsi/advansys.txt
398F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700401M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700403F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Antti Palosaari91952bc2012-10-01 12:28:46 -0300405AF9013 MEDIA DRIVER
406M: Antti Palosaari <crope@iki.fi>
407L: linux-media@vger.kernel.org
408W: http://linuxtv.org/
409W: http://palosaari.fi/linux/
410Q: http://patchwork.linuxtv.org/project/linux-media/list/
411T: git git://linuxtv.org/anttip/media_tree.git
412S: Maintained
413F: drivers/media/dvb-frontends/af9013*
414
415AF9033 MEDIA DRIVER
416M: Antti Palosaari <crope@iki.fi>
417L: linux-media@vger.kernel.org
418W: http://linuxtv.org/
419W: http://palosaari.fi/linux/
420Q: http://patchwork.linuxtv.org/project/linux-media/list/
421T: git git://linuxtv.org/anttip/media_tree.git
422S: Maintained
423F: drivers/media/dvb-frontends/af9033*
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200426L: linux-fsdevel@vger.kernel.org
427S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700428F: Documentation/filesystems/affs.txt
429F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700431AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700432M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700433L: linux-afs@lists.infradead.org
434S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700435F: fs/afs/
436F: include/net/af_rxrpc.h
437F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700440M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700441T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700443F: drivers/char/agp/
444F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700447M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448L: linux-scsi@vger.kernel.org
449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700450F: drivers/scsi/aha152x*
451F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Hannes Reinecke64624d42007-10-19 10:32:29 +0200453AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700454M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200455L: linux-scsi@vger.kernel.org
456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700457F: drivers/scsi/aic7xxx/
458F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200459
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700460AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700461M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700462L: linux-aio@kvack.org
463S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700464F: fs/aio.c
465F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700468M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700469L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470W: http://www.linux-usb.org/SpeedTouch/
471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700472F: drivers/usb/atm/speedtch.c
473F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Pierre Ossman272f1332007-05-14 21:25:26 +0200475ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700476M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700478F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200479
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000480ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700481M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100482L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700484F: Documentation/i2c/busses/i2c-ali1563
485F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700488M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700489M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500490M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700491S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700492L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700493F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Tobias Klauseradf92512011-02-09 10:58:29 +0100495ALTERA UART/JTAG UART SERIAL DRIVERS
496M: Tobias Klauser <tklauser@distanz.ch>
497L: linux-serial@vger.kernel.org
498L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
499S: Maintained
500F: drivers/tty/serial/altera_uart.c
501F: drivers/tty/serial/altera_jtaguart.c
502F: include/linux/altera_uart.h
503F: include/linux/altera_jtaguart.h
504
Andreas Herrmann512d1022011-05-25 20:43:31 +0200505AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100506M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200507L: lm-sensors@lm-sensors.org
508S: Maintained
509F: Documentation/hwmon/fam15h_power
510F: drivers/hwmon/fam15h_power.c
511
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700512AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700513M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700514L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700516F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700517
Jordan Crousef90b8112006-01-06 00:12:14 -0800518AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800519P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700520L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800521W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
522S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700523F: drivers/char/hw_random/geode-rng.c
524F: drivers/crypto/geode*
525F: drivers/video/geode/
526F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800527
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200528AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200529M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200530L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100531T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200532S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800533F: drivers/iommu/amd_iommu*.[ch]
534F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200535
Peter Orubae7f5b302008-07-28 18:44:11 +0200536AMD MICROCODE UPDATE SUPPORT
Andreas Herrmann943482d2012-10-29 18:51:38 +0100537M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700538L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700540F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200541
Stelian Pop284f42b2006-12-12 18:18:31 +0100542AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700543M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100544S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200545F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100546
Tom Tuckerf94b5332006-09-22 15:22:48 -0700547AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700548M: Tom Tucker <tom@opengridcomputing.com>
549M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700550L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700552F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700553
Michael Hennerich527a1a82010-10-28 11:31:28 +0000554ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200555M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100556L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000557L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700558W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000559S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100560F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200561F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000562F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000563F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100564F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000565
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400566ANALOG DEVICES INC ASOC DRIVERS
567L: uclinux-dist-devel@blackfin.uclinux.org
568L: alsa-devel@alsa-project.org (moderated for non-subscribers)
569W: http://blackfin.uclinux.org/
570S: Supported
571F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400572
Johannes Berg42269062006-07-25 16:15:50 +0200573AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700574M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000575L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700576L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700578F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200581M: Jiri Kosina <jkosina@suse.cz>
582S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700583F: arch/x86/kernel/apm_32.c
584F: include/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200585F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700587APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700588M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700589L: linux-input@vger.kernel.org
590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700591F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700592
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700593APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200594M: Henrik Rydberg <rydberg@euromail.se>
595L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700597F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700600M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700602F: drivers/net/appletalk/
603F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Viresh Kumara4801672011-02-22 15:46:07 +0530605ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700606M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530607L: linux-ide@vger.kernel.org
608S: Maintained
609F: include/linux/pata_arasan_cf_data.h
610F: drivers/ata/pata_arasan_cf.c
611
Jaya Kumar1154ea72005-06-21 17:17:04 -0700612ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700613M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700615F: drivers/video/arcfb.c
616F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700619M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700621F: arch/arm/lib/floppydma.S
622F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Will Deacon6f965212011-07-01 14:38:53 +0100624ARM PMU PROFILING AND DEBUGGING
625M: Will Deacon <will.deacon@arm.com>
626S: Maintained
627F: arch/arm/kernel/perf_event*
628F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100629F: arch/arm/include/asm/pmu.h
630F: arch/arm/kernel/hw_breakpoint.c
631F: arch/arm/include/asm/hw_breakpoint.h
632
Russell Kingd4275352009-04-16 14:05:27 +0100633ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700634M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700635L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100636W: http://www.arm.linux.org.uk/
637S: Maintained
638F: arch/arm/
639
Stephen Boydd323c2432012-10-24 11:00:29 -0700640ARM SUB-ARCHITECTURES
641L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
642S: MAINTAINED
643F: arch/arm/mach-*/
644F: arch/arm/plat-*/
645T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
646
Russell Kingcefbf4e2009-11-22 17:40:28 +0000647ARM PRIMECELL AACI PL041 DRIVER
648M: Russell King <linux@arm.linux.org.uk>
649S: Maintained
650F: sound/arm/aaci.*
651
652ARM PRIMECELL CLCD PL110 DRIVER
653M: Russell King <linux@arm.linux.org.uk>
654S: Maintained
655F: drivers/video/amba-clcd.*
656
657ARM PRIMECELL KMI PL050 DRIVER
658M: Russell King <linux@arm.linux.org.uk>
659S: Maintained
660F: drivers/input/serio/ambakmi.*
661F: include/linux/amba/kmi.h
662
Russell King2761f5c2007-05-24 06:56:08 +0200663ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200664S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700665F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200666
Russell Kingcefbf4e2009-11-22 17:40:28 +0000667ARM PRIMECELL BUS SUPPORT
668M: Russell King <linux@arm.linux.org.uk>
669S: Maintained
670F: drivers/amba/
671F: include/linux/amba/bus.h
672
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800673ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700674M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700675L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800676S: Maintained
677
Sergey Lapin9c784f92008-08-03 02:29:48 +0100678ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700679M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700680L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100681S: Maintained
682
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800683ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700684M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700685L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800686S: Maintained
687
Maxime Ripard1b106692012-11-15 21:51:26 +0100688ARM/Allwinner A1X SoC support
689M: Maxime Ripard <maxime.ripard@free-electrons.com>
690L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
691S: Maintained
692F: arch/arm/mach-sunxi/
693
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800694ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700695M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800696M: Nicolas Ferre <nicolas.ferre@atmel.com>
697M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700698L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200699W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800700W: http://www.linux4sam.org
701S: Supported
702F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100703
Rob Herring986cf2e2011-06-22 11:28:53 -0500704ARM/CALXEDA HIGHBANK ARCHITECTURE
705M: Rob Herring <rob.herring@calxeda.com>
706L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
707S: Maintained
708F: arch/arm/mach-highbank/
709
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300710ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
711M: Anton Vorontsov <avorontsov@mvista.com>
712S: Maintained
713F: arch/arm/mach-cns3xxx/
714T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
715
Alexander Shiyan386ab512012-11-17 17:57:24 +0400716ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
717M: Alexander Shiyan <shc_work@mail.ru>
718L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
719S: Odd Fixes
720F: arch/arm/mach-clps711x/
721
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800722ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100723M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000724M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700725L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800726S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100727F: arch/arm/mach-ep93xx/
728F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800729
730ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700731M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700732L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800733S: Maintained
734
Russell Kingd4275352009-04-16 14:05:27 +0100735ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700736M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700737L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700738S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100739F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700740F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100741
Mike Rapoportd48134e2008-08-20 09:03:26 +0100742ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700743M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700744L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100745S: Maintained
746
Hubert Feurstein94150092009-10-07 08:36:07 +0100747ARM/CONTEC MICRO9 MACHINE SUPPORT
748M: Hubert Feurstein <hubert.feurstein@contec.at>
749S: Maintained
750F: arch/arm/mach-ep93xx/micro9.c
751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700753M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754S: Maintained
755
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200756ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100757M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700758L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100759T: git git://git.berlios.de/gemini-board
760S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300761F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200762
Barry Songa990cbd2011-07-12 21:44:10 +0800763ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
764M: Barry Song <baohua.song@csr.com>
765L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
766S: Maintained
767F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800768F: drivers/dma/sirf-dma.c
769F: drivers/i2c/busses/i2c-sirf.c
770F: drivers/pinctrl/pinctrl-sirf.c
771F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800772
Russell Kingd4275352009-04-16 14:05:27 +0100773ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700774M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700775L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100776W: http://www.arm.linux.org.uk/
777S: Maintained
778F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700779F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100780
Russell Kinga9da4f72008-07-12 21:42:04 +0100781ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700782M: Daniel Ribeiro <drwyrm@gmail.com>
783M: Stefan Schmidt <stefan@openezx.org>
784M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200785L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100786W: http://www.openezx.org/
787S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200788T: topgit git://git.openezx.org/openezx.git
789F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100790
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200791ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100792M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700793L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100794S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700795T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300796F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200797
Russell Kingd4275352009-04-16 14:05:27 +0100798ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700799M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700800L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100801W: http://www.arm.linux.org.uk/
802S: Maintained
803F: arch/arm/include/asm/hardware/dec21285.h
804F: arch/arm/mach-footbridge/
805
Sascha Hauer86183a52008-07-24 23:50:35 +0200806ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700807M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700808L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200809S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700810T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100811F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700812F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200813
Shawn Guo8bcb9762011-10-07 22:24:18 +0800814ARM/FREESCALE IMX6
815M: Shawn Guo <shawn.guo@linaro.org>
816L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
817S: Maintained
818T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
819F: arch/arm/mach-imx/*imx6*
820
Shawn Guoa9866a092011-10-21 11:53:34 +0800821ARM/FREESCALE MXS ARM ARCHITECTURE
822M: Shawn Guo <shawn.guo@linaro.org>
823L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
824S: Maintained
825T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
826F: arch/arm/mach-mxs/
827
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800828ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700829M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700830L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800831S: Maintained
832
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100833ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700834M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700835L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100836S: Maintained
837
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200838ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700839M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100840M: Paul Parsons <lost.distance@yahoo.com>
841L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200842S: Maintained
843F: arch/arm/mach-pxa/hx4700.c
844F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100845F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200846
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100847ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700848M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200849W: www.jlime.com
850S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700851T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
852F: arch/arm/mach-sa1100/jornada720.c
853F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100854
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200855ARM/IGEP MACHINE SUPPORT
856M: Enric Balletbo i Serra <eballetbo@gmail.com>
857M: Javier Martinez Canillas <javier@dowhile0.org>
858L: linux-omap@vger.kernel.org
859L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
860S: Maintained
861F: arch/arm/mach-omap2/board-igep0020.c
862
Marek Vasut403d2972010-05-22 00:29:39 +0200863ARM/INCOME PXA270 SUPPORT
864M: Marek Vasut <marek.vasut@gmail.com>
865L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
866S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700867F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200868
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800869ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700870M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700871M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700872L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700873S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100874
875ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700876M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700877L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700878S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800879
880ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700881M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700882M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700883L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700884S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800885
886ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700887M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700888M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700889L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700890S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800891
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800892ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700893M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700894L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800895S: Maintained
896
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200897ARM/INTEL IXP4XX ARM ARCHITECTURE
898M: Imre Kaloz <kaloz@openwrt.org>
899M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100900L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200901S: Maintained
902F: arch/arm/mach-ixp4xx/
903
Joe Perches838553c2010-10-26 14:22:59 -0700904ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100905M: Jonathan Cameron <jic23@cam.ac.uk>
906L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
907S: Maintained
908F: arch/arm/mach-pxa/stargate2.c
909F: drivers/pcmcia/pxa2xx_stargate2.c
910
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800911ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700912M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700913M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700914L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700915S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800916
917ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700918M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700919L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800920S: Maintained
921
922ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700923M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700924L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800925S: Maintained
926
Philipp Zabel3b8861712008-07-09 21:27:15 +0100927ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700928M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100929S: Maintained
930
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200931ARM/Marvell Armada 370 and Armada XP SOC support
932M: Jason Cooper <jason@lakedaemon.net>
933M: Andrew Lunn <andrew@lunn.ch>
934M: Gregory Clement <gregory.clement@free-electrons.com>
935L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
936S: Maintained
937F: arch/arm/mach-mvebu/
938
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400939ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
940M: Jason Cooper <jason@lakedaemon.net>
941M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700942L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400943S: Maintained
944F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400945F: arch/arm/mach-kirkwood/
946F: arch/arm/mach-mv78xx0/
947F: arch/arm/mach-orion5x/
948F: arch/arm/plat-orion/
949
Alexander Clouterd69ac132011-04-14 15:22:02 -0700950ARM/Orion SoC/Technologic Systems TS-78xx platform support
951M: Alexander Clouter <alex@digriz.org.uk>
952L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
953W: http://www.digriz.org.uk/ts78xx/kernel
954S: Maintained
955F: arch/arm/mach-orion5x/ts78xx-*
956
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000957ARM/MICREL KS8695 ARCHITECTURE
958M: Greg Ungerer <gerg@uclinux.org>
959L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
960F: arch/arm/mach-ks8695
961S: Odd Fixes
962
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200963ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700964M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700965L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200966F: arch/arm/mach-pxa/mioa701.c
967S: Maintained
968
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100969ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700970M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100971S: Maintained
972
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100973ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700974M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200975M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700976M: STEricsson <STEricsson_nomadik_linux@list.st.com>
977L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
978S: Maintained
979F: arch/arm/mach-nomadik/
980F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100981F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200982T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100983
Andy Green9d762952009-05-19 06:41:42 -0300984ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700985M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300986L: openmoko-kernel@lists.openmoko.org (subscribers-only)
987W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
988S: Supported
989
Daniel Walker0c19d212009-12-07 16:53:51 -0800990ARM/QUALCOMM MSM MACHINE SUPPORT
991M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -0800992M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -0800993M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -0800994L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -0800995F: arch/arm/mach-msm/
996F: drivers/video/msm/
997F: drivers/mmc/host/msm_sdcc.c
998F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800999F: drivers/tty/serial/msm_serial.h
1000F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -07001001F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001002F: drivers/*/pm8???-*
1003F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001004T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001005S: Maintained
1006
Dirk Opfer8459c152005-11-06 14:27:52 +00001007ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001008M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1009M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001010S: Maintained
1011
Marek Vasut5d783a22009-07-16 13:26:48 +02001012ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001013M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001014L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001015W: http://hackndev.com
1016S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001017F: arch/arm/mach-pxa/include/mach/palmtx.h
1018F: arch/arm/mach-pxa/palmtx.c
1019F: arch/arm/mach-pxa/include/mach/palmt5.h
1020F: arch/arm/mach-pxa/palmt5.c
1021F: arch/arm/mach-pxa/include/mach/palmld.h
1022F: arch/arm/mach-pxa/palmld.c
1023F: arch/arm/mach-pxa/include/mach/palmte2.h
1024F: arch/arm/mach-pxa/palmte2.c
1025F: arch/arm/mach-pxa/include/mach/palmtc.h
1026F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001027
Joe Perchesb57fe922009-12-14 18:00:52 -08001028ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001029M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001030L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001031W: http://hackndev.com
1032S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001033F: arch/arm/mach-pxa/include/mach/palmtreo.h
1034F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001035
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001036ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001037M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001038L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001039W: http://hackndev.com
1040S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001041F: arch/arm/mach-pxa/include/mach/palmz72.h
1042F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001045M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1047S: Maintained
1048
1049ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001050M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001051L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052W: http://www.arm.linux.org.uk/
1053S: Maintained
1054
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001055ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001056M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001057L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001058S: Maintained
1059
Russell Kingd4275352009-04-16 14:05:27 +01001060ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001061M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001062L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001063W: http://www.arm.linux.org.uk/
1064S: Maintained
1065F: arch/arm/common/time-acorn.c
1066F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1067F: arch/arm/include/asm/hardware/ioc.h
1068F: arch/arm/include/asm/hardware/iomd.h
1069F: arch/arm/include/asm/hardware/memc.h
1070F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001071F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001072F: drivers/net/ethernet/i825xx/ether1*
1073F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001074F: drivers/scsi/arm/
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001077M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078W: http://www.shark-linux.de/shark.html
1079S: Maintained
1080
Ben Dooksb21477f2009-06-13 10:46:34 +01001081ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001082M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001083M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001084L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001085L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001086W: http://www.fluff.org/ben/linux/
1087S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001088F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001089F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001090F: arch/arm/plat-s5p/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001091F: arch/arm/mach-s3c24*/
1092F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001093F: drivers/*/*s3c2410*
1094F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001095F: drivers/spi/spi-s3c*
1096F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001098ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001099M: Kukjin Kim <kgene.kim@samsung.com>
1100L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1101L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1102S: Maintained
1103F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001104F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001105
Kyungmin Park10ffa962011-03-04 17:36:26 -08001106ARM/SAMSUNG MOBILE MACHINE SUPPORT
1107M: Kyungmin Park <kyungmin.park@samsung.com>
1108L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1109S: Maintained
1110F: arch/arm/mach-s5pv210/mach-aquila.c
1111F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001112F: arch/arm/mach-exynos/mach-universal_c210.c
1113F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001114
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001115ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1116M: Kyungmin Park <kyungmin.park@samsung.com>
1117M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1118L: linux-arm-kernel@lists.infradead.org
1119L: linux-media@vger.kernel.org
1120S: Maintained
1121F: arch/arm/plat-s5p/dev-fimc*
1122F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001123F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001124
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001125ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1126M: Kyungmin Park <kyungmin.park@samsung.com>
1127M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001128M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001129L: linux-arm-kernel@lists.infradead.org
1130L: linux-media@vger.kernel.org
1131S: Maintained
1132F: arch/arm/plat-s5p/dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001133F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001134
1135ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1136M: Kyungmin Park <kyungmin.park@samsung.com>
1137M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1138L: linux-arm-kernel@lists.infradead.org
1139L: linux-media@vger.kernel.org
1140S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001141F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001142
Paul Mundtd48d38e2010-02-08 12:50:24 +09001143ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001144M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001145M: Magnus Damm <magnus.damm@gmail.com>
1146L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001147W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001148Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001149T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001150S: Supported
1151F: arch/arm/mach-shmobile/
1152F: drivers/sh/
1153
Dinh Nguyen66314222012-07-18 16:07:18 -06001154ARM/SOCFPGA ARCHITECTURE
1155M: Dinh Nguyen <dinguyen@altera.com>
1156S: Maintained
1157F: arch/arm/mach-socfpga/
1158
1159ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1160M: Dinh Nguyen <dinguyen@altera.com>
1161S: Maintained
1162F: drivers/clk/socfpga/
1163
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001164ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001165M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001166L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001167S: Maintained
1168
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001169ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001170M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001171L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1172S: Maintained
1173
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001174ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001175M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001176L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001177S: Maintained
1178
wanzongshun98ad6e32009-02-13 06:04:32 +01001179ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001180M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001181L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001182W: http://www.mcuos.com
1183S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001184F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001185F: drivers/input/keyboard/w90p910_keypad.c
1186F: drivers/input/touchscreen/w90p910_ts.c
1187F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001188F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001189F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001190F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001191F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001192F: drivers/usb/host/ehci-w90x900.c
1193F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001194
Linus Walleij54274d72010-04-04 10:58:03 +01001195ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001196M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001197L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1198S: Supported
1199F: arch/arm/mach-u300/
1200F: drivers/i2c/busses/i2c-stu300.c
1201F: drivers/rtc/rtc-coh901331.c
1202F: drivers/watchdog/coh901327_wdt.c
1203F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001204F: drivers/mfd/ab3100*
1205F: drivers/rtc/rtc-ab3100.c
1206F: drivers/rtc/rtc-coh901331.c
1207T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001208
Linus Walleij87572882010-12-22 09:18:29 +01001209ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001210M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001211M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001212L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1213S: Maintained
1214F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001215F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001216F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001217F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001218F: drivers/mfd/abx500*
1219F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001220F: drivers/mfd/dbx500*
1221F: drivers/mfd/db8500*
1222F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001223F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001224F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001225T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001226
Russell Kingd4275352009-04-16 14:05:27 +01001227ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001228M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001229L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001230W: http://www.arm.linux.org.uk/
1231S: Maintained
1232F: arch/arm/vfp/
1233
Marek Vasute66b6d82010-03-26 06:51:32 +01001234ARM/VOIPAC PXA270 SUPPORT
1235M: Marek Vasut <marek.vasut@gmail.com>
1236L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1237S: Maintained
1238F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001239F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001240
Tony Prisk04529fe2012-07-24 04:19:37 +12001241ARM/VT8500 ARM ARCHITECTURE
1242M: Tony Prisk <linux@prisktech.co.nz>
1243L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1244S: Maintained
1245F: arch/arm/mach-vt8500/
1246F: drivers/video/vt8500lcdfb.*
1247F: drivers/video/wm8505fb*
1248F: drivers/video/wmt_ge_rops.*
1249F: drivers/tty/serial/vt8500_serial.c
1250F: drivers/rtc/rtc-vt8500-c
Tony Prisk3a96dff2012-11-18 15:33:06 +13001251F: drivers/mmc/host/wmt-sdmmc.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001252
Marek Vasute66b6d82010-03-26 06:51:32 +01001253ARM/ZIPIT Z2 SUPPORT
1254M: Marek Vasut <marek.vasut@gmail.com>
1255L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1256S: Maintained
1257F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001258F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001259
Catalin Marinas38074222012-03-05 11:49:34 +00001260ARM64 PORT (AARCH64 ARCHITECTURE)
1261M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001262M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001263L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1264S: Maintained
1265F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001266F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001267
George Josephd58de032010-03-05 22:17:25 +01001268ASC7621 HARDWARE MONITOR DRIVER
1269M: George Joseph <george.joseph@fairview5.com>
1270L: lm-sensors@lm-sensors.org
1271S: Maintained
1272F: Documentation/hwmon/asc7621
1273F: drivers/hwmon/asc7621.c
1274
Corentin Charyb229ece2011-02-26 10:20:40 +01001275ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001276M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001278L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001279W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001281F: drivers/platform/x86/asus*.c
1282F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001284ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001285M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001286L: lm-sensors@lm-sensors.org
1287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001288F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001289
Andrew Morton953a6472008-11-06 12:53:28 -08001290ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001291M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001292W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001294F: Documentation/crypto/async-tx-api.txt
1295F: crypto/async_tx/
1296F: drivers/dma/
1297F: include/linux/dmaengine.h
1298F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001299
Wolfram Sanga1867d32009-09-18 22:45:51 +02001300AT24 EEPROM DRIVER
1301M: Wolfram Sang <w.sang@pengutronix.de>
1302L: linux-i2c@vger.kernel.org
1303S: Maintained
1304F: drivers/misc/eeprom/at24.c
1305F: include/linux/i2c/at24.h
1306
Randy Dunlape7839f22008-10-12 16:11:45 -07001307ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001308M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001309W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001311F: Documentation/aoe/
1312F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Joe Perches9a10a872010-12-01 09:37:55 -08001314ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001315M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001316L: linux-wireless@vger.kernel.org
1317S: Supported
1318F: drivers/net/wireless/ath/*
1319
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001320ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001321M: Jiri Slaby <jirislaby@gmail.com>
1322M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001323M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001324L: linux-wireless@vger.kernel.org
1325L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001326W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001327S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001328F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001329
Kalle Valo12e62d62011-09-13 10:21:25 +03001330ATHEROS ATH6KL WIRELESS DRIVER
1331M: Kalle Valo <kvalo@qca.qualcomm.com>
1332L: linux-wireless@vger.kernel.org
1333W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1334T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1335S: Supported
1336F: drivers/net/wireless/ath/ath6kl/
1337
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001338ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001339M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1340M: Jouni Malinen <jouni@qca.qualcomm.com>
1341M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1342M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001343L: linux-wireless@vger.kernel.org
1344L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001345W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001346S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001347F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001348
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001349CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1350M: Christian Lamparter <chunkeey@googlemail.com>
1351L: linux-wireless@vger.kernel.org
1352W: http://wireless.kernel.org/en/users/Drivers/carl9170
1353S: Maintained
1354F: drivers/net/wireless/ath/carl9170/
1355
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001356ATK0110 HWMON DRIVER
1357M: Luca Tettamanti <kronos.it@gmail.com>
1358L: lm-sensors@lm-sensors.org
1359S: Maintained
1360F: drivers/hwmon/asus_atk0110.c
1361
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001362ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001363M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001365F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001366
Chris Snook7ae115b2008-09-09 03:26:57 -04001367ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001368M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001369M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001370L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001371W: http://sourceforge.net/projects/atl1
1372W: http://atl1.sourceforge.net
1373S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001374F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001377M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001378L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001379L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380W: http://linux-atm.sourceforge.net
1381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001382F: drivers/atm/
1383F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001385ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001386M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001387S: Maintained
1388F: drivers/mmc/host/atmel-mci.c
1389F: drivers/mmc/host/atmel-mci-regs.h
1390
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001391ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001392M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001393S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001394F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001395
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001396ATMEL DMA DRIVER
1397M: Nicolas Ferre <nicolas.ferre@atmel.com>
1398L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1399S: Supported
1400F: drivers/dma/at_hdmac.c
1401F: drivers/dma/at_hdmac_regs.h
1402F: arch/arm/mach-at91/include/mach/at_hdmac.h
1403
Josh Wu15515542012-03-23 17:56:29 +08001404ATMEL ISI DRIVER
1405M: Josh Wu <josh.wu@atmel.com>
1406L: linux-media@vger.kernel.org
1407S: Supported
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001408F: drivers/media/platform/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001409F: include/media/atmel-isi.h
1410
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001411ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001412M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001413L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001415F: drivers/video/atmel_lcdfb.c
1416F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001417
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001418ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001419M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001420S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001421F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001422
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001423ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001424M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001425S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001426F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001427
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001428ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1429M: Nicolas Ferre <nicolas.ferre@atmel.com>
1430L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1431S: Supported
1432F: drivers/misc/atmel_tclib.c
1433F: drivers/clocksource/tcb_clksrc.c
1434
Josh Wuff2675d2012-03-23 17:56:55 +08001435ATMEL TSADCC DRIVER
1436M: Josh Wu <josh.wu@atmel.com>
1437L: linux-input@vger.kernel.org
1438S: Supported
1439F: drivers/input/touchscreen/atmel_tsadcc.c
1440
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001441ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001442M: Nicolas Ferre <nicolas.ferre@atmel.com>
1443L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001444S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001445F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001448M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001449L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450W: http://www.thekelleys.org.uk/atmel
1451W: http://atmelwlandriver.sourceforge.net/
1452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001453F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Chris Wrighta92b7b82005-07-07 18:12:23 -07001455AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001456M: Al Viro <viro@zeniv.linux.org.uk>
1457M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001458L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001459W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001460T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001462F: include/linux/audit.h
1463F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001464
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001465AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001466M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001467W: http://miguelojeda.es/auxdisplay.htm
1468W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001470F: drivers/auxdisplay/
1471F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001472
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001473AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001474M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1475M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001476W: http://www.atmel.com/products/AVR32/
1477W: http://avr32linux.org/
1478W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001480F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001481
1482AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001483M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1484M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001486F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001489M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001491W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001493F: include/linux/ax25.h
1494F: include/net/ax25.h
1495F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001497B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001498M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001499L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001500L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001501W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001503F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001504
1505B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001506M: Larry Finger <Larry.Finger@lwfinger.net>
1507M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001508L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001509L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001510W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001512F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001513
Richard Purdie300abeb2007-02-07 22:21:07 +00001514BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001515M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001517F: drivers/video/backlight/
1518F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001519
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001520BATMAN ADVANCED
1521M: Marek Lindner <lindner_marek@yahoo.de>
1522M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001523M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001524L: b.a.t.m.a.n@lists.open-mesh.org
1525W: http://www.open-mesh.org/
1526S: Maintained
1527F: net/batman-adv/
1528
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001529BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001530M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001531L: linux-hams@vger.kernel.org
1532W: http://www.baycom.org/~tom/ham/ham.html
1533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001534F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001535
1536BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001537S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001538F: Documentation/filesystems/befs.txt
1539F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001540
1541BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001542M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001544F: Documentation/filesystems/bfs.txt
1545F: fs/bfs/
1546F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001547
Bryan Wu1394f032007-05-06 14:50:22 -07001548BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001549M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001550L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001551W: http://blackfin.uclinux.org
1552S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001553F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001554
Bryan Wue190d6b2007-07-17 14:43:44 +08001555BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001556L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001557W: http://blackfin.uclinux.org
1558S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001559F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001560
Mike Frysinger566da5b2007-06-11 15:31:30 +08001561BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001562M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001563L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001564W: http://blackfin.uclinux.org
1565S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001566F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001567
Mike Frysinger936ed492010-03-10 15:20:38 -08001568BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001569M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001570L: uclinux-dist-devel@blackfin.uclinux.org
1571W: http://blackfin.uclinux.org
1572S: Supported
1573F: drivers/mmc/host/bfin_sdh.c
1574
Bryan Wu1394f032007-05-06 14:50:22 -07001575BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001576M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001577L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001578W: http://blackfin.uclinux.org
1579S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001580F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001581
Bryan Wu1e6d3202007-07-15 02:50:02 +08001582BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001583M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001584L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001585W: http://blackfin.uclinux.org
1586S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001587F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001588
Bryan Wud24ecfc2007-05-01 23:26:32 +02001589BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001590M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001591L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001592W: http://blackfin.uclinux.org/
1593S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001594F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001595
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001596BLINKM RGB LED DRIVER
1597M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1598S: Maintained
1599F: drivers/leds/leds-blinkm.c
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001602M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001603T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001605F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Joern Engel2b54aae2008-02-06 01:38:02 -08001607BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001608M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001609L: linux-mtd@lists.infradead.org
1610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001611F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001612
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001613BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001614M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001615M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001616M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001617L: linux-bluetooth@vger.kernel.org
1618W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001619T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1620T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001622F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001623
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001625M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001626M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001627M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001628L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001629W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001630T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1631T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001633F: net/bluetooth/
1634F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001637M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001638M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001639L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001640W: http://sourceforge.net/projects/bonding/
1641S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001642F: drivers/net/bonding/
1643F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Gary Zambrano39105892006-06-22 17:26:20 -07001645BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001646M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001647L: netdev@vger.kernel.org
1648S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001649F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001650
Michael Chan948c51e2006-06-04 02:51:39 -07001651BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001652M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001653L: netdev@vger.kernel.org
1654S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001655F: drivers/net/ethernet/broadcom/bnx2.*
1656F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001657
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001658BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001659M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001660L: netdev@vger.kernel.org
1661S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001662F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001663
Stephen Warrenf680f252012-09-15 00:18:54 -06001664BROADCOM BCM2835 ARM ARCHICTURE
1665M: Stephen Warren <swarren@wwwdotorg.org>
1666L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1667T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1668S: Maintained
1669F: arch/arm/mach-bcm2835/
1670F: arch/arm/boot/dts/bcm2835*
1671F: arch/arm/configs/bcm2835_defconfig
1672F: drivers/*/*bcm2835*
1673
Michael Chan948c51e2006-06-04 02:51:39 -07001674BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001675M: Matt Carlson <mcarlson@broadcom.com>
1676M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001677L: netdev@vger.kernel.org
1678S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001679F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001680
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001681BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1682M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001683M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001684M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001685M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001686L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001687L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001688S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001689F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001690
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001691BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1692M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1693L: linux-scsi@vger.kernel.org
1694S: Supported
1695F: drivers/scsi/bnx2fc/
1696
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001697BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1698M: Rafał Miłecki <zajec5@gmail.com>
1699L: linux-wireless@vger.kernel.org
1700S: Maintained
1701F: drivers/bcma/
1702F: include/linux/bcma/
1703
Jing Huang7725ccf2009-09-23 17:46:15 -07001704BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001705M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001706L: linux-scsi@vger.kernel.org
1707S: Supported
1708F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001709
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001710BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1711M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001712L: netdev@vger.kernel.org
1713S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001714F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001715
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001716BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001717M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001718L: linux-scsi@vger.kernel.org
1719S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001720F: block/bsg.c
1721F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001722
Clemens Ladischaf399172011-01-10 16:32:54 +01001723BT87X AUDIO DRIVER
1724M: Clemens Ladisch <clemens@ladisch.de>
1725L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1726T: git git://git.alsa-project.org/alsa-kernel.git
1727S: Maintained
1728F: Documentation/sound/alsa/Bt87x.txt
1729F: sound/pci/bt87x.c
1730
Michael Bueschff1d5c22008-07-25 01:46:10 -07001731BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001732M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001733W: http://bu3sch.de/btgpio.php
1734S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001735F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001736
Joe Percheseb1eb042009-01-21 10:49:16 -05001737BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001738M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001739L: linux-btrfs@vger.kernel.org
1740W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001741Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001742T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001744F: Documentation/filesystems/btrfs.txt
1745F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001748M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001749L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001750W: http://linuxtv.org
Joe Perches08deed12012-03-23 15:01:57 -07001751T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001753F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001754F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Clemens Ladischaf399172011-01-10 16:32:54 +01001756C-MEDIA CMI8788 DRIVER
1757M: Clemens Ladisch <clemens@ladisch.de>
1758L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1759T: git git://git.alsa-project.org/alsa-kernel.git
1760S: Maintained
1761F: sound/pci/oxygen/
1762
Mark Salter21413552011-10-04 11:21:42 -04001763C6X ARCHITECTURE
1764M: Mark Salter <msalter@redhat.com>
1765M: Aurelien Jacquiot <a-jacquiot@ti.com>
1766L: linux-c6x-dev@linux-c6x.org
1767W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1768S: Maintained
1769F: arch/c6x/
1770
David Howellsa5432f52009-04-20 15:46:45 +01001771CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001772M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001773L: linux-cachefs@redhat.com
1774S: Supported
1775F: Documentation/filesystems/caching/cachefiles.txt
1776F: fs/cachefiles/
1777
Jonathan Corbet77d51402007-03-22 19:44:17 -03001778CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001779M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001780L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07001781T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001783F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001784F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001785
Joe Perches201b6ba2010-09-07 20:33:24 +00001786CAIF NETWORK LAYER
1787M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1788L: netdev@vger.kernel.org
1789S: Supported
1790F: Documentation/networking/caif/
1791F: drivers/net/caif/
1792F: include/linux/caif/
1793F: include/net/caif/
1794F: net/caif/
1795
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001796CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001797M: Muli Ben-Yehuda <muli@il.ibm.com>
1798M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001799L: discuss@x86-64.org
1800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001801F: arch/x86/kernel/pci-calgary_64.c
1802F: arch/x86/kernel/tce_64.c
1803F: arch/x86/include/asm/calgary.h
1804F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001805
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001806CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001807M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001808L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001809W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001810T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001811S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001812F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001813F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001814F: include/linux/can/core.h
1815F: include/linux/can/bcm.h
1816F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001817F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001818
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001819CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001820M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001821M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001822L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001823W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001824T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001825S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001826F: drivers/net/can/
1827F: include/linux/can/dev.h
1828F: include/linux/can/error.h
1829F: include/linux/can/netlink.h
1830F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001831
James Morris95d16c72012-03-16 12:05:48 +11001832CAPABILITIES
1833M: Serge Hallyn <serge.hallyn@canonical.com>
1834L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001835S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001836F: include/linux/capability.h
1837F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001838F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001839F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001840
Arnd Bergmannb8154542008-05-16 11:10:59 +02001841CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001842M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001843L: linuxppc-dev@lists.ozlabs.org
1844L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001845W: http://www.ibm.com/developerworks/power/cell/
1846S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001847F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001848F: arch/powerpc/include/asm/spu*.h
1849F: arch/powerpc/oprofile/*cell*
1850F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001851
Sage Weil9030aaf2009-10-06 11:31:15 -07001852CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001853M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001854L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001855W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001856T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001857S: Supported
1858F: Documentation/filesystems/ceph.txt
1859F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001860F: net/ceph
1861F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001862F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001863
David Vrabel18332a82008-09-17 16:34:44 +01001864CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001865L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001866S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001867F: Documentation/usb/WUSB-Design-overview.txt
1868F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001869F: drivers/usb/host/hwa-hc.c
1870F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001871F: drivers/usb/wusbcore/
1872F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001873
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001874CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001875M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001876W: http://miguelojeda.es/auxdisplay.htm
1877W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001879F: drivers/auxdisplay/cfag12864b.c
1880F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001881
1882CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001883M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001884W: http://miguelojeda.es/auxdisplay.htm
1885W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001887F: drivers/auxdisplay/cfag12864bfb.c
1888F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001889
Johannes Berg704232c2007-04-23 12:20:05 -07001890CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001891M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001892L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001893W: http://wireless.kernel.org/
1894T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1895T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001897F: include/linux/nl80211.h
1898F: include/net/cfg80211.h
1899F: net/wireless/*
1900X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001901
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001902CHAR and MISC DRIVERS
1903M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001904M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001905T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001906S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001907F: drivers/char/*
1908F: drivers/misc/*
1909
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001910CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001911M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001912S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001913F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001914
Harry Weif8407f262011-02-25 14:44:15 -08001915CHINESE DOCUMENTATION
1916M: Harry Wei <harryxiyou@gmail.com>
1917L: xiyoulinuxkernelgroup@googlegroups.com
1918L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1919S: Maintained
1920F: Documentation/zh_CN/
1921
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001922CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1923M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1924L: linux-usb@vger.kernel.org
1925S: Maintained
1926F: drivers/usb/chipidea/
1927
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001928CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001929M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001930M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001931M: Neel Patel <neepatel@cisco.com>
1932M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001933S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001934F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001935
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001936CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001937M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001938L: netdev@vger.kernel.org
1939S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001940F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001941
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001942CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001943M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001944L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001946F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001947
Timur Tabid9e9d822008-04-24 08:45:26 +10001948CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001949M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001950L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001951S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001952F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001953
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001954CLEANCACHE API
1955M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1956L: linux-kernel@vger.kernel.org
1957S: Maintained
1958F: mm/cleancache.c
1959F: include/linux/cleancache.h
1960
Russell Kingd4275352009-04-16 14:05:27 +01001961CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001962M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001963S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001964F: include/linux/clk.h
1965
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001966CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001967M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001968M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1969M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001970L: linux-scsi@vger.kernel.org
1971S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001972F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001973
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001974CMPC ACPI DRIVER
1975M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1976M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001977L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001978S: Supported
1979F: drivers/platform/x86/classmate-laptop.c
1980
Nicolas Palix74425ee2010-06-06 17:15:01 +02001981COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02001982M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02001983M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02001984M: Nicolas Palix <nicolas.palix@imag.fr>
1985L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02001986W: http://coccinelle.lip6.fr/
1987S: Supported
1988F: scripts/coccinelle/
1989F: scripts/coccicheck
1990
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001992M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993M: coda@cs.cmu.edu
1994L: codalist@coda.cs.cmu.edu
1995W: http://www.coda.cs.cmu.edu/
1996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001997F: Documentation/filesystems/coda.txt
1998F: fs/coda/
1999F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Mike Turquette7704add2012-05-02 18:37:45 -07002001COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002002M: Mike Turquette <mturquette@linaro.org>
2003L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2004T: git git://git.linaro.org/people/mturquette/linux.git
2005S: Maintained
2006F: drivers/clk/clk.c
2007F: drivers/clk/clk-*
2008F: include/linux/clk-pr*
2009
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002010COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002011M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002012L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002013L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002014W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002015Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002016T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002017S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002018F: Documentation/filesystems/cifs.txt
2019F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002022M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002023L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002025F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
2027COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002028M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002029L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002031F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
2033COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002034M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002035L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002037F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002039COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002040M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002041L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002043F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002044
Simon Arlott949be0f2007-03-06 02:47:46 -08002045CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002046M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002047L: accessrunner-general@lists.sourceforge.net
2048W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002050F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002051
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002052CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002053M: Joel Becker <jlbec@evilplan.org>
2054T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002055S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002056F: fs/configfs/
2057F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002058
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002059CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002060M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002061L: netdev@vger.kernel.org
2062S: Maintained
2063F: drivers/connector/
2064
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002065CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002066M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002067M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002068L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002069L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002070T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002072F: include/linux/cgroup*
2073F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002074F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002075
Rudolf Marekbebe4672007-05-08 17:22:02 +02002076CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002077M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002078L: lm-sensors@lm-sensors.org
2079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002080F: Documentation/hwmon/coretemp
2081F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002082
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002084M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085W: http://www.fi.muni.cz/~kas/cosa/
2086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002087F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Florian Fainelli4371ee32009-06-01 02:43:17 -07002089CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002090M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002091L: netdev@vger.kernel.org
2092S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002093F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002096M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002097L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002098L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002100F: drivers/cpufreq/
2101F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
2103CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002104M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002106F: arch/x86/kernel/cpuid.c
2107F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002109CPU POWER MONITORING SUBSYSTEM
2110M: Dominik Brodowski <linux@dominikbrodowski.net>
2111M: Thomas Renninger <trenn@suse.de>
2112S: Maintained
2113F: tools/power/cpupower
2114
Paul Jacksoned90fb42005-09-27 21:45:37 -07002115CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002116M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002117W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002118W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07002119S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002120F: Documentation/cgroups/cpusets.txt
2121F: include/linux/cpuset.h
2122F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002125W: http://sourceforge.net/projects/cramfs/
2126S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002127F: Documentation/filesystems/cramfs.txt
2128F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
2130CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002131M: Mikael Starvik <starvik@axis.com>
2132M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002133L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134W: http://developer.axis.com
2135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002136F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002137F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
2139CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002140M: Herbert Xu <herbert@gondor.apana.org.au>
2141M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002143T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002145F: Documentation/crypto/
2146F: arch/*/crypto/
2147F: crypto/
2148F: drivers/crypto/
2149F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
Neil Horman5b07bd52009-02-05 16:03:04 +11002151CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002152M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002153L: linux-crypto@vger.kernel.org
2154S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002155F: crypto/ansi_cprng.c
2156F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002157
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002158CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002159M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002161F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002162
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002163CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002164M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002165L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002166L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07002167T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002168W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002169W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002171F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002172F: drivers/media/pci/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002173
Antti Palosaari91952bc2012-10-01 12:28:46 -03002174CXD2820R MEDIA DRIVER
2175M: Antti Palosaari <crope@iki.fi>
2176L: linux-media@vger.kernel.org
2177W: http://linuxtv.org/
2178W: http://palosaari.fi/linux/
2179Q: http://patchwork.linuxtv.org/project/linux-media/list/
2180T: git git://linuxtv.org/anttip/media_tree.git
2181S: Maintained
2182F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002183
Steve Wisee5ec3782008-05-20 14:06:33 -07002184CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002185M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002186L: netdev@vger.kernel.org
2187W: http://www.chelsio.com
2188S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002189F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002190
2191CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002192M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002193L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002194W: http://www.openfabrics.org
2195S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002196F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002197
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002198CXGB4 ETHERNET DRIVER (CXGB4)
2199M: Dimitris Michailidis <dm@chelsio.com>
2200L: netdev@vger.kernel.org
2201W: http://www.chelsio.com
2202S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002203F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002204
2205CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2206M: Steve Wise <swise@chelsio.com>
2207L: linux-rdma@vger.kernel.org
2208W: http://www.openfabrics.org
2209S: Supported
2210F: drivers/infiniband/hw/cxgb4/
2211
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002212CXGB4VF ETHERNET DRIVER (CXGB4VF)
2213M: Casey Leedom <leedom@chelsio.com>
2214L: netdev@vger.kernel.org
2215W: http://www.chelsio.com
2216S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002217F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002218
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002219STMMAC ETHERNET DRIVER
2220M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2221L: netdev@vger.kernel.org
2222W: http://www.stlinux.com
2223S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002224F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002225
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002227M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002228L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229W: http://www.arm.linux.org.uk/
2230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002231F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002232
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002234M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002235W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002237F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
2239CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002241S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002242F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002243F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
2245CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002247S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002248F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002250CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002251M: Javier Martinez Canillas <javier@dowhile0.org>
2252L: linux-input@vger.kernel.org
2253S: Maintained
2254F: drivers/input/touchscreen/cyttsp*
2255F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002256
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002258M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259W: http://yaina.de/jreuter/
2260W: http://www.qsl.net/dl1bke/
2261L: linux-hams@vger.kernel.org
2262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002263F: net/ax25/af_ax25.c
2264F: net/ax25/ax25_dev.c
2265F: net/ax25/ax25_ds_*
2266F: net/ax25/ax25_in.c
2267F: net/ax25/ax25_out.c
2268F: net/ax25/ax25_timer.c
2269F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002271DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002272L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002273S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002274F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002275F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002276
2277DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002278M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002279W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002280M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002282F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002283
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002285M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002286M: Ali Akcaagac <aliakc@web.de>
2287M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002289L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290L: http://lists.twibble.org/mailman/listinfo/dc395x/
2291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002292F: Documentation/scsi/dc395x.txt
2293F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002295DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002296M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002297L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002298W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002300F: include/linux/dccp.h
2301F: include/linux/tfrc.h
2302F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002303
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305W: http://linux-decnet.sourceforge.net
2306L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002307S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002308F: Documentation/networking/decnet.txt
2309F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
2311DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002312M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002314F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002316DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002317M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002318L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002320F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002321
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002323M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324W: http://www.debian.org/~dz/i8k/
2325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002326F: drivers/char/i8k.c
2327F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
Doug Warzecha90563ec2005-09-06 15:17:15 -07002329DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002330M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002332F: Documentation/dcdbas.txt
2333F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002334
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002335DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002336M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002337S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002338F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002339
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002340DESIGNWARE USB3 DRD IP DRIVER
2341M: Felipe Balbi <balbi@ti.com>
2342L: linux-usb@vger.kernel.org
2343L: linux-omap@vger.kernel.org
2344T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2345S: Maintained
2346F: drivers/usb/dwc3/
2347
Kyungmin Park89d07762012-01-10 15:09:09 -08002348DEVICE FREQUENCY (DEVFREQ)
2349M: MyungJoo Ham <myungjoo.ham@samsung.com>
2350M: Kyungmin Park <kyungmin.park@samsung.com>
2351L: linux-kernel@vger.kernel.org
2352S: Maintained
2353F: drivers/devfreq/
2354
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002356M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358S: Maintained
2359
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002360DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002361M: Alasdair Kergon <agk@redhat.com>
2362M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002363L: dm-devel@redhat.com
2364W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002365Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002366T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002368F: Documentation/device-mapper/
2369F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002370F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002371F: include/linux/device-mapper.h
2372F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002373
Guenter Roeck335d7c52011-01-26 11:45:49 -08002374DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002375M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002376L: linux-i2c@vger.kernel.org
2377S: Maintained
2378F: drivers/i2c/busses/i2c-diolan-u2c.c
2379
Randy Dunlape7839f22008-10-12 16:11:45 -07002380DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002381M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002383F: Documentation/filesystems/dnotify.txt
2384F: fs/notify/dnotify/
2385F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
2387DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002388M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2390W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2391W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2392S: Maintained
2393
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002394DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002395M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002397F: Documentation/filesystems/quota.txt
2398F: fs/quota/
2399F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
Bernie Thompson702686a2012-03-01 13:52:13 -08002401DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2402M: Bernie Thompson <bernie@plugable.com>
2403L: linux-fbdev@vger.kernel.org
2404S: Maintained
2405W: http://plugable.com/category/projects/udlfb/
2406F: drivers/video/udlfb.c
2407F: include/video/udlfb.h
2408F: Documentation/fb/udlfb.txt
2409
Randy Dunlape7839f22008-10-12 16:11:45 -07002410DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002411M: Christine Caulfield <ccaulfie@redhat.com>
2412M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002413L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002414W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002415T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002416S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002417F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002418
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302419DMA BUFFER SHARING FRAMEWORK
2420M: Sumit Semwal <sumit.semwal@linaro.org>
2421S: Maintained
2422L: linux-media@vger.kernel.org
2423L: dri-devel@lists.freedesktop.org
2424L: linaro-mm-sig@lists.linaro.org
2425F: drivers/base/dma-buf*
2426F: include/linux/dma-buf*
2427F: Documentation/dma-buf-sharing.txt
2428T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2429
Dan Williamsb3e5f262007-08-07 10:26:35 -07002430DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002431M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002432M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002433S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002434F: drivers/dma/
2435F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302436T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2437T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002438
Juerg Haefligerb8250372007-06-09 10:11:16 -04002439DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002440M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002441L: lm-sensors@lm-sensors.org
2442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002443F: Documentation/hwmon/dme1737
2444F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002445
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002446DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002447M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002448L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002449S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002450F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002451
Joe Perches7d2c86b2009-04-07 20:59:01 -07002452DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002453M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002454L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002455T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002457F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002458
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002460M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461L: blinux-list@redhat.com
2462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002463F: drivers/char/dtlk.c
2464F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002466DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002467M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002468L: linux-scsi@vger.kernel.org
2469W: http://www.adaptec.com/
2470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002471F: drivers/scsi/dpt*
2472F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002473
Philipp Reisnerb411b362009-09-25 16:07:19 -07002474DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002475P: Philipp Reisner
2476P: Lars Ellenberg
2477M: drbd-dev@lists.linbit.com
2478L: drbd-user@lists.linbit.com
2479W: http://www.drbd.org
2480T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2481T: git git://git.drbd.org/drbd-8.3.git
2482S: Supported
2483F: drivers/block/drbd/
2484F: lib/lru_cache.c
2485F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002486
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002487DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002488M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002489T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002491F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002492F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002493F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002494F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002495F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002496F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002497F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
2499DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002500M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002501L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002502T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002504F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002505F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
Chris Wilson8daf7472010-09-28 14:07:26 +01002507INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002508M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002509L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002510L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002511T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002512S: Supported
2513F: drivers/gpu/drm/i915
2514F: include/drm/i915*
2515
Kyungmin Park398a6d42011-11-02 11:33:16 +09002516DRM DRIVERS FOR EXYNOS
2517M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002518M: Joonyoung Shim <jy0922.shim@samsung.com>
2519M: Seung-Woo Kim <sw0312.kim@samsung.com>
2520M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002521L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002522T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002523S: Supported
2524F: drivers/gpu/drm/exynos
2525F: include/drm/exynos*
2526
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002528M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002529L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002531F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
Antti Palosaari91952bc2012-10-01 12:28:46 -03002533DVB_USB_AF9015 MEDIA DRIVER
2534M: Antti Palosaari <crope@iki.fi>
2535L: linux-media@vger.kernel.org
2536W: http://linuxtv.org/
2537W: http://palosaari.fi/linux/
2538Q: http://patchwork.linuxtv.org/project/linux-media/list/
2539T: git git://linuxtv.org/anttip/media_tree.git
2540S: Maintained
2541F: drivers/media/usb/dvb-usb-v2/af9015*
2542
2543DVB_USB_AF9035 MEDIA DRIVER
2544M: Antti Palosaari <crope@iki.fi>
2545L: linux-media@vger.kernel.org
2546W: http://linuxtv.org/
2547W: http://palosaari.fi/linux/
2548Q: http://patchwork.linuxtv.org/project/linux-media/list/
2549T: git git://linuxtv.org/anttip/media_tree.git
2550S: Maintained
2551F: drivers/media/usb/dvb-usb-v2/af9035*
2552
2553DVB_USB_ANYSEE MEDIA DRIVER
2554M: Antti Palosaari <crope@iki.fi>
2555L: linux-media@vger.kernel.org
2556W: http://linuxtv.org/
2557W: http://palosaari.fi/linux/
2558Q: http://patchwork.linuxtv.org/project/linux-media/list/
2559T: git git://linuxtv.org/anttip/media_tree.git
2560S: Maintained
2561F: drivers/media/usb/dvb-usb-v2/anysee*
2562
2563DVB_USB_AU6610 MEDIA DRIVER
2564M: Antti Palosaari <crope@iki.fi>
2565L: linux-media@vger.kernel.org
2566W: http://linuxtv.org/
2567W: http://palosaari.fi/linux/
2568Q: http://patchwork.linuxtv.org/project/linux-media/list/
2569T: git git://linuxtv.org/anttip/media_tree.git
2570S: Maintained
2571F: drivers/media/usb/dvb-usb-v2/au6610*
2572
2573DVB_USB_CE6230 MEDIA DRIVER
2574M: Antti Palosaari <crope@iki.fi>
2575L: linux-media@vger.kernel.org
2576W: http://linuxtv.org/
2577W: http://palosaari.fi/linux/
2578Q: http://patchwork.linuxtv.org/project/linux-media/list/
2579T: git git://linuxtv.org/anttip/media_tree.git
2580S: Maintained
2581F: drivers/media/usb/dvb-usb-v2/ce6230*
2582
Michael Krufkyd099dea2012-10-02 00:56:20 -03002583DVB_USB_CXUSB MEDIA DRIVER
2584M: Michael Krufky <mkrufky@linuxtv.org>
2585L: linux-media@vger.kernel.org
2586W: http://linuxtv.org/
2587W: http://github.com/mkrufky
2588Q: http://patchwork.linuxtv.org/project/linux-media/list/
2589T: git git://linuxtv.org/media_tree.git
2590S: Maintained
2591F: drivers/media/usb/dvb-usb-v2/cxusb*
2592
Antti Palosaari91952bc2012-10-01 12:28:46 -03002593DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2594M: Antti Palosaari <crope@iki.fi>
2595L: linux-media@vger.kernel.org
2596W: http://linuxtv.org/
2597W: http://palosaari.fi/linux/
2598Q: http://patchwork.linuxtv.org/project/linux-media/list/
2599T: git git://linuxtv.org/anttip/media_tree.git
2600S: Maintained
2601F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2602
2603DVB_USB_EC168 MEDIA DRIVER
2604M: Antti Palosaari <crope@iki.fi>
2605L: linux-media@vger.kernel.org
2606W: http://linuxtv.org/
2607W: http://palosaari.fi/linux/
2608Q: http://patchwork.linuxtv.org/project/linux-media/list/
2609T: git git://linuxtv.org/anttip/media_tree.git
2610S: Maintained
2611F: drivers/media/usb/dvb-usb-v2/ec168*
2612
Michael Krufky8856f5f2012-10-02 00:55:50 -03002613DVB_USB_MXL111SF MEDIA DRIVER
2614M: Michael Krufky <mkrufky@linuxtv.org>
2615L: linux-media@vger.kernel.org
2616W: http://linuxtv.org/
2617W: http://github.com/mkrufky
2618Q: http://patchwork.linuxtv.org/project/linux-media/list/
2619T: git git://linuxtv.org/mkrufky/mxl111sf.git
2620S: Maintained
2621F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2622
Antti Palosaari91952bc2012-10-01 12:28:46 -03002623DVB_USB_RTL28XXU MEDIA DRIVER
2624M: Antti Palosaari <crope@iki.fi>
2625L: linux-media@vger.kernel.org
2626W: http://linuxtv.org/
2627W: http://palosaari.fi/linux/
2628Q: http://patchwork.linuxtv.org/project/linux-media/list/
2629T: git git://linuxtv.org/anttip/media_tree.git
2630S: Maintained
2631F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2632
2633DVB_USB_V2 MEDIA DRIVER
2634M: Antti Palosaari <crope@iki.fi>
2635L: linux-media@vger.kernel.org
2636W: http://linuxtv.org/
2637W: http://palosaari.fi/linux/
2638Q: http://patchwork.linuxtv.org/project/linux-media/list/
2639T: git git://linuxtv.org/anttip/media_tree.git
2640S: Maintained
2641F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2642F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2643
Jason Baronac0ac382011-08-11 14:36:43 -04002644DYNAMIC DEBUG
2645M: Jason Baron <jbaron@redhat.com>
2646S: Maintained
2647F: lib/dynamic_debug.c
2648F: include/linux/dynamic_debug.h
2649
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002650DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002651M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002652S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002653F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002654
Antti Palosaari91952bc2012-10-01 12:28:46 -03002655E4000 MEDIA DRIVER
2656M: Antti Palosaari <crope@iki.fi>
2657L: linux-media@vger.kernel.org
2658W: http://linuxtv.org/
2659W: http://palosaari.fi/linux/
2660Q: http://patchwork.linuxtv.org/project/linux-media/list/
2661T: git git://linuxtv.org/anttip/media_tree.git
2662S: Maintained
2663F: drivers/media/tuners/e4000*
2664
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002666M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002667L: linux-eata@i-connect.net
2668L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002670F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
2672EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002673M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674L: linux-scsi@vger.kernel.org
2675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002676F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
2678EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002679M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002680L: linux-eata@i-connect.net
2681L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002683F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
2685EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002686M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002687L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688W: http://ebtables.sourceforge.net/
2689S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002690F: include/linux/netfilter_bridge/ebt_*.h
2691F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692
Antti Palosaari91952bc2012-10-01 12:28:46 -03002693EC100 MEDIA DRIVER
2694M: Antti Palosaari <crope@iki.fi>
2695L: linux-media@vger.kernel.org
2696W: http://linuxtv.org/
2697W: http://palosaari.fi/linux/
2698Q: http://patchwork.linuxtv.org/project/linux-media/list/
2699T: git git://linuxtv.org/anttip/media_tree.git
2700S: Maintained
2701F: drivers/media/dvb-frontends/ec100*
2702
Michael Halcrow237fead2006-10-04 02:16:22 -07002703ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002704M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002705M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002706L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002707W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002708S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002709F: Documentation/filesystems/ecryptfs.txt
2710F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002711
Alan Coxda9bb1d2006-01-18 17:44:13 -08002712EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002713M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002714L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002715W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002716S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002717F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002718F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002719F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002720
Borislav Petkovc476c232009-05-20 20:31:58 +02002721EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002722M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002723M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002724L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002725W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002726S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002727F: drivers/edac/amd64_edac*
2728
Dave Peterson0e438e32006-03-26 01:38:55 -08002729EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002730M: Mark Gross <mark.gross@intel.com>
2731M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002732L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002733W: bluesmoke.sourceforge.net
2734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002735F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002736
2737EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002738M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002739L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002740W: bluesmoke.sourceforge.net
2741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002742F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002743
Douglas Thompson6bc78402007-07-19 01:50:12 -07002744EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002745M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002746L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002747W: bluesmoke.sourceforge.net
2748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002749F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002750
2751EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002752M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002753L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002754W: bluesmoke.sourceforge.net
2755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002756F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002757
2758EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002759M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002760L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002761W: bluesmoke.sourceforge.net
2762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002763F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002764
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002765EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002766M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002767L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002768W: bluesmoke.sourceforge.net
2769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002770F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002771
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002772EDAC-I7300
2773M: Mauro Carvalho Chehab <mchehab@redhat.com>
2774L: linux-edac@vger.kernel.org
2775W: bluesmoke.sourceforge.net
2776S: Maintained
2777F: drivers/edac/i7300_edac.c
2778
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002779EDAC-I7CORE
2780M: Mauro Carvalho Chehab <mchehab@redhat.com>
2781L: linux-edac@vger.kernel.org
2782W: bluesmoke.sourceforge.net
2783S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002784F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002785
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002786EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002787M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302788M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002789L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002790W: bluesmoke.sourceforge.net
2791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002792F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002793
2794EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002795M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002796L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002797W: bluesmoke.sourceforge.net
2798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002799F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002800
Dave Peterson0e438e32006-03-26 01:38:55 -08002801EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002802M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002803L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002804W: bluesmoke.sourceforge.net
2805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002806F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002807
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002808EDAC-SBRIDGE
2809M: Mauro Carvalho Chehab <mchehab@redhat.com>
2810L: linux-edac@vger.kernel.org
2811W: bluesmoke.sourceforge.net
2812S: Maintained
2813F: drivers/edac/sb_edac.c
2814
Clemens Ladischaf399172011-01-10 16:32:54 +01002815EDIROL UA-101/UA-1000 DRIVER
2816M: Clemens Ladisch <clemens@ladisch.de>
2817L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2818T: git git://git.alsa-project.org/alsa-kernel.git
2819S: Maintained
2820F: sound/usb/misc/ua101.c
2821
Matt Fleming1f7df952012-10-03 10:04:02 +01002822EXTENSIBLE FIRMWARE INTERFACE (EFI)
2823M: Matt Fleming <matt.fleming@intel.com>
2824L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002825T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002826S: Maintained
2827F: Documentation/x86/efi-stub.txt
2828F: arch/ia64/kernel/efi.c
2829F: arch/x86/boot/compressed/eboot.[ch]
2830F: arch/x86/include/asm/efi.h
2831F: arch/x86/platform/efi/*
2832F: drivers/firmware/efivars.c
2833F: include/linux/efi*.h
2834
Peter Jones85a00d92010-09-22 13:05:04 -07002835EFIFB FRAMEBUFFER DRIVER
2836L: linux-fbdev@vger.kernel.org
2837M: Peter Jones <pjones@redhat.com>
2838S: Maintained
2839F: drivers/video/efifb.c
2840
Josh Triplett0bee8d22006-07-30 03:03:58 -07002841EFS FILESYSTEM
2842W: http://aeschi.ch.eu.org/efs/
2843S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002844F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002845
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002846EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002847M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2848M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002849L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002850S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002851F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002852
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002853EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002854M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002855L: netdev@vger.kernel.org
2856S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002857F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002858
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002859EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002860M: Paul Gortmaker <paul.gortmaker@windriver.com>
2861M: Matt Mackall <mpm@selenic.com>
2862M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002863L: linux-embedded@vger.kernel.org
2864S: Maintained
2865
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002866EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002867M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002868L: linux-scsi@vger.kernel.org
2869W: http://sourceforge.net/projects/lpfcxxxx
2870S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002871F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002872
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002873ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002874M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002875S: Maintained
2876F: drivers/misc/cb710/
2877F: drivers/mmc/host/cb710-mmc.*
2878F: include/linux/cb710.h
2879
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002880ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2881M: Maxim Levitsky <maximlevitsky@gmail.com>
2882S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002883F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002884
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002886M: Christopher Hoover <ch@murgatroid.com>
2887M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002889F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002891EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002892M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002893S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002894T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002895F: drivers/video/s1d13xxxfb.c
2896F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002897
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002899M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002900L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002902F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
2904ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002905M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002906L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002907L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002908W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002910F: include/linux/netfilter_bridge/
2911F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
2913ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002914M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002916F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917
2918EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002919M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002920L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002922F: Documentation/filesystems/ext2.txt
2923F: fs/ext2/
2924F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925
2926EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002927M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002928M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002929M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002930L: linux-ext4@vger.kernel.org
2931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002932F: Documentation/filesystems/ext3.txt
2933F: fs/ext3/
2934F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002935
2936EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002937M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002938M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002939L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002940W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002941Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002943F: Documentation/filesystems/ext4.txt
2944F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945
Mimi Zoharc5532b02011-08-17 18:52:24 -04002946Extended Verification Module (EVM)
2947M: Mimi Zohar <zohar@us.ibm.com>
2948S: Supported
2949F: security/integrity/evm/
2950
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09002951EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
2952M: MyungJoo Ham <myungjoo.ham@samsung.com>
2953M: Chanwoo Choi <cw00.choi@samsung.com>
2954L: linux-kernel@vger.kernel.org
2955S: Maintained
2956F: drivers/extcon/
2957F: Documentation/extcon/
2958
Jingoo Han0a799512012-02-06 11:30:39 +09002959EXYNOS DP DRIVER
2960M: Jingoo Han <jg1.han@samsung.com>
2961L: linux-fbdev@vger.kernel.org
2962S: Maintained
2963F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07002964F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09002965
Donghwa Lee33ad3912012-03-06 11:44:58 +09002966EXYNOS MIPI DISPLAY DRIVERS
2967M: Inki Dae <inki.dae@samsung.com>
2968M: Donghwa Lee <dh09.lee@samsung.com>
2969M: Kyungmin Park <kyungmin.park@samsung.com>
2970L: linux-fbdev@vger.kernel.org
2971S: Maintained
2972F: drivers/video/exynos/exynos_mipi*
2973F: include/video/exynos_mipi*
2974
Jean Delvaree53004e2006-01-09 23:26:14 +01002975F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002976M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002977L: lm-sensors@lm-sensors.org
2978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002979F: Documentation/hwmon/f71805f
2980F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002981
Michael Büscheea977e2012-04-02 12:14:32 -03002982FC0011 TUNER DRIVER
2983M: Michael Buesch <m@bues.ch>
2984L: linux-media@vger.kernel.org
2985S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03002986F: drivers/media/tuners/fc0011.h
2987F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03002988
Antti Palosaari91952bc2012-10-01 12:28:46 -03002989FC2580 MEDIA DRIVER
2990M: Antti Palosaari <crope@iki.fi>
2991L: linux-media@vger.kernel.org
2992W: http://linuxtv.org/
2993W: http://palosaari.fi/linux/
2994Q: http://patchwork.linuxtv.org/project/linux-media/list/
2995T: git git://linuxtv.org/anttip/media_tree.git
2996S: Maintained
2997F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998
Eric Paris88b2dbd2010-08-18 12:25:50 -04002999FANOTIFY
3000M: Eric Paris <eparis@redhat.com>
3001S: Maintained
3002F: fs/notify/fanotify/
3003F: include/linux/fanotify.h
3004
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003006M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007W: http://www.farsite.co.uk/
3008S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003009F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010
Akinobu Mitac5408b82007-04-23 14:41:20 -07003011FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003012M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003013S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003014F: Documentation/fault-injection/
3015F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003016
Robert Lovecae727d2010-02-16 12:16:00 -08003017FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3018M: Robert Love <robert.w.love@intel.com>
3019L: devel@open-fcoe.org
3020W: www.Open-FCoE.org
3021S: Supported
3022F: drivers/scsi/libfc/
3023F: drivers/scsi/fcoe/
3024F: include/scsi/fc/
3025F: include/scsi/libfc.h
3026F: include/scsi/libfcoe.h
3027
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003028FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003029M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003030L: linux-fsdevel@vger.kernel.org
3031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003032F: include/linux/fcntl.h
3033F: include/linux/fs.h
3034F: fs/fcntl.c
3035F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003036
3037FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003038M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003039L: linux-fsdevel@vger.kernel.org
3040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003041F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003042
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003043FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003044M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003045L: lm-sensors@lm-sensors.org
3046S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003047F: drivers/hwmon/f75375s.c
3048F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003049
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003050FIREWIRE AUDIO DRIVERS
3051M: Clemens Ladisch <clemens@ladisch.de>
3052L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3053T: git git://git.alsa-project.org/alsa-kernel.git
3054S: Maintained
3055F: sound/firewire/
3056
Chris Boota511ce32012-04-14 17:50:35 -07003057FIREWIRE SBP-2 TARGET
3058M: Chris Boot <bootc@bootc.net>
3059L: linux-scsi@vger.kernel.org
3060L: target-devel@vger.kernel.org
3061L: linux1394-devel@lists.sourceforge.net
3062T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3063S: Maintained
3064F: drivers/target/sbp/
3065
Joe Perches7d2c86b2009-04-07 20:59:01 -07003066FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003067M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003068L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003069W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003070T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003072F: drivers/firewire/
3073F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003074F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003075
3076FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003077M: Ming Lei <ming.lei@canonical.com>
3078L: linux-kernel@vger.kernel.org
3079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003080F: Documentation/firmware_class/
3081F: drivers/base/firmware*.c
3082F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003083
Jiri Kosina8206f662012-05-18 13:52:29 +02003084FLOPPY DRIVER
3085M: Jiri Kosina <jkosina@suse.cz>
3086T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3087S: Odd fixes
3088F: drivers/block/floppy.c
3089
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003090FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003091M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003092W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003094F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003095
3096FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003097L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003098S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003099F: drivers/net/wan/dlci.c
3100F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003101
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003103M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003104L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003106Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003107T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003109F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003110F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003111F: drivers/video/
3112F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003113F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114
Zhang Wei173acc72008-03-01 07:42:48 -07003115FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003116M: Li Yang <leoli@freescale.com>
3117M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003118L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003120F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003121
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003122FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003123M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003124L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003125L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003127F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003128
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003129FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003130M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003131L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003132L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003134F: arch/arm/plat-mxc/include/mach/imxfb.h
3135F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003136
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003137FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003138M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3139M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003140L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003141L: netdev@vger.kernel.org
3142S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003143F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003144F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003145
Timur Tabid9e9d822008-04-24 08:45:26 +10003146FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003147M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003148L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003149S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003150F: arch/powerpc/sysdev/qe_lib/
3151F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003152
Joe Perchesb55ef9292009-10-26 16:49:46 -07003153FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003154M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003155L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003156L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003157S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003158F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003159
Li Yangbeaf53b2007-05-25 13:54:02 +08003160FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003161M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003162L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003163L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003164S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003165F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003166
Timur Tabid9e9d822008-04-24 08:45:26 +10003167FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003168M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003169L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003170S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003171F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003172
3173FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003174M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003175L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003176L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003177S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003178F: sound/soc/fsl/fsl*
3179F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003180
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003182M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003185F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
Pavel Machek71038f52009-01-15 13:51:02 -08003187FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003188M: Pavel Machek <pavel@ucw.cz>
3189M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003190L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003191S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003192F: Documentation/power/freezing-of-tasks.txt
3193F: include/linux/freezer.h
3194F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003195
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003196FRONTSWAP API
3197M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3198L: linux-kernel@vger.kernel.org
3199S: Maintained
3200F: mm/frontswap.c
3201F: include/linux/frontswap.h
3202
David Howellsa5432f52009-04-20 15:46:45 +01003203FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003204M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003205L: linux-cachefs@redhat.com
3206S: Supported
3207F: Documentation/filesystems/caching/
3208F: fs/fscache/
3209F: include/linux/fscache*.h
3210
David Howells5ab7ffe2007-04-10 15:10:45 +01003211FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003212M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003214F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215
Jonathan Woithe20b93732008-06-11 10:14:56 +09303216FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303217M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003218L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003220F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303221
Heungjun Kim4da621b2011-11-11 08:05:33 -03003222FUJITSU M-5MO LS CAMERA ISP DRIVER
3223M: Kyungmin Park <kyungmin.park@samsung.com>
3224M: Heungjun Kim <riverful.kim@samsung.com>
3225L: linux-media@vger.kernel.org
3226S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003227F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003228F: include/media/m5mols.h
3229
Robert Gerlach2d24c492012-01-18 14:26:22 +01003230FUJITSU TABLET EXTRAS
3231M: Robert Gerlach <khnz@gmx.de>
3232L: platform-driver-x86@vger.kernel.org
3233S: Maintained
3234F: drivers/platform/x86/fujitsu-tablet.c
3235
Miklos Szeredi04578f12005-09-09 13:10:22 -07003236FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003237M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003238L: fuse-devel@lists.sourceforge.net
3239W: http://fuse.sourceforge.net/
3240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003241F: fs/fuse/
3242F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003243
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003245M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003247S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003248F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249
3250GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003251M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252L: linux-scsi@vger.kernel.org
3253W: http://www.icp-vortex.com/
3254S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003255F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003257GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003258M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003259S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003260F: drivers/i2c/busses/i2c-gpio.c
3261F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003262
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003263GENERIC GPIO I2C MULTIPLEXER DRIVER
3264M: Peter Korsgaard <peter.korsgaard@barco.com>
3265L: linux-i2c@vger.kernel.org
3266S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003267F: drivers/i2c/muxes/i2c-mux-gpio.c
3268F: include/linux/i2c-mux-gpio.h
3269F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003270
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003271GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003272M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003275F: drivers/net/wan/c101.c
3276F: drivers/net/wan/hd6457*
3277F: drivers/net/wan/hdlc*
3278F: drivers/net/wan/n2.c
3279F: drivers/net/wan/pc300too.c
3280F: drivers/net/wan/pci200syn.c
3281F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003283GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003284M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003285L: linux-arch@vger.kernel.org
3286T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3287S: Maintained
3288F: include/asm-generic
3289
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003290GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003291M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003292L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003293S: Supported
3294F: drivers/uio/uio_pci_generic.c
3295
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003296GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003297M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003298L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003299W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003300T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3301T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003302S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003303F: Documentation/filesystems/gfs2*.txt
3304F: fs/gfs2/
3305F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003306
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003307GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003308M: Hansjoerg Lipp <hjlipp@web.de>
3309M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003310L: gigaset307x-common@lists.sourceforge.net
3311W: http://gigaset307x.sourceforge.net/
3312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003313F: Documentation/isdn/README.gigaset
3314F: drivers/isdn/gigaset/
3315F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003316
Grant Likelya0dc00b2011-02-12 01:48:14 -07003317GPIO SUBSYSTEM
3318M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003319M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003320S: Maintained
3321T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003322F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003323F: drivers/gpio/
3324F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003325F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003326
Harry Wei71a6d0a2011-05-11 15:13:33 -07003327GRE DEMULTIPLEXER DRIVER
3328M: Dmitry Kozlov <xeb@mail.ru>
3329L: netdev@vger.kernel.org
3330S: Maintained
3331F: net/ipv4/gre.c
3332F: include/net/gre.h
3333
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003334GRETH 10/100/1G Ethernet MAC device driver
3335M: Kristoffer Glembo <kristoffer@gaisler.com>
3336L: netdev@vger.kernel.org
3337S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003338F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003339
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003340GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003341M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003342L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003343T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003344S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003345F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003346
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003347GSPCA GL860 SUBDRIVER
3348M: Olivier Lorin <o.lorin@laposte.net>
3349L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003350T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003351S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003352F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003353
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003354GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003355M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003356L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003357T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003358S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003359F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003360
3361GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003362M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003363L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003364T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003365S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003366F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003367
Brian Johnson261982f2009-07-19 15:58:56 -03003368GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003369M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003370L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003371T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Brian Johnson261982f2009-07-19 15:58:56 -03003372S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003373F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003374
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003375GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003376M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003377L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003378T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003379S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003380F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003381
3382GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003383M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003384L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003385T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003386S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003387F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003388
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003389STK1160 USB VIDEO CAPTURE DRIVER
3390M: Ezequiel Garcia <elezegarcia@gmail.com>
3391L: linux-media@vger.kernel.org
3392T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3393S: Maintained
3394F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003395
Harry Wei71a6d0a2011-05-11 15:13:33 -07003396HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3397M: Frank Seidel <frank@f-seidel.de>
3398L: platform-driver-x86@vger.kernel.org
3399W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3400S: Maintained
3401F: drivers/platform/x86/hdaps.c
3402
3403HWPOISON MEMORY FAILURE HANDLING
3404M: Andi Kleen <andi@firstfloor.org>
3405L: linux-mm@kvack.org
3406T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3407S: Maintained
3408F: mm/memory-failure.c
3409F: mm/hwpoison-inject.c
3410
3411HYPERVISOR VIRTUAL CONSOLE DRIVER
3412L: linuxppc-dev@lists.ozlabs.org
3413S: Odd Fixes
3414F: drivers/tty/hvc/
3415
Michael Buesch844dd052006-06-26 00:24:59 -07003416HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003417M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003418M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003419L: lm-sensors@lm-sensors.org
3420W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003421T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003422T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003423S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003424F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003425F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003426F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003427
3428HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003429M: Matt Mackall <mpm@selenic.com>
3430M: Herbert Xu <herbert@gondor.apana.org.au>
3431S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003432F: Documentation/hw_random.txt
3433F: drivers/char/hw_random/
3434F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003435
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003436HARDWARE SPINLOCK CORE
3437M: Ohad Ben-Cohen <ohad@wizery.com>
3438S: Maintained
3439F: Documentation/hwspinlock.txt
3440F: drivers/hwspinlock/hwspinlock_*
3441F: include/linux/hwspinlock.h
3442
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003444L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003446F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447
Antti Palosaari91952bc2012-10-01 12:28:46 -03003448HD29L2 MEDIA DRIVER
3449M: Antti Palosaari <crope@iki.fi>
3450L: linux-media@vger.kernel.org
3451W: http://linuxtv.org/
3452W: http://palosaari.fi/linux/
3453Q: http://patchwork.linuxtv.org/project/linux-media/list/
3454T: git git://linuxtv.org/anttip/media_tree.git
3455S: Maintained
3456F: drivers/media/dvb-frontends/hd29l2*
3457
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003458HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003459M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003460L: iss_storagedev@hp.com
3461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003462F: Documentation/blockdev/cpqarray.txt
3463F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003464
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003465HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003466M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003467L: iss_storagedev@hp.com
3468S: Supported
3469F: Documentation/scsi/hpsa.txt
3470F: drivers/scsi/hpsa*.[ch]
3471F: include/linux/cciss*.h
3472
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003473HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003474M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003475L: iss_storagedev@hp.com
3476S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003477F: Documentation/blockdev/cciss.txt
3478F: drivers/block/cciss*
3479F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003480
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003482L: linux-fsdevel@vger.kernel.org
3483S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003484F: Documentation/filesystems/hfs.txt
3485F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486
3487HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003488M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489L: linux-nvidia@lists.surfsouth.com
3490W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003492F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003494HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003495M: Pavel Machek <pavel@ucw.cz>
3496M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003497L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003498S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003499F: arch/x86/power/
3500F: drivers/base/power/
3501F: kernel/power/
3502F: include/linux/suspend.h
3503F: include/linux/freezer.h
3504F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003505F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003506
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003507HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003508M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003509L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003510T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003512F: drivers/hid/
3513F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003514
Ingo Molnar38bed542007-02-22 09:09:34 +01003515HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003516M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003517T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003519F: Documentation/timers/
3520F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003521F: kernel/time/clockevents.c
3522F: kernel/time/tick*.*
3523F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003524F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003525F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003526
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003529S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003530F: drivers/net/hamradio/dmascc.c
3531F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003533HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003534M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003535W: http://www.highpoint-tech.com
3536S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003537F: Documentation/scsi/hptiop.txt
3538F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003539
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003541M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542L: linux-hippi@sunsite.dk
3543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003544F: include/linux/hippidevice.h
3545F: include/linux/if_hippi.h
3546F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003547F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548
Jouni Malinenff1d2762005-05-12 22:54:16 -04003549HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003550M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003551L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003552L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003553W: http://hostap.epitest.fi/
3554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003555F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003556
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003557HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003558L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003559S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003560F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003561
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003562HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003563M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003564S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003565F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003566
Joe Perches7d2c86b2009-04-07 20:59:01 -07003567HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003568M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003570F: Documentation/timers/hpet.txt
3571F: drivers/char/hpet.c
3572F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003573
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003574HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003575M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003576S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003577F: arch/x86/kernel/hpet.c
3578F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003579
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003581M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003584F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585
Joe Perches7d2c86b2009-04-07 20:59:01 -07003586HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003587M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003588W: http://www.pharscape.org
3589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003590F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003591
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003592HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003593M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003594L: linux-input@vger.kernel.org
3595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003596F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003597
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003599M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003601F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003603Hyper-V CORE AND DRIVERS
3604M: K. Y. Srinivasan <kys@microsoft.com>
3605M: Haiyang Zhang <haiyangz@microsoft.com>
3606L: devel@linuxdriverproject.org
3607S: Maintained
3608F: drivers/hv/
3609F: drivers/hid/hid-hyperv.c
3610F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003611
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003612I2C OVER PARALLEL PORT
3613M: Jean Delvare <khali@linux-fr.org>
3614L: linux-i2c@vger.kernel.org
3615S: Maintained
3616F: Documentation/i2c/busses/i2c-parport
3617F: Documentation/i2c/busses/i2c-parport-light
3618F: drivers/i2c/busses/i2c-parport.c
3619F: drivers/i2c/busses/i2c-parport-light.c
3620
3621I2C/SMBUS CONTROLLER DRIVERS FOR PC
3622M: Jean Delvare <khali@linux-fr.org>
3623L: linux-i2c@vger.kernel.org
3624S: Maintained
3625F: Documentation/i2c/busses/i2c-ali1535
3626F: Documentation/i2c/busses/i2c-ali1563
3627F: Documentation/i2c/busses/i2c-ali15x3
3628F: Documentation/i2c/busses/i2c-amd756
3629F: Documentation/i2c/busses/i2c-amd8111
3630F: Documentation/i2c/busses/i2c-i801
3631F: Documentation/i2c/busses/i2c-nforce2
3632F: Documentation/i2c/busses/i2c-piix4
3633F: Documentation/i2c/busses/i2c-sis5595
3634F: Documentation/i2c/busses/i2c-sis630
3635F: Documentation/i2c/busses/i2c-sis96x
3636F: Documentation/i2c/busses/i2c-via
3637F: Documentation/i2c/busses/i2c-viapro
3638F: drivers/i2c/busses/i2c-ali1535.c
3639F: drivers/i2c/busses/i2c-ali1563.c
3640F: drivers/i2c/busses/i2c-ali15x3.c
3641F: drivers/i2c/busses/i2c-amd756.c
3642F: drivers/i2c/busses/i2c-amd756-s4882.c
3643F: drivers/i2c/busses/i2c-amd8111.c
3644F: drivers/i2c/busses/i2c-i801.c
3645F: drivers/i2c/busses/i2c-isch.c
3646F: drivers/i2c/busses/i2c-nforce2.c
3647F: drivers/i2c/busses/i2c-nforce2-s4985.c
3648F: drivers/i2c/busses/i2c-piix4.c
3649F: drivers/i2c/busses/i2c-sis5595.c
3650F: drivers/i2c/busses/i2c-sis630.c
3651F: drivers/i2c/busses/i2c-sis96x.c
3652F: drivers/i2c/busses/i2c-via.c
3653F: drivers/i2c/busses/i2c-viapro.c
3654
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003655I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003656M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003657L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003659F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003660
Jean Delvare5b543962005-08-15 19:51:02 +02003661I2C SUBSYSTEM
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003662M: Wolfram Sang <w.sang@pengutronix.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003663M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003664L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003665W: http://i2c.wiki.kernel.org/
3666T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003667T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003669F: Documentation/i2c/
3670F: drivers/i2c/
3671F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003672F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003674I2C-TAOS-EVM DRIVER
3675M: Jean Delvare <khali@linux-fr.org>
3676L: linux-i2c@vger.kernel.org
3677S: Maintained
3678F: Documentation/i2c/busses/i2c-taos-evm
3679F: drivers/i2c/busses/i2c-taos-evm.c
3680
Till Harbaume8c76ee2007-05-01 23:26:35 +02003681I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003682M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003683L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003684W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003686F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003687
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003689M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003691F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692
3693i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003694M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003695T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696S: Maintained
3697
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003699M: Tony Luck <tony.luck@intel.com>
3700M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003702T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003704F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705
Kent Yoder956c2032012-09-07 04:17:01 +08003706IBM Power in-Nest Crypto Acceleration
3707M: Kent Yoder <key@linux.vnet.ibm.com>
3708L: linux-crypto@vger.kernel.org
3709S: Supported
3710F: drivers/crypto/nx/
3711
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003712IBM Power 842 compression accelerator
3713M: Robert Jennings <rcj@linux.vnet.ibm.com>
3714S: Supported
3715F: drivers/crypto/nx/nx-842.c
3716F: include/linux/nx842.h
3717
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003719M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003721F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722
Santiago Leon9d348af2010-09-03 18:29:53 +00003723IBM Power Virtual Ethernet Device Driver
3724M: Santiago Leon <santil@linux.vnet.ibm.com>
3725L: netdev@vger.kernel.org
3726S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003727F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003728
Robert Jennings4b7652c2012-07-31 12:34:36 -05003729IBM Power Virtual SCSI/FC Device Drivers
3730M: Robert Jennings <rcj@linux.vnet.ibm.com>
3731L: linux-scsi@vger.kernel.org
3732S: Supported
3733F: drivers/scsi/ibmvscsi/
3734X: drivers/scsi/ibmvscsi/ibmvstgt.c
3735
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736IBM ServeRAID RAID DRIVER
3737P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003738M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003740S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003741F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003743ICH LPC AND GPIO DRIVER
3744M: Peter Tyser <ptyser@xes-inc.com>
3745S: Maintained
3746F: drivers/mfd/lpc_ich.c
3747F: drivers/gpio/gpio-ich.c
3748
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003749IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003750M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003752Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003753T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003755F: Documentation/ide/
3756F: drivers/ide/
3757F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758
Ike Panhc6cb8c132011-08-25 22:28:45 +08003759IDEAPAD LAPTOP EXTRAS DRIVER
3760M: Ike Panhc <ike.pan@canonical.com>
3761L: platform-driver-x86@vger.kernel.org
3762W: http://launchpad.net/ideapad-laptop
3763S: Maintained
3764F: drivers/platform/x86/ideapad-laptop.c
3765
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003766IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003767M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003768L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003770F: Documentation/cdrom/ide-cd
3771F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772
Andy Henroid27471fd2008-10-09 11:45:22 -07003773IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003774M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003775L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003776S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003777F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003778
Sergey Lapin02cf2282009-06-08 12:18:50 +00003779IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003780M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003781M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003782L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003783W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003784T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003785S: Maintained
3786F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003787F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003788F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003789
Ameya Palande9545f862012-01-10 09:00:58 -08003790IIO SUBSYSTEM AND DRIVERS
3791M: Jonathan Cameron <jic23@cam.ac.uk>
3792L: linux-iio@vger.kernel.org
3793S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003794F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003795F: drivers/staging/iio/
3796
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003797IKANOS/ADI EAGLE ADSL USB DRIVER
3798M: Matthieu Castet <castet.matthieu@free.fr>
3799M: Stanislaw Gruszka <stf_xl@wp.pl>
3800S: Maintained
3801F: drivers/usb/atm/ueagle-atm.c
3802
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01003803INDUSTRY PACK SUBSYSTEM (IPACK)
3804M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
3805M: Jens Taprogge <jens.taprogge@taprogge.org>
3806M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3807L: industrypack-devel@lists.sourceforge.net
3808W: http://industrypack.sourceforge.net
3809S: Maintained
3810F: drivers/ipack/
3811
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003812INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003813M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003814S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003815F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003816
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003818L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003819S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003820F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821
3822INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003823M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003824M: Sean Hefty <sean.hefty@intel.com>
3825M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003826L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003827W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003828Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003829T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003831F: Documentation/infiniband/
3832F: drivers/infiniband/
3833F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834
Robert Lovec9f04f52005-07-15 12:21:07 -04003835INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003836M: John McCutchan <john@johnmccutchan.com>
3837M: Robert Love <rlove@rlove.org>
3838M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003840F: Documentation/filesystems/inotify.txt
3841F: fs/notify/inotify/
3842F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003843
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003844INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003845M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3846M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003847L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003848Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003849T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003851F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003852F: include/linux/input.h
3853F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003854
Henrik Rydberg3267a872010-06-24 19:10:40 -07003855INPUT MULTITOUCH (MT) PROTOCOL
3856M: Henrik Rydberg <rydberg@euromail.se>
3857L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003858T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003859S: Maintained
3860F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003861F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003862K: \b(ABS|SYN)_MT_
3863
Dave Jiang4ac13e12011-07-29 17:16:55 -07003864INTEL C600 SERIES SAS CONTROLLER DRIVER
3865M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003866M: Lukasz Dorau <lukasz.dorau@intel.com>
3867M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003868M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003869L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003870T: git git://git.code.sf.net/p/intel-sas/isci
3871S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003872F: drivers/scsi/isci/
3873F: firmware/isci/
3874
Len Brown26717172010-03-08 14:07:30 -05003875INTEL IDLE DRIVER
3876M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003877L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003878T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003879S: Supported
3880F: drivers/idle/intel_idle.c
3881
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003882INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003883M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003884L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003886F: Documentation/fb/intelfb.txt
3887F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003888
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003890M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003891L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003893F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303895INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003896M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003897L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303898W: http://www.lesswatts.org/projects/acpi/
3899S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003900F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303901
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003903M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003905F: arch/x86/kernel/microcode_core.c
3906F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003908INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003909M: Dan Williams <djbw@fb.com>
3910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003911F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003912
David Woodhouse6c8909b2008-10-18 16:12:17 +01003913INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003914M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003915L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003916T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003917S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003918F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07003919F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003920
Dan Williamsb3e5f262007-08-07 10:26:35 -07003921INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003922M: Dan Williams <djbw@fb.com>
3923S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003924F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003925
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003926INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003927M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003929F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3930F: arch/arm/mach-ixp4xx/include/mach/npe.h
3931F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3932F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07003933F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07003934F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003935
Michael Buesch844dd052006-06-26 00:24:59 -07003936INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003937M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003938S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003939F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003940
Jeff Kirsher0d164402010-10-05 01:15:17 +00003941INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003942M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3943M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3944M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003945M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3946M: Don Skidmore <donald.c.skidmore@intel.com>
3947M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003948M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003949M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003950M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00003951M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003952L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00003953W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08003954W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003955T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
3956T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00003958F: Documentation/networking/e100.txt
3959F: Documentation/networking/e1000.txt
3960F: Documentation/networking/e1000e.txt
3961F: Documentation/networking/igb.txt
3962F: Documentation/networking/igbvf.txt
3963F: Documentation/networking/ixgb.txt
3964F: Documentation/networking/ixgbe.txt
3965F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003966F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967
Len Brown6dccf9c2011-07-12 22:29:32 -04003968INTEL MRST PMU DRIVER
3969M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003970L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04003971S: Supported
3972F: arch/x86/platform/mrst/pmu.*
3973
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003974INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
3975M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07003976L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003978F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07003979F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003980F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06003981
Shane Wang4bd96a72010-03-10 14:36:10 +08003982INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07003983M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
3984M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08003985M: Shane Wang <shane.wang@intel.com>
3986L: tboot-devel@lists.sourceforge.net
3987W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07003988T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08003989S: Supported
3990F: Documentation/intel_txt.txt
3991F: include/linux/tboot.h
3992F: arch/x86/kernel/tboot.c
3993
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003994INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003995M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003996M: linux-wimax@intel.com
3997L: wimax@linuxwimax.org
3998S: Supported
3999W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004000F: Documentation/wimax/README.i2400m
4001F: drivers/net/wimax/i2400m/
4002F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004003
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004004INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4005M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004006L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004007S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004008F: drivers/net/wireless/iwlegacy/
4009
Zhu Yib481de92007-09-25 17:54:57 -07004010INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004011M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004012M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004013M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004014L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004015W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07004016T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004017S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004018F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004019
Tomas Winklerde8fe022012-05-09 16:39:02 +03004020INTEL MANAGEMENT ENGINE (mei)
4021M: Tomas Winkler <tomas.winkler@intel.com>
4022L: linux-kernel@vger.kernel.org
4023S: Supported
4024F: include/linux/mei.h
4025F: drivers/misc/mei/*
4026F: Documentation/mei/*
4027
Ralf Baechlecb109a02007-08-30 23:56:30 -07004028IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004029M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030L: linux-mips@linux-mips.org
4031S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004032F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033
Ralf Baechlecb109a02007-08-30 23:56:30 -07004034IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004035M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004036L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004037S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004038F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004039
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004040IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004041M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004043F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044
Francois Romieu1202d6f2007-09-17 17:13:55 -07004045IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004046M: Francois Romieu <romieu@fr.zoreil.com>
4047M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004048L: netdev@vger.kernel.org
4049S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004050F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004051
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004052IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004053M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004054L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004056F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004057
Corey Minyard4409ebe2006-04-20 02:43:12 -07004058IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004059M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004060L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004061W: http://openipmi.sourceforge.net/
4062S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004063F: Documentation/IPMI.txt
4064F: drivers/char/ipmi/
4065F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004066
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004067IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004068M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004069L: linux-scsi@vger.kernel.org
4070W: http://www.adaptec.com/
4071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004072F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004073
4074IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004075M: Wensong Zhang <wensong@linux-vs.org>
4076M: Simon Horman <horms@verge.net.au>
4077M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004078L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004079L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004081F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004082F: include/net/ip_vs.h
4083F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004084F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085
Randy Dunlape7839f22008-10-12 16:11:45 -07004086IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004087M: Jiri Kosina <jkosina@suse.cz>
4088M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004089S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004090F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004091
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004092IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004093M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004094L: netdev@vger.kernel.org
4095S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004096F: include/linux/ipx.h
4097F: include/net/ipx.h
4098F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004099
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004101M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004102L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004103L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004105S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004106T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004107F: Documentation/networking/irda.txt
4108F: drivers/net/irda/
4109F: include/net/irda/
4110F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004112IRQ SUBSYSTEM
4113M: Thomas Gleixner <tglx@linutronix.de>
4114S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004115T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004116F: kernel/irq/
4117
Grant Likely7ab3a832012-02-14 14:06:47 -07004118IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4119M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4120M: Grant Likely <grant.likely@secretlab.ca>
4121T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4122S: Maintained
4123F: Documentation/IRQ-domain.txt
4124F: include/linux/irqdomain.h
4125F: kernel/irq/irqdomain.c
4126
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004127ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004128M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004129S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004130F: Documentation/isapnp.txt
4131F: drivers/pnp/isapnp/
4132F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004133
Harry Wei71a6d0a2011-05-11 15:13:33 -07004134iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4135M: Peter Jones <pjones@redhat.com>
4136M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4137S: Maintained
4138F: drivers/firmware/iscsi_ibft*
4139
Mike Christie14816b1e2007-11-28 16:22:06 -08004140ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004141M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004142L: open-iscsi@googlegroups.com
4143W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004144T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004146F: drivers/scsi/*iscsi*
4147F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004148
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004150M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004151L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004152L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004154T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004156F: Documentation/isdn/
4157F: drivers/isdn/
4158F: include/linux/isdn.h
4159F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160
4161ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004162M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004163L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164W: http://www.melware.de
4165S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004166F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167
Jean Delvared6248702010-03-05 22:17:20 +01004168IT87 HARDWARE MONITORING DRIVER
4169M: Jean Delvare <khali@linux-fr.org>
4170L: lm-sensors@lm-sensors.org
4171S: Maintained
4172F: Documentation/hwmon/it87
4173F: drivers/hwmon/it87.c
4174
Hans Verkuil91821ff2007-12-02 09:35:33 -03004175IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004176M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004177L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004178L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004179T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004180W: http://www.ivtvdriver.org
4181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004182F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004183F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004184F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004185
Guenter Roeck4453d732010-08-09 17:21:08 -07004186JC42.4 TEMPERATURE SENSOR DRIVER
4187M: Guenter Roeck <linux@roeck-us.net>
4188L: lm-sensors@lm-sensors.org
4189S: Maintained
4190F: drivers/hwmon/jc42.c
4191F: Documentation/hwmon/jc42
4192
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004193JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004194M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004195L: jfs-discussion@lists.sourceforge.net
4196W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004197T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004199F: Documentation/filesystems/jfs.txt
4200F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004201
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004202JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004203M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004204L: netdev@vger.kernel.org
4205S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004206F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004207
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004209M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004210L: linux-mtd@lists.infradead.org
4211W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004213F: fs/jffs2/
4214F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215
Josh Triplettde456d32006-07-30 03:04:00 -07004216JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004217M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004218M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004219L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004220S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004221F: fs/jbd/
4222F: include/linux/ext3_jbd.h
4223F: include/linux/jbd.h
4224
4225JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4226M: "Theodore Ts'o" <tytso@mit.edu>
4227L: linux-ext4@vger.kernel.org
4228S: Maintained
4229F: fs/jbd2/
4230F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004231
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004232JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004233M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004234L: linux-serial@vger.kernel.org
4235S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004236F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004237
Clemens Ladischaf399172011-01-10 16:32:54 +01004238K10TEMP HARDWARE MONITORING DRIVER
4239M: Clemens Ladisch <clemens@ladisch.de>
4240L: lm-sensors@lm-sensors.org
4241S: Maintained
4242F: Documentation/hwmon/k10temp
4243F: drivers/hwmon/k10temp.c
4244
Rudolf Marek4660cb32006-10-08 22:01:26 +02004245K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004246M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004247L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004249F: Documentation/hwmon/k8temp
4250F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251
4252KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004253M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004254L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004255S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004256F: Documentation/kbuild/kconfig-language.txt
4257F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258
Vivek Goyalea6c2082006-05-20 14:59:55 -07004259KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004260M: Vivek Goyal <vgoyal@redhat.com>
4261M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004262L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004263W: http://lse.sourceforge.net/kdump/
4264S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004265F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004266
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004268M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004269L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004271F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272
Michal Marek70fb7ba2010-01-29 14:22:43 +01004273KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004274M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004275T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4276T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004277L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004279F: Documentation/kbuild/
4280F: Makefile
4281F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004282F: scripts/basic/
4283F: scripts/mk*
4284F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285
4286KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004287L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004288W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004289S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004291KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004292M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004293L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004295S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004296F: fs/nfsd/
4297F: include/linux/nfsd/
4298F: fs/lockd/
4299F: fs/nfs_common/
4300F: net/sunrpc/
4301F: include/linux/lockd/
4302F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303
Avi Kivity426d62e2006-12-13 00:34:03 -08004304KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004305M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004306M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004307L: kvm@vger.kernel.org
4308W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004309S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004310F: Documentation/*/kvm.txt
4311F: arch/*/kvm/
4312F: arch/*/include/asm/kvm*
4313F: include/linux/kvm*
4314F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004315
Joerg Roedelad8003d2008-09-10 20:01:07 +02004316KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07004317M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004318L: kvm@vger.kernel.org
4319W: http://kvm.qumranet.com
4320S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004321F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004322F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004323
Hollis Blanchard513014b2008-04-16 23:28:08 -05004324KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004325M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004326L: kvm-ppc@vger.kernel.org
4327W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05004328S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004329F: arch/powerpc/include/asm/kvm*
4330F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004331
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004332KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004333M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004334L: kvm-ia64@vger.kernel.org
4335W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004336S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004337F: Documentation/ia64/kvm.txt
4338F: arch/ia64/include/asm/kvm*
4339F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004340
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004341KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004342M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004343M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004344M: linux390@de.ibm.com
4345L: linux-s390@vger.kernel.org
4346W: http://www.ibm.com/developerworks/linux/linux390/
4347S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004348F: Documentation/s390/kvm.txt
4349F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004350F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004351F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004352
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004353KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004354M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004355W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004356L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004358F: include/linux/kexec.h
4359F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004360
David Howellse9714612010-03-29 23:42:09 +01004361KEYS/KEYRINGS:
4362M: David Howells <dhowells@redhat.com>
4363L: keyrings@linux-nfs.org
4364S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004365F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004366F: include/linux/key.h
4367F: include/linux/key-type.h
4368F: include/keys/
4369F: security/keys/
4370
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004371KEYS-TRUSTED
4372M: David Safford <safford@watson.ibm.com>
4373M: Mimi Zohar <zohar@us.ibm.com>
4374L: linux-security-module@vger.kernel.org
4375L: keyrings@linux-nfs.org
4376S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004377F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004378F: include/keys/trusted-type.h
4379F: security/keys/trusted.c
4380F: security/keys/trusted.h
4381
4382KEYS-ENCRYPTED
4383M: Mimi Zohar <zohar@us.ibm.com>
4384M: David Safford <safford@watson.ibm.com>
4385L: linux-security-module@vger.kernel.org
4386L: keyrings@linux-nfs.org
4387S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004388F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004389F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004390F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004391
Jason Wessel5b778da2010-05-20 21:04:28 -05004392KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004393M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004394W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004395L: kgdb-bugreport@lists.sourceforge.net
4396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004397F: Documentation/DocBook/kgdb.tmpl
4398F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004399F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004400F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004401F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004402F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004403
Pekka Enberg456db8c2008-04-28 22:47:29 +03004404KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004405M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004406M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004407S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004408F: Documentation/kmemcheck.txt
4409F: arch/x86/include/asm/kmemcheck.h
4410F: arch/x86/mm/kmemcheck/
4411F: include/linux/kmemcheck.h
4412F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004413
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004414KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004415M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004416S: Maintained
4417F: Documentation/kmemleak.txt
4418F: include/linux/kmemleak.h
4419F: mm/kmemleak.c
4420F: mm/kmemleak-test.c
4421
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004422KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004423M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4424M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4425M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004426M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004428F: Documentation/kprobes.txt
4429F: include/linux/kprobes.h
4430F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004431
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004432KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004433M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004434W: http://miguelojeda.es/auxdisplay.htm
4435W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004437F: Documentation/auxdisplay/ks0108
4438F: drivers/auxdisplay/ks0108.c
4439F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004440
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004443S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004444F: Documentation/networking/lapb-module.txt
4445F: include/*/lapb.h
4446F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447
4448LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004449M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450L: linux-scsi@vger.kernel.org
4451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004452F: Documentation/scsi/53c700.txt
4453F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454
Richard Purdie263de9b2006-05-15 09:44:16 -07004455LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004456M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004457M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004458L: linux-leds@vger.kernel.org
4459T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004460S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004461F: drivers/leds/
4462F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004463
Jean Delvareb0461a42011-06-15 15:08:46 -07004464LEGACY EEPROM DRIVER
4465M: Jean Delvare <khali@linux-fr.org>
4466S: Maintained
4467F: Documentation/misc-devices/eeprom
4468F: drivers/misc/eeprom/eeprom.c
4469
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004471M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472L: legousb-devel@lists.sourceforge.net
4473W: http://legousb.sourceforge.net/
4474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004475F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476
Michael Krufky055616a2012-10-02 00:56:06 -03004477LG2160 MEDIA DRIVER
4478M: Michael Krufky <mkrufky@linuxtv.org>
4479L: linux-media@vger.kernel.org
4480W: http://linuxtv.org/
4481W: http://github.com/mkrufky
4482Q: http://patchwork.linuxtv.org/project/linux-media/list/
4483T: git git://linuxtv.org/mkrufky/tuners.git
4484S: Maintained
4485F: drivers/media/dvb-frontends/lg2160.*
4486
Michael Krufky6f0e7722012-10-02 00:56:00 -03004487LGDT3305 MEDIA DRIVER
4488M: Michael Krufky <mkrufky@linuxtv.org>
4489L: linux-media@vger.kernel.org
4490W: http://linuxtv.org/
4491W: http://github.com/mkrufky
4492Q: http://patchwork.linuxtv.org/project/linux-media/list/
4493T: git git://linuxtv.org/mkrufky/tuners.git
4494S: Maintained
4495F: drivers/media/dvb-frontends/lgdt3305.*
4496
Rusty Russell568a17f2007-10-25 14:12:24 +10004497LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004498M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004499L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004500W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004501S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004502F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004503F: arch/x86/lguest/
4504F: drivers/lguest/
4505F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004506F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004507
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004509M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510W: http://www.ibm.com/linux/ltc/projects/ppc
4511S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004512F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004514LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004515M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4516M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004518L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004519Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004520T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004522F: Documentation/powerpc/
4523F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524
4525LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004526M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004528L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004530F: arch/powerpc/platforms/powermac/
4531F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532
Grant Likely77a76362008-07-12 12:11:43 -06004533LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004534M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004535L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004536T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004538F: arch/powerpc/platforms/512x/
4539F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540
4541LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004542M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004543M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004545L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004546T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004548F: arch/powerpc/platforms/40x/
4549F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550
Grant Likely260c02a2007-10-02 12:15:34 +10004551LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004552M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004553W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004554L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004555T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004557F: arch/powerpc/*/*virtex*
4558F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559
Tom Rinie93adf12005-07-26 12:49:53 -07004560LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004561M: Vitaly Bordug <vitb@kernel.crashing.org>
4562M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004563W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004564L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004565S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004566F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004567
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004569M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004570W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004571L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004572S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004573F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004574F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575
Olof Johanssonab06ff32006-09-06 14:44:54 -05004576LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004577M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004578L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004579S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004580F: arch/powerpc/platforms/pasemi/
4581F: drivers/*/*pasemi*
4582F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004583
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004585M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004586L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587S: Supported
4588
Harry Weia23ce6d2011-02-11 16:52:20 +01004589LIS3LV02D ACCELEROMETER DRIVER
4590M: Eric Piel <eric.piel@tremplin-utc.net>
4591S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004592F: Documentation/misc-devices/lis3lv02d
4593F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004594F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004595
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004596LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004597M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004599F: include/linux/llc.h
4600F: include/net/llc*
4601F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004602
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004603LM73 HARDWARE MONITOR DRIVER
4604M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4605L: lm-sensors@lm-sensors.org
4606S: Maintained
4607F: drivers/hwmon/lm73.c
4608
Jean Delvare156e2d12011-07-25 21:46:11 +02004609LM78 HARDWARE MONITOR DRIVER
4610M: Jean Delvare <khali@linux-fr.org>
4611L: lm-sensors@lm-sensors.org
4612S: Maintained
4613F: Documentation/hwmon/lm78
4614F: drivers/hwmon/lm78.c
4615
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004617M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004618L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004620F: Documentation/hwmon/lm83
4621F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622
4623LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004624M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004625L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004627F: Documentation/hwmon/lm90
4628F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004630LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004631M: Peter Zijlstra <peterz@infradead.org>
4632M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004633T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004634S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004635F: Documentation/lockdep*.txt
4636F: Documentation/lockstat.txt
4637F: include/linux/lockdep.h
4638F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004639
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004640LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004641M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004642L: linux-ntfs-dev@lists.sourceforge.net
4643W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004645F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004646F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647
Joern Engelef6ada32009-11-20 22:17:12 +01004648LogFS
4649M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304650M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004651L: logfs@logfs.org
4652W: logfs.org
4653S: Maintained
4654F: fs/logfs/
4655
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004656LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004657M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004658M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004659L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004660L: linux-scsi@vger.kernel.org
4661W: http://www.lsilogic.com/support
4662S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004663F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004664
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004666M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667L: linux-scsi@vger.kernel.org
4668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004669F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670
Guenter Roecke5f5c992010-06-25 11:59:54 -07004671LTC4261 HARDWARE MONITOR DRIVER
4672M: Guenter Roeck <linux@roeck-us.net>
4673L: lm-sensors@lm-sensors.org
4674S: Maintained
4675F: Documentation/hwmon/ltc4261
4676F: drivers/hwmon/ltc4261.c
4677
Mike Frysinger81365c32008-10-29 14:01:12 -07004678LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004679M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004680M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004681M: Cyril Hrubis <chrubis@suse.cz>
4682M: Caspar Zhang <caspar@casparzhang.com>
4683M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004684L: ltp-list@lists.sourceforge.net (subscribers-only)
4685W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004686T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004687T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004688S: Maintained
4689
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004690M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004691M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004692L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004693L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4694W: http://www.linux-m32r.org/
4695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004696F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004697
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004699M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700L: linux-m68k@lists.linux-m68k.org
4701W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004702T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004704F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004705F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706
4707M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004708M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004710L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004712F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713
4714M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004715M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716W: http://www.tazenda.demon.co.uk/phil/linux-hp
4717S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004718F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719
Jiri Benc64a327a2007-05-05 11:47:08 -07004720MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004721M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004722L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004723W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004724T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4725T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004727F: Documentation/networking/mac80211-injection.txt
4728F: include/net/mac80211.h
4729F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004730
Stefano Brivio1036d862007-12-23 04:46:27 +01004731MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004732M: Stefano Brivio <stefano.brivio@polimi.it>
4733M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004734L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004735W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004736T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4737T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004738S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004739F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004740
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004741MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004742M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004743L: netdev@vger.kernel.org
4744S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004745F: drivers/net/macvlan.c
4746F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004747
Michael Kerriskfaf16682005-07-31 22:34:47 -07004748MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004749M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004750W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004751L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004752S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004753
stephen hemminger44c14c12012-04-02 12:59:47 +00004754MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4755M: Mirko Lindner <mlindner@marvell.com>
4756M: Stephen Hemminger <shemminger@vyatta.com>
4757L: netdev@vger.kernel.org
4758S: Maintained
4759F: drivers/net/ethernet/marvell/sk*
4760
Stefano Brivio74cda162007-11-19 20:27:46 +01004761MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004762M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004763L: libertas-dev@lists.infradead.org
4764S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004765F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004766
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004767MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004768M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004769L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004770S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004771F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004772F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773
Bing Zhaofcad5842011-07-13 13:11:58 -07004774MARVELL MWIFIEX WIRELESS DRIVER
4775M: Bing Zhao <bzhao@marvell.com>
4776L: linux-wireless@vger.kernel.org
4777S: Maintained
4778F: drivers/net/wireless/mwifiex/
4779
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004780MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004781M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004782L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004783S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004784F: drivers/net/wireless/mwl8k.c
4785
Pierre Ossman2a695672009-03-16 19:52:26 +01004786MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004787M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004788S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004789F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004790
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004792L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004793S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004794F: drivers/video/matrox/matroxfb_*
4795F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796
Guenter Roeckca462082012-06-01 23:28:23 -07004797MAX16065 HARDWARE MONITOR DRIVER
4798M: Guenter Roeck <linux@roeck-us.net>
4799L: lm-sensors@lm-sensors.org
4800S: Maintained
4801F: Documentation/hwmon/max16065
4802F: drivers/hwmon/max16065.c
4803
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004804MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004805M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004806L: lm-sensors@lm-sensors.org
4807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004808F: Documentation/hwmon/max6650
4809F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004810
Joe Perches127c49a2009-04-08 08:34:04 -07004811MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07004812M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07004813P: LinuxTV.org Project
4814L: linux-media@vger.kernel.org
4815W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004816Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches08deed12012-03-23 15:01:57 -07004817T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Joe Perches127c49a2009-04-08 08:34:04 -07004818S: Maintained
4819F: Documentation/dvb/
4820F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004821F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004822F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004823F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004824F: include/media/
4825F: include/linux/dvb/
4826F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004827
4828MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004829M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004830L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004831W: http://megaraid.lsilogic.com
4832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004833F: Documentation/scsi/megaraid.txt
4834F: drivers/scsi/megaraid.*
4835F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004836
Amir Vadai2c46c9d2012-12-02 03:49:21 +00004837MELLANOX ETHERNET DRIVER (mlx4_en)
4838M: Amir Vadai <amirv@mellanox.com>
4839L: netdev@vger.kernel.org
4840S: Supported
4841W: http://www.mellanox.com
4842Q: http://patchwork.ozlabs.org/project/netdev/list/
4843F: drivers/net/ethernet/mellanox/mlx4/en_*
4844
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004845MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847W: http://www.linux-mm.org
4848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004849F: include/linux/mm.h
4850F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004851
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004852MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08004853M: Johannes Weiner <hannes@cmpxchg.org>
4854M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07004855M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004856M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08004857L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004858L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004860F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004861F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004862
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004864M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004866W: http://www.linux-mtd.infradead.org/
4867Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004868T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004870F: drivers/mtd/
4871F: include/linux/mtd/
4872F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873
Michal Simekc6375b02009-03-27 14:25:52 +01004874MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004875M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02004876L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01004877W: http://www.monstr.eu/fdt/
4878T: git git://git.monstr.eu/linux-2.6-microblaze.git
4879S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004880F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881
4882MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02004883M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004885F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886
4887MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004888M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01004890W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00004891T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01004892Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00004893S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004894F: Documentation/mips/
4895F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004898M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004900F: include/linux/module.h
4901F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902
4903MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08004905S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004906F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004907F: drivers/media/pci/meye/
Joe Perches679655d2009-04-07 20:44:32 -07004908F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909
Pavel Pisac58ff042007-05-16 01:10:41 +02004910MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004911M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004912L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02004913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004914F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02004915
Jiri Slabyb9705b62008-04-30 00:53:48 -07004916MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07004917M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08004918S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004919F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07004920F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08004921
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004922MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07004923M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004924L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004926F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004927
Anisse Astier0f1006b2009-12-17 11:28:49 +01004928MSI WMI SUPPORT
4929M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05004930L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01004931S: Supported
4932F: drivers/platform/x86/msi-wmi.c
4933
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004934MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07004935M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07004936T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004937S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004938F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004939
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02004940MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04004941M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07004942L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04004943T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
4944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004945F: drivers/mmc/
4946F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01004947
David Brownell15a05802007-08-08 09:12:54 -07004948MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06004949S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004950F: drivers/mmc/host/mmc_spi.c
4951F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004952
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004954M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004956F: Documentation/sound/oss/MultiSound
4957F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958
Jiri Slabyd7354102006-12-08 02:38:35 -08004959MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02004960S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07004961F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07004962F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004963
Felipe Balbi550a7372008-07-24 12:27:36 +03004964MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03004965M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004966L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004967T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004969F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004970
Michael Krufkyea0af5f2012-10-02 00:55:41 -03004971MXL5007T MEDIA DRIVER
4972M: Michael Krufky <mkrufky@linuxtv.org>
4973L: linux-media@vger.kernel.org
4974W: http://linuxtv.org/
4975W: http://github.com/mkrufky
4976Q: http://patchwork.linuxtv.org/project/linux-media/list/
4977T: git git://linuxtv.org/mkrufky/tuners.git
4978S: Maintained
4979F: drivers/media/tuners/mxl5007t.*
4980
Brice Goglin2d3cf582008-05-17 12:45:36 +02004981MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07004982M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02004983L: netdev@vger.kernel.org
4984W: http://www.myri.com/scs/download-Myri10GE.html
4985S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07004986F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004987
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04004989S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07004990F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991
Daniel Mack23dc05a2011-05-18 11:28:38 +02004992NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
4993M: Daniel Mack <zonque@gmail.com>
4994S: Maintained
4995L: alsa-devel@alsa-project.org
4996W: http://www.native-instruments.com
4997F: sound/usb/caiaq/
4998
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005000M: Petr Vandrovec <petr@vandrovec.name>
5001S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005002F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003
5004NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005005M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006L: linux-scsi@vger.kernel.org
5007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005008F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005010NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005011M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005012L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005013W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005014S: Supported
5015F: drivers/infiniband/hw/nes/
5016
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005017NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05005018M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07005019L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005021F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005022
Jon Masonb2f5a052010-07-15 08:47:27 +00005023NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005024M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005025L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005026S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005027F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005028F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005029F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005030
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032P: Harald Welte
5033P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005034M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005035M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005036L: netfilter-devel@vger.kernel.org
5037L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005038L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039W: http://www.netfilter.org/
5040W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005041T: git git://1984.lsi.us.es/nf
5042T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005044F: include/linux/netfilter*
5045F: include/linux/netfilter/
5046F: include/net/netfilter/
5047F: net/*/netfilter.c
5048F: net/*/netfilter/
5049F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050
Paul Moore4cc67732006-09-25 15:57:13 -07005051NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005052M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005053W: http://netlabel.sf.net
5054L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005055S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005056F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005057F: include/net/netlabel.h
5058F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005059
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005061M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005063W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005065F: include/linux/netrom.h
5066F: include/net/netrom.h
5067F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005069NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005070M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005072F: Documentation/blockdev/nbd.txt
5073F: drivers/block/nbd.c
5074F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075
Neil Horman6e436502009-10-05 03:56:55 +00005076NETWORK DROP MONITOR
5077M: Neil Horman <nhorman@tuxdriver.com>
5078L: netdev@vger.kernel.org
5079S: Maintained
5080W: https://fedorahosted.org/dropwatch/
5081F: net/core/drop_monitor.c
5082
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005084M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005085L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005086W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005087Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005088T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5089T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005091F: net/
5092F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005093F: include/linux/in.h
5094F: include/linux/net.h
5095F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096
5097NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005098M: "David S. Miller" <davem@davemloft.net>
5099M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005100M: James Morris <jmorris@namei.org>
5101M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5102M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005103L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005104T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005106F: net/ipv4/
5107F: net/ipv6/
5108F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005109F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110
David S. Miller73b76562012-10-16 14:08:40 -04005111NETWORKING [IPSEC]
5112M: Steffen Klassert <steffen.klassert@secunet.com>
5113M: Herbert Xu <herbert@gondor.apana.org.au>
5114M: "David S. Miller" <davem@davemloft.net>
5115L: netdev@vger.kernel.org
5116T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5117S: Maintained
5118F: net/xfrm/
5119F: net/key/
5120F: net/ipv4/xfrm*
5121F: net/ipv6/xfrm*
5122F: include/uapi/linux/xfrm.h
5123F: include/net/xfrm.h
5124
James Morris10e2ff12007-08-25 14:41:28 -07005125NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005126M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005127L: netdev@vger.kernel.org
5128S: Maintained
5129
John W. Linville29f8f632006-01-18 14:52:48 -08005130NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005131M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005132L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005133Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005134T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005135S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005136F: net/mac80211/
5137F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005138F: net/wireless/
5139F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005140F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005141F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005142F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005143
Joe Perches788873a2009-04-16 09:38:45 +00005144NETWORKING DRIVERS
5145L: netdev@vger.kernel.org
5146W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005147Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005148T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5149T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005150S: Odd Fixes
5151F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005152F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005153F: include/linux/netdevice.h
5154F: include/linux/arcdevice.h
5155F: include/linux/etherdevice.h
5156F: include/linux/fcdevice.h
5157F: include/linux/fddidevice.h
5158F: include/linux/hippidevice.h
5159F: include/linux/inetdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005160
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005161NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005162M: Sony Chacko <sony.chacko@qlogic.com>
5163M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005164L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005165W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005166S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005167F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005168
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005169NFC SUBSYSTEM
5170M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5171M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5172M: Samuel Ortiz <sameo@linux.intel.com>
5173L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005174L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005175S: Maintained
5176F: net/nfc/
5177F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005178F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005179F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005180F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005182NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005183M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005184L: linux-nfs@vger.kernel.org
5185W: http://client.linux-nfs.org
5186T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005188F: fs/lockd/
5189F: fs/nfs/
5190F: fs/nfs_common/
5191F: net/sunrpc/
5192F: include/linux/lockd/
5193F: include/linux/nfs*
5194F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195
5196NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005197M: Jan-Pascal van Best <janpascal@vanbest.org>
5198M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005199L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005200S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005201F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005203NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005204M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005205L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005206W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005207T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005208S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005209F: Documentation/filesystems/nilfs2.txt
5210F: fs/nilfs2/
5211F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005212
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005214M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005217F: Documentation/scsi/NinjaSCSI.txt
5218F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219
5220NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005221M: GOTO Masanori <gotom@debian.or.jp>
5222M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005225F: Documentation/scsi/NinjaSCSI.txt
5226F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005229M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005231W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005232T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005233S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005234F: Documentation/filesystems/ntfs.txt
5235F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005237NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005238M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005239L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005241F: drivers/video/riva/
5242F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243
Tony Lindgrenf5525782009-05-28 13:23:53 -07005244OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005245M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005246L: linux-omap@vger.kernel.org
5247W: http://www.muru.com/linux/omap/
5248W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005249Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005250T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005251S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005252F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005253F: drivers/i2c/busses/i2c-omap.c
5254F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005255
5256OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005257M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005258L: linux-omap@vger.kernel.org
5259S: Maintained
5260F: arch/arm/*omap*/*clock*
5261
5262OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005263M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005264L: linux-omap@vger.kernel.org
5265S: Maintained
5266F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005267F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005268
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005269OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5270M: Rajendra Nayak <rnayak@ti.com>
5271M: Paul Walmsley <paul@pwsan.com>
5272L: linux-omap@vger.kernel.org
5273S: Maintained
5274F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5275F: arch/arm/mach-omap2/powerdomain44xx.c
5276F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5277F: arch/arm/mach-omap2/clockdomain44xx.c
5278
Tony Lindgrenf5525782009-05-28 13:23:53 -07005279OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005280M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005281M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005282L: alsa-devel@alsa-project.org (subscribers-only)
5283L: linux-omap@vger.kernel.org
5284S: Maintained
5285F: sound/soc/omap/
5286
5287OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005288M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005289L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005290L: linux-omap@vger.kernel.org
5291S: Maintained
5292F: drivers/video/omap/
5293
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005294OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005295M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005296L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005297L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005298S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005299F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005300F: Documentation/arm/OMAP/DSS
5301
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005302OMAP HARDWARE SPINLOCK SUPPORT
5303M: Ohad Ben-Cohen <ohad@wizery.com>
5304L: linux-omap@vger.kernel.org
5305S: Maintained
5306F: drivers/hwspinlock/omap_hwspinlock.c
5307F: arch/arm/mach-omap2/hwspinlock.c
5308
Tony Lindgrenf5525782009-05-28 13:23:53 -07005309OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005310M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005311L: linux-omap@vger.kernel.org
5312S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005313F: drivers/mmc/host/omap.c
5314
5315OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305316M: Venkatraman S <svenkatr@ti.com>
5317L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005318L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305319S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005320F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005321
5322OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005323M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005324S: Maintained
5325F: drivers/char/hw_random/omap-rng.c
5326
Paul Walmsleyf400c822010-12-06 19:08:54 -07005327OMAP HWMOD SUPPORT
5328M: Benoît Cousson <b-cousson@ti.com>
5329M: Paul Walmsley <paul@pwsan.com>
5330L: linux-omap@vger.kernel.org
5331S: Maintained
5332F: arch/arm/mach-omap2/omap_hwmod.c
5333F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5334
5335OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5336M: Benoît Cousson <b-cousson@ti.com>
5337L: linux-omap@vger.kernel.org
5338S: Maintained
5339F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5340
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005341OMAP IMAGE SIGNAL PROCESSOR (ISP)
5342M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5343L: linux-media@vger.kernel.org
5344S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005345F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005346
Tony Lindgrenf5525782009-05-28 13:23:53 -07005347OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005348M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005349L: linux-usb@vger.kernel.org
5350L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005351T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005352S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005353F: drivers/usb/*/*omap*
5354F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005355
Kevin Hilman6d994712012-07-16 10:05:07 -07005356OMAP GPIO DRIVER
5357M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5358M: Kevin Hilman <khilman@ti.com>
5359L: linux-omap@vger.kernel.org
5360S: Maintained
5361F: drivers/gpio/gpio-omap.c
5362
Bob Copeland0ad122d2008-07-25 19:45:18 -07005363OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005364M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005365L: linux-karma-devel@lists.sourceforge.net
5366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005367F: Documentation/filesystems/omfs.txt
5368F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005369
Harald Weltec1986ee2005-11-13 16:06:29 -08005370OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005371M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005373F: drivers/char/pcmcia/cm4000_cs.c
5374F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005375
Harald Welte77c44ab2005-11-13 16:06:26 -08005376OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005377M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005379F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005380
Jonathan Corbet77d51402007-03-22 19:44:17 -03005381OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005382M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005383L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005384T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005385S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005386F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005387
Thomas Gleixner431bca72007-05-02 09:31:35 +02005388ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005389M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005390L: linux-mtd@lists.infradead.org
5391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005392F: drivers/mtd/onenand/
5393F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005394
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005396M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397L: osst-users@lists.sourceforge.net
5398L: linux-scsi@vger.kernel.org
5399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005400F: drivers/scsi/osst*
5401F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005403OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005404M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005405L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005407F: Documentation/i2c/busses/i2c-ocores
5408F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005409
Grant Likely860c44c2009-10-26 16:49:49 -07005410OPEN FIRMWARE AND FLATTENED DEVICE TREE
5411M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005412M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005413L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005414W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005415T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005416S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005417F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005418F: drivers/of
5419F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005420F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005421K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005422K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005423
Jonas Bonn19f9d392011-06-04 22:00:38 +03005424OPENRISC ARCHITECTURE
5425M: Jonas Bonn <jonas@southpole.se>
5426W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005427L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005428S: Maintained
5429T: git git://openrisc.net/~jonas/linux
5430F: arch/openrisc
5431
Jesse Grossccb13522011-10-25 19:26:31 -07005432OPENVSWITCH
5433M: Jesse Gross <jesse@nicira.com>
5434L: dev@openvswitch.org
5435W: http://openvswitch.org
5436T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5437S: Maintained
5438F: net/openvswitch/
5439
Clemens Ladischaf399172011-01-10 16:32:54 +01005440OPL4 DRIVER
5441M: Clemens Ladisch <clemens@ladisch.de>
5442L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5443T: git git://git.alsa-project.org/alsa-kernel.git
5444S: Maintained
5445F: sound/drivers/opl4/
5446
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005448M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449L: oprofile-list@lists.sf.net
5450S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005451F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005452F: arch/*/oprofile/
5453F: drivers/oprofile/
5454F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005456ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005457M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005458M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005459L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5460W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005461T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005462S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005463F: Documentation/filesystems/ocfs2.txt
5464F: Documentation/filesystems/dlmfs.txt
5465F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005466
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005468L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005469W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005470W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005471S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005472F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005474OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005475M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005476M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005477L: osd-dev@open-osd.org
5478W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005479T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005480S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005481F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005482F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005483F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005484
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005485P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005486M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005487L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005488W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005490F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005491
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005492PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005493M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005494L: netdev@vger.kernel.org
5495S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005496F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005497
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005498PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005499M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005500L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005501S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005502F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005503
Steffen Klassert48fc2672010-08-13 10:10:46 -04005504PADATA PARALLEL EXECUTION MECHANISM
5505M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005506L: linux-crypto@vger.kernel.org
5507S: Maintained
5508F: kernel/padata.c
5509F: include/linux/padata.h
5510F: Documentation/padata.txt
5511
Harald Welte709ee532008-09-23 17:46:57 +02005512PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005513M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005514L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005515S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005516F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005517
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005518PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005519M: David Howells <dhowells@redhat.com>
5520M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005521L: linux-am33-list@redhat.com (moderated for non-subscribers)
5522W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005524F: Documentation/mn10300/
5525F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005526
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005528L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005529S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005530F: drivers/parport/
5531F: include/linux/parport*.h
5532F: drivers/char/ppdev.c
5533F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005534
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005535PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005536M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005537M: Chris Wright <chrisw@sous-sol.org>
5538M: Alok Kataria <akataria@vmware.com>
5539M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005540L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005541S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005542F: Documentation/ia64/paravirt_ops.txt
5543F: arch/*/kernel/paravirt*
5544F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005545
Linus Torvalds1da177e2005-04-16 15:20:36 -07005546PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005547M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005548L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005549W: http://www.torque.net/linux-pp.html
5550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005551F: Documentation/blockdev/paride.txt
5552F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005553
5554PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005555M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005556M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005557L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005558W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005559Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005560T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005562F: arch/parisc/
5563F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005564
Jim Cromie1662d322006-10-06 00:43:59 -07005565PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005566M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005567L: lm-sensors@lm-sensors.org
5568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005569F: Documentation/hwmon/pc87360
5570F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005571
5572PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005573M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005575F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005576
Jean Delvare1ad107f2010-08-14 21:09:00 +02005577PC87427 HARDWARE MONITORING DRIVER
5578M: Jean Delvare <khali@linux-fr.org>
5579L: lm-sensors@lm-sensors.org
5580S: Maintained
5581F: Documentation/hwmon/pc87427
5582F: drivers/hwmon/pc87427.c
5583
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005584PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005585M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005586S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005587F: drivers/leds/leds-pca9532.c
5588F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005589
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005590PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005591M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005592L: linux-i2c@vger.kernel.org
5593S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005594F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005595
Wolfram Sanga1867d32009-09-18 22:45:51 +02005596PCA9564/PCA9665 I2C BUS DRIVER
5597M: Wolfram Sang <w.sang@pengutronix.de>
5598L: linux-i2c@vger.kernel.org
5599S: Maintained
5600F: drivers/i2c/algos/i2c-algo-pca.c
5601F: drivers/i2c/busses/i2c-pca-*
5602F: include/linux/i2c-algo-pca.h
5603F: include/linux/i2c-pca-platform.h
5604
Khalid Aziz3971dae2012-04-12 12:49:13 -07005605PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005606M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005607S: Maintained
5608F: drivers/firmware/pcdp.*
5609
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005610PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005611M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005612L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005613S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005614F: Documentation/PCI/pci-error-recovery.txt
5615F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005616
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005618M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005619L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005620Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005621T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005622S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005623F: Documentation/PCI/
5624F: drivers/pci/
5625F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005628P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005629L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005630W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005631T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005633F: Documentation/pcmcia/
5634F: drivers/pcmcia/
5635F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005636
5637PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005638M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005639L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005641F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642
Steffen Klassert48fc2672010-08-13 10:10:46 -04005643PCRYPT PARALLEL CRYPTO ENGINE
5644M: Steffen Klassert <steffen.klassert@secunet.com>
5645L: linux-crypto@vger.kernel.org
5646S: Maintained
5647F: crypto/pcrypt.c
5648F: include/crypto/pcrypt.h
5649
Tejun Heoe72df0b2010-12-10 17:02:49 +01005650PER-CPU MEMORY ALLOCATOR
5651M: Tejun Heo <tj@kernel.org>
5652M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005653T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5654S: Maintained
5655F: include/linux/percpu*.h
5656F: mm/percpu*.c
5657F: arch/*/include/asm/percpu.h
5658
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005659PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005660M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005662F: include/linux/delayacct.h
5663F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005664
Ingo Molnar57c0c152009-09-21 12:20:38 +02005665PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005666M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5667M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005668M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005669M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005670T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005671S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005672F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005673F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005674F: arch/*/kernel/perf_event*.c
5675F: arch/*/kernel/*/perf_event*.c
5676F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005677F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005678F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005679F: arch/*/kernel/perf_callchain.c
5680F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005681
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005682PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005683M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005684L: linux-abi-devel@lists.sourceforge.net
5685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005686F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005687
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005688PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005689M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005690S: Supported
5691F: Documentation/networking/phonet.txt
5692F: include/linux/phonet.h
5693F: include/net/phonet/
5694F: net/phonet/
5695
Linus Torvalds1da177e2005-04-16 15:20:36 -07005696PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005697M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698L: linux-mtd@lists.infradead.org
5699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005700F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005701
Bruno Prémontefdbb102012-07-30 21:39:03 +02005702PICOLCD HID DRIVER
5703M: Bruno Prémont <bonbons@linux-vserver.org>
5704L: linux-input@vger.kernel.org
5705S: Maintained
5706F: drivers/hid/hid-picolcd*
5707
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005708PICOXCELL SUPPORT
5709M: Jamie Iles <jamie@jamieiles.com>
5710L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5711T: git git://github.com/jamieiles/linux-2.6-ji.git
5712S: Supported
5713F: arch/arm/mach-picoxcell
5714F: drivers/*/picoxcell*
5715F: drivers/*/*/picoxcell*
5716
Linus Walleij2744e8a2011-05-02 20:50:54 +02005717PIN CONTROL SUBSYSTEM
5718M: Linus Walleij <linus.walleij@linaro.org>
5719S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005720F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005721F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005722
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02005723PIN CONTROLLER - ATMEL AT91
5724M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
5725L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5726S: Maintained
5727F: drivers/pinctrl/pinctrl-at91.c
5728
Viresh Kumardeda8282012-03-28 22:27:07 +05305729PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005730M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305731L: spear-devel@list.st.com
5732L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5733W: http://www.st.com/spear
5734S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005735F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305736
Peter Osterlund249a6772005-09-27 21:45:30 -07005737PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005738M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005740F: drivers/block/pktcdvd.c
5741F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005742
GuanXuetaob31d8272011-01-16 00:35:49 +08005743PKUNITY SOC DRIVERS
5744M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5745W: http://mprc.pku.edu.cn/~guanxuetao/linux
5746S: Maintained
5747T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5748F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005749F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005750F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005751F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005752
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005753PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005754M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005755L: lm-sensors@lm-sensors.org
5756W: http://www.lm-sensors.org/
5757W: http://www.roeck-us.net/linux/drivers/
5758T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5759S: Maintained
5760F: Documentation/hwmon/pmbus
5761F: drivers/hwmon/pmbus/
5762F: include/linux/i2c/pmbus.h
5763
Anil Ravindranath89a36812009-08-25 17:35:18 -07005764PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005765M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005766L: linux-scsi@vger.kernel.org
5767W: http://www.pmc-sierra.com/
5768S: Supported
5769F: drivers/scsi/pmcraid.*
5770
jack wangdbf9bfe2009-10-14 16:19:21 +08005771PMC SIERRA PM8001 DRIVER
5772M: jack_wang@usish.com
5773M: lindar_liu@usish.com
5774L: linux-scsi@vger.kernel.org
5775S: Supported
5776F: drivers/scsi/pm8001/
5777
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005779M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005780T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005781S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005782F: fs/timerfd.c
5783F: include/linux/timer*
5784F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005785
Anton Vorontsov3be86142007-07-15 04:43:36 +04005786POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005787M: Anton Vorontsov <cbou@mail.ru>
5788M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005789T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005790S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005791F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005792F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005793
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005795M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005796M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005798F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005799
Vitaly Wool999445d2007-01-04 13:07:03 +01005800PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005801M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005802L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005804F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005805
Linus Torvalds1da177e2005-04-16 15:20:36 -07005806PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005807M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808L: linux-ppp@vger.kernel.org
5809S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005810F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811
5812PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005813M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005815F: net/atm/pppoatm.c
5816F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005817
5818PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005819M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005820S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005821F: drivers/net/ppp/pppoe.c
5822F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823
James Chapmana6d23702007-06-27 15:53:17 -07005824PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005825M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005826S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005827F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005828F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005829
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005830PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005831M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005832W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5833L: linuxpps@ml.enneenne.com (subscribers-only)
5834S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005835F: Documentation/pps/
5836F: drivers/pps/
5837F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005838
Harry Wei71a6d0a2011-05-11 15:13:33 -07005839PPTP DRIVER
5840M: Dmitry Kozlov <xeb@mail.ru>
5841L: netdev@vger.kernel.org
5842S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005843F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005844W: http://sourceforge.net/projects/accel-pptp
5845
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005847M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848L: kpreempt-tech@lists.sourceforge.net
5849W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5850S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005851F: Documentation/preempt-locking.txt
5852F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853
5854PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005855M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005856L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005857W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005858S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005859F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005861PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005862M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005863L: linux-ide@vger.kernel.org
5864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005865F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005866
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005867PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005868M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005869L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005870L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005871S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07005872F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005873
Geoff Levandf58a9d12006-11-23 00:46:51 +01005874PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005875M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005876L: linuxppc-dev@lists.ozlabs.org
5877L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005879F: arch/powerpc/boot/ps3*
5880F: arch/powerpc/include/asm/lv1call.h
5881F: arch/powerpc/include/asm/ps3*.h
5882F: arch/powerpc/platforms/ps3/
5883F: drivers/*/ps3*
5884F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00005885F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07005886F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00005887F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01005888
Jim Pariscffb4add2009-01-06 11:32:10 +00005889PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005890M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005891L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00005892S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07005893F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00005894
Anton Vorontsov8defe592012-08-03 18:07:20 -07005895PSTORE FILESYSTEM
5896M: Anton Vorontsov <cbouatmailru@gmail.com>
5897M: Colin Cross <ccross@android.com>
5898M: Kees Cook <keescook@chromium.org>
5899M: Tony Luck <tony.luck@intel.com>
5900S: Maintained
5901T: git git://git.infradead.org/users/cbou/linux-pstore.git
5902F: fs/pstore/
5903F: include/linux/pstore*
5904F: drivers/firmware/efivars.c
5905F: drivers/acpi/apei/erst.c
5906
Richard Cochran7fbc4152012-03-10 01:55:53 +00005907PTP HARDWARE CLOCK SUPPORT
5908M: Richard Cochran <richardcochran@gmail.com>
5909S: Maintained
5910W: http://linuxptp.sourceforge.net/
5911F: Documentation/ABI/testing/sysfs-ptp
5912F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07005913F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00005914F: drivers/net/phy/dp83640*
5915F: drivers/ptp/*
5916F: include/linux/ptp_cl*
5917
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005918PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005919M: Roland McGrath <roland@redhat.com>
5920M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005921S: Maintained
5922F: include/asm-generic/syscall.h
5923F: include/linux/ptrace.h
5924F: include/linux/regset.h
5925F: include/linux/tracehook.h
5926F: kernel/ptrace.c
5927
Michael Krufky83202042006-07-03 00:24:18 -07005928PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005929M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03005930L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005931L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07005932W: http://www.isely.net/pvrusb2/
Joe Perches08deed12012-03-23 15:01:57 -07005933T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Michael Krufky83202042006-07-03 00:24:18 -07005934S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005935F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03005936F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07005937
Thierry Reding200efed2012-03-27 13:16:18 +02005938PWM SUBSYSTEM
5939M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005940L: linux-kernel@vger.kernel.org
5941S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02005942W: http://gitorious.org/linux-pwm
5943T: git git://gitorious.org/linux-pwm/linux-pwm.git
5944F: Documentation/pwm.txt
5945F: Documentation/devicetree/bindings/pwm/
5946F: include/linux/pwm.h
5947F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005948F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07005949F: drivers/video/backlight/pwm_bl.c
5950F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005951
Eric Miao30ec2612008-06-12 15:21:41 -07005952PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005953M: Eric Miao <eric.y.miao@gmail.com>
5954M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005955M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005956L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005957T: git git://github.com/hzhuang1/linux.git
5958T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005960F: arch/arm/mach-pxa/
5961F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08005962F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07005963F: drivers/usb/gadget/pxa2*
5964F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01005965F: sound/arm/pxa*
5966F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005968MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005969M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005970M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005971L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005972T: git git://github.com/hzhuang1/linux.git
5973T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005974S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005975F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005976
Pierre Ossman272f1332007-05-14 21:25:26 +02005977PXA MMCI DRIVER
5978S: Orphan
5979
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005980PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005981M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005982L: rtc-linux@googlegroups.com
5983S: Maintained
5984
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005985QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005986M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005987L: linux-rdma@vger.kernel.org
5988S: Supported
5989F: drivers/infiniband/hw/qib/
5990
Jes Sorensen5e9772b2010-06-30 15:37:38 +02005991QLOGIC QLA1280 SCSI DRIVER
5992M: Michael Reed <mdr@sgi.com>
5993L: linux-scsi@vger.kernel.org
5994S: Maintained
5995F: drivers/scsi/qla1280.[ch]
5996
Linus Torvalds1da177e2005-04-16 15:20:36 -07005997QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005998M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08005999M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006000L: linux-scsi@vger.kernel.org
6001S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006002F: Documentation/scsi/LICENSE.qla2xxx
6003F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004
Ravi Anand883c98f2010-04-28 11:45:49 +05306005QLOGIC QLA4XXX iSCSI DRIVER
6006M: Ravi Anand <ravi.anand@qlogic.com>
6007M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6008M: iscsi-driver@qlogic.com
6009L: linux-scsi@vger.kernel.org
6010S: Supported
6011F: drivers/scsi/qla4xxx/
6012
Ron Mercer5a4faa872006-07-25 00:40:21 -07006013QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006014M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006015M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006016M: linux-driver@qlogic.com
6017L: netdev@vger.kernel.org
6018S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006019F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006020F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006021
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006022QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006023M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006024M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006025M: linux-driver@qlogic.com
6026L: netdev@vger.kernel.org
6027S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006028F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006029
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006030QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006031M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006032M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006033M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006034L: netdev@vger.kernel.org
6035S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006036F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006037
Linus Torvalds1da177e2005-04-16 15:20:36 -07006038QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006039M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006040W: http://www.alarsen.net/linux/qnx4fs/
6041S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006042F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07006043F: include/linux/qnx4_fs.h
6044F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045
Antti Palosaari91952bc2012-10-01 12:28:46 -03006046QT1010 MEDIA DRIVER
6047M: Antti Palosaari <crope@iki.fi>
6048L: linux-media@vger.kernel.org
6049W: http://linuxtv.org/
6050W: http://palosaari.fi/linux/
6051Q: http://patchwork.linuxtv.org/project/linux-media/list/
6052T: git git://linuxtv.org/anttip/media_tree.git
6053S: Maintained
6054F: drivers/media/tuners/qt1010*
6055
Richard Kuo4f4567c2011-10-31 18:56:38 -05006056QUALCOMM HEXAGON ARCHITECTURE
6057M: Richard Kuo <rkuo@codeaurora.org>
6058L: linux-hexagon@vger.kernel.org
6059S: Supported
6060F: arch/hexagon/
6061
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006062RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006063M: Yehuda Sadeh <yehuda@inktank.com>
6064M: Sage Weil <sage@inktank.com>
6065M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006066M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006067W: http://ceph.com/
6068T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006069S: Supported
6070F: drivers/block/rbd.c
6071F: drivers/block/rbd_types.h
6072
Linus Torvalds1da177e2005-04-16 15:20:36 -07006073RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006074M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006075L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006077F: drivers/video/aty/radeon*
6078F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079
6080RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006081M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006082L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006084F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006085
Randy Dunlape7839f22008-10-12 16:11:45 -07006086RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006087P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006088M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006089M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006090M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006091L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006092L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006093W: http://rt2x00.serialmonkey.com/
6094S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006095T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006096F: drivers/net/wireless/rt2x00/
6097
Nick Piggin9db55792008-02-08 04:19:49 -08006098RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006099M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006101F: Documentation/blockdev/ramdisk.txt
6102F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006103
Matt Mackall9e95ce22005-04-16 15:25:56 -07006104RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006105M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006107F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006108
Matt Porter394b7012005-11-07 01:00:15 -08006109RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006110M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006111M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006113F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006114
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006115RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006116L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006117S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006118F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006119
6120RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006121M: Josh Triplett <josh@freedesktop.org>
6122M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006123S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006124T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006125F: Documentation/RCU/torture.txt
6126F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006127
Florian Fainellic1f766b2008-02-06 22:39:44 +01006128RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006129M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006130S: Maintained
6131
Florian Fainellidb17f392007-12-19 11:30:30 +01006132RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006133M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006134L: netdev@vger.kernel.org
6135S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006136F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006137
Andy Grovera09ed662009-02-24 15:30:41 +00006138RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006139M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006140L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006141S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006142F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006143
Josh Triplett595182b2006-10-04 02:17:21 -07006144READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006145M: Dipankar Sarma <dipankar@in.ibm.com>
6146M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006147W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006148S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006149T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006150F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006151X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006152F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006153F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006154X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006155
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006156REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006157M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006158L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006159Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006161F: Documentation/rtc.txt
6162F: drivers/rtc/
6163F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006164
Linus Torvalds1da177e2005-04-16 15:20:36 -07006165REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006166L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006167S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006168F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006169
Mark Brownb83a3132011-05-11 19:59:58 +02006170REGISTER MAP ABSTRACTION
6171M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6172T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6173S: Supported
6174F: drivers/base/regmap/
6175F: include/linux/regmap.h
6176
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006177REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6178M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006179T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006180S: Maintained
6181F: drivers/remoteproc/
6182F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006183F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006184
Ivo van Doorne08976452008-04-12 19:23:55 +02006185RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006186M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006187L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006188W: http://wireless.kernel.org/
6189T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6190T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006191S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006192F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006193F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006194
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006195RICOH SMARTMEDIA/XD DRIVER
6196M: Maxim Levitsky <maximlevitsky@gmail.com>
6197S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006198F: drivers/mtd/nand/r852.c
6199F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006200
Maxim Levitsky92634122011-03-25 01:56:59 -07006201RICOH R5C592 MEMORYSTICK DRIVER
6202M: Maxim Levitsky <maximlevitsky@gmail.com>
6203S: Maintained
6204F: drivers/memstick/host/r592.*
6205
Linus Torvalds1da177e2005-04-16 15:20:36 -07006206ROCKETPORT DRIVER
6207P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006208W: http://www.comtrol.com
6209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006210F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006211F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006212
6213ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006214M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006216W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006218F: include/linux/rose.h
6219F: include/net/rose.h
6220F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006221
Antti Palosaari91952bc2012-10-01 12:28:46 -03006222RTL2830 MEDIA DRIVER
6223M: Antti Palosaari <crope@iki.fi>
6224L: linux-media@vger.kernel.org
6225W: http://linuxtv.org/
6226W: http://palosaari.fi/linux/
6227Q: http://patchwork.linuxtv.org/project/linux-media/list/
6228T: git git://linuxtv.org/anttip/media_tree.git
6229S: Maintained
6230F: drivers/media/dvb-frontends/rtl2830*
6231
Larry Finger59840482008-11-12 17:13:09 -06006232RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006233M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006234L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006235W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006236T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006237S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006238F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006239
Larry Finger59840482008-11-12 17:13:09 -06006240RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006241M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006242M: Hin-Tak Leung <htl10@users.sourceforge.net>
6243M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006244L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006245W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006246T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006247S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006248F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006249
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006250RTL8192CE WIRELESS DRIVER
6251M: Larry Finger <Larry.Finger@lwfinger.net>
6252M: Chaoming Li <chaoming_li@realsil.com.cn>
6253L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006254W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006255T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6256S: Maintained
6257F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006258F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006259
6260S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006261M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006262L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006264F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006265
Linus Torvalds1da177e2005-04-16 15:20:36 -07006266S390
Joe Perches8b58be82009-07-29 15:04:30 -07006267M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6268M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006270L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006271W: http://www.ibm.com/developerworks/linux/linux390/
6272S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006273F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006274F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006275F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006276F: Documentation/s390/
6277F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006278
6279S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006280M: Ursula Braun <ursula.braun@de.ibm.com>
6281M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006282M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006283L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006284W: http://www.ibm.com/developerworks/linux/linux390/
6285S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006286F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006287
Felix Beckfeed9b62009-03-26 15:24:23 +01006288S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006289M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006290M: linux390@de.ibm.com
6291L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006292W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006293S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006294F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006295
Heiko Carstens5238da42006-02-11 17:56:01 -08006296S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006297M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006298M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006299L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006300W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006301S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006302F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303
Ursula Braundd96df22007-09-19 13:09:02 +02006304S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006305M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006306M: linux390@de.ibm.com
6307L: linux-s390@vger.kernel.org
6308W: http://www.ibm.com/developerworks/linux/linux390/
6309S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006310F: drivers/s390/net/*iucv*
6311F: include/net/iucv/
6312F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006313
Ben Dooks4dde7f72008-06-30 22:40:38 +01006314S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006315M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006316L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006317S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006318F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006319
Linus Torvalds1da177e2005-04-16 15:20:36 -07006320SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006321M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006322L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006323T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006324W: http://www.mihu.de/linux/saa7146
6325S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006326F: drivers/media/common/saa7146/
6327F: drivers/media/pci/saa7146/
6328F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006329
Corentin Chary92304a42011-12-05 12:38:35 -05006330SAMSUNG LAPTOP DRIVER
6331M: Corentin Chary <corentincj@iksaif.net>
6332L: platform-driver-x86@vger.kernel.org
6333S: Maintained
6334F: drivers/platform/x86/samsung-laptop.c
6335
Mark Brown4a109cc2010-09-24 10:50:46 +01006336SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006337M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006338L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6339S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006340F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006341
Jingoo Han0d89a282011-12-19 11:09:35 +09006342SAMSUNG FRAMEBUFFER DRIVER
6343M: Jingoo Han <jg1.han@samsung.com>
6344L: linux-fbdev@vger.kernel.org
6345S: Maintained
6346F: drivers/video/s3c-fb.c
6347
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006348SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6349M: Sangbeom Kim <sbkim73@samsung.com>
6350L: linux-kernel@vger.kernel.org
6351S: Supported
6352F: drivers/mfd/sec*.c
6353F: drivers/regulator/s2m*.c
6354F: drivers/regulator/s5m*.c
6355F: drivers/rtc/rtc-sec.c
6356F: include/linux/mfd/samsung/
6357
Alan Coxca749e22011-03-18 13:56:14 +00006358SERIAL DRIVERS
6359M: Alan Cox <alan@linux.intel.com>
6360L: linux-serial@vger.kernel.org
6361S: Maintained
6362F: drivers/tty/serial
6363
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306364SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006365M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306366S: Maintained
6367F: include/linux/dw_dmac.h
6368F: drivers/dma/dw_dmac_regs.h
6369F: drivers/dma/dw_dmac.c
6370
Thomas Gleixner88606e82010-12-14 21:37:13 +01006371TIMEKEEPING, NTP
6372M: John Stultz <johnstul@us.ibm.com>
6373M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006374T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006375S: Supported
6376F: include/linux/clocksource.h
6377F: include/linux/time.h
6378F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006379F: kernel/time/clocksource.c
6380F: kernel/time/time*.c
6381F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006382F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006383
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006384TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006385M: Huang Shijie <shijie8@gmail.com>
6386M: Kang Yong <kangyong@telegent.com>
6387M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006388S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006389F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006390
Linus Torvalds1da177e2005-04-16 15:20:36 -07006391SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006392M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006394F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006395
6396SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006397M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006398M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006399T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006401F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006402F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006403
Chen Liqin6bcf6732009-06-13 15:24:33 +08006404SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006405M: Chen Liqin <liqin.chen@sunplusct.com>
6406M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006407W: http://www.sunplusct.com
6408S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006409F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006410
Linus Torvalds1da177e2005-04-16 15:20:36 -07006411SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006412M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006413L: linux-scsi@vger.kernel.org
6414W: http://www.kernel.dk
6415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006416F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417
Roland Dreierfb50a832010-10-07 09:54:53 -07006418SCSI RDMA PROTOCOL (SRP) INITIATOR
6419M: David Dillow <dillowda@ornl.gov>
6420L: linux-rdma@vger.kernel.org
6421S: Supported
6422W: http://www.openfabrics.org
6423Q: http://patchwork.kernel.org/project/linux-rdma/list/
6424T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6425F: drivers/infiniband/ulp/srp/
6426F: include/scsi/srp.h
6427
Linus Torvalds1da177e2005-04-16 15:20:36 -07006428SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006429M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006430L: linux-scsi@vger.kernel.org
6431W: http://www.torque.net/sg
6432S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006433F: drivers/scsi/sg.c
6434F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006435
6436SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006437M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006438L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006439T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6440T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6441T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006443F: drivers/scsi/
6444F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445
6446SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006447M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448L: linux-scsi@vger.kernel.org
6449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006450F: Documentation/scsi/st.txt
6451F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006452
6453SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006454M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006455M: Sridhar Samudrala <sri@us.ibm.com>
Neil Horman02c38d02012-10-24 09:26:51 +00006456M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006457L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006458W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006460F: Documentation/networking/sctp.txt
6461F: include/linux/sctp.h
6462F: include/net/sctp/
6463F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006464
6465SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006466M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006467S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006468F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006469F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006470F: drivers/watchdog/scx200_wdt.c
6471F: drivers/i2c/busses/scx200*
6472F: drivers/mtd/maps/scx200_docflash.c
6473F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006474
6475SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006476M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006478F: drivers/char/scx200_gpio.c
6479F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006480
6481SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006482M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006484F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006485
Sascha Sommer6a369132008-07-15 14:21:29 +02006486SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006487M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006488L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006490F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006491
Randy Dunlape7839f22008-10-12 16:11:45 -07006492SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006493M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006494L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006495T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6496S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006497F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006498F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006499
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006500SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006501M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006502L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006503L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006504S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006505F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006506
Ben Dooks0d1bb412009-06-14 13:52:37 +01006507SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006508M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006509L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006510S: Maintained
6511F: drivers/mmc/host/sdhci-s3c.c
6512
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006513SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006514M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006515L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006516L: linux-mmc@vger.kernel.org
6517S: Maintained
6518F: drivers/mmc/host/sdhci-spear.c
6519
James Morris8711cca2008-12-04 03:19:45 +11006520SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006521M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006522L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006523T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006524W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006525S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006526F: security/
James Morris8711cca2008-12-04 03:19:45 +11006527
Linus Torvalds1da177e2005-04-16 15:20:36 -07006528SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006529M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006530S: Supported
6531
6532SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006533M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006534M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006535M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006536L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006537W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006538T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006539S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006540F: include/linux/selinux*
6541F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006542F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006543
John Johansenc1c124e2010-07-29 14:48:09 -07006544APPARMOR SECURITY MODULE
6545M: John Johansen <john.johansen@canonical.com>
6546L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6547W: apparmor.wiki.kernel.org
6548T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6549S: Supported
6550F: security/apparmor/
6551
Jiri Slabycef2cf02007-05-08 00:31:45 -07006552SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006553M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006555F: drivers/misc/phantom.c
6556F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006557
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006558SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006559M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006560L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006561T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006562S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006563F: drivers/ata/
6564F: include/linux/ata.h
6565F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306567SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006568M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006569L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006570W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006571S: Supported
6572F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306573
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006574SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006575M: Sathya Perla <sathya.perla@emulex.com>
6576M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6577M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006578L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006579W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006580S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006581F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006582
Ben Hutchings8ceee662008-04-27 12:55:59 +01006583SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006584M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006585M: Ben Hutchings <bhutchings@solarflare.com>
6586L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006587S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006588F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006589
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006590SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006591M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006592S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006593F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006594
6595SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006596M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006597L: linux-ia64@vger.kernel.org
6598S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006599F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006600F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006601F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006602
Linus Torvalds1da177e2005-04-16 15:20:36 -07006603SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006604M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605L: linux-visws-devel@lists.sf.net
6606W: http://linux-visws.sf.net
6607S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006608F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006609
Jack Steiner75312612008-08-15 00:40:42 -07006610SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006611M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006613F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006614
Len Brown6349d992009-08-14 15:07:14 -04006615SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006616M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006617L: sfi-devel@simplefirmware.org
6618W: http://simplefirmware.org/
6619T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006620S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006621F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006622F: drivers/sfi/
6623F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006624
Linus Torvalds1da177e2005-04-16 15:20:36 -07006625SIMTEC EB110ATX (Chalice CATS)
6626P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006627P: Vincent Sanders <vince@simtec.co.uk>
6628M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006629W: http://www.simtec.co.uk/products/EB110ATX/
6630S: Supported
6631
6632SIMTEC EB2410ITX (BAST)
6633P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006634P: Vincent Sanders <vince@simtec.co.uk>
6635M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006636W: http://www.simtec.co.uk/products/EB2410ITX/
6637S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006638F: arch/arm/mach-s3c2410/mach-bast.c
6639F: arch/arm/mach-s3c2410/bast-ide.c
6640F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006641
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006642TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006643M: Sekhar Nori <nsekhar@ti.com>
6644M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306645L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306646T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006647Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006648S: Supported
6649F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006650F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006651
Francois Romieu92aab3c2005-07-30 13:11:18 +02006652SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006653M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006654L: netdev@vger.kernel.org
6655S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006656F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006657
Linus Torvalds1da177e2005-04-16 15:20:36 -07006658SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006659M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006660W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006661L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006662S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006663F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006664
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006665SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006666M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006667L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006669F: Documentation/i2c/busses/i2c-sis96x
6670F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006671
Linus Torvalds1da177e2005-04-16 15:20:36 -07006672SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006673M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006676F: Documentation/fb/sisfb.txt
6677F: drivers/video/sis/
6678F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006679
6680SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006681M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006682W: http://www.winischhofer.at/linuxsisusbvga.shtml
6683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006684F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006685
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006686SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006687M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006688M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006689M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006690L: linux-mm@kvack.org
6691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006692F: include/linux/sl?b*.h
6693F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006694
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006695SLEEPABLE READ-COPY UPDATE (SRCU)
6696M: Lai Jiangshan <laijs@cn.fujitsu.com>
6697M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6698W: http://www.rdrop.com/users/paulmck/RCU/
6699S: Supported
6700T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6701F: include/linux/srcu*
6702F: kernel/srcu*
6703
Casey Schaufler66372842012-05-23 18:34:52 -07006704SMACK SECURITY MODULE
6705M: Casey Schaufler <casey@schaufler-ca.com>
6706L: linux-security-module@vger.kernel.org
6707W: http://schaufler-ca.com
6708T: git git://git.gitorious.org/smack-next/kernel.git
6709S: Maintained
6710F: Documentation/security/Smack.txt
6711F: security/smack/
6712
Linus Torvalds1da177e2005-04-16 15:20:36 -07006713SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006714M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006715S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006716F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006717
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006718SMM665 HARDWARE MONITOR DRIVER
6719M: Guenter Roeck <linux@roeck-us.net>
6720L: lm-sensors@lm-sensors.org
6721S: Maintained
6722F: Documentation/hwmon/smm665
6723F: drivers/hwmon/smm665.c
6724
Steve Glendinning9df73052010-08-14 21:08:54 +02006725SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006726M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006727L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006728S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006729F: Documentation/hwmon/emc2103
6730F: drivers/hwmon/emc2103.c
6731
Hans de Goedea98d5062011-03-21 17:59:36 +01006732SMSC SCH5627 HARDWARE MONITOR DRIVER
6733M: Hans de Goede <hdegoede@redhat.com>
6734L: lm-sensors@lm-sensors.org
6735S: Supported
6736F: Documentation/hwmon/sch5627
6737F: drivers/hwmon/sch5627.c
6738
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006739SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006740M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006741L: lm-sensors@lm-sensors.org
6742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006743F: Documentation/hwmon/smsc47b397
6744F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006745
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006746SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006747M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006748L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006750F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006751F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006752
Steve Glendinning2cb37722008-12-11 20:54:30 -08006753SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006754M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006755L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006756S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006757F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006758
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006759SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006760M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006761L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006762S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006763F: drivers/video/smscufx.c
6764
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006765SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006766M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006767L: linux-altix@sgi.com
6768L: linux-ia64@vger.kernel.org
6769W: http://www.sgi.com/altix
6770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006771F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006772
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006773SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006774M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006775L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006776T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006777S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006778F: include/media/soc*
6779F: drivers/media/i2c/soc_camera/
6780F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006781
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006782SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006783M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006785F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006786
Linus Torvalds1da177e2005-04-16 15:20:36 -07006787SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006788M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006789L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006790S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006791F: drivers/md/
6792F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006793
Linus Torvalds1da177e2005-04-16 15:20:36 -07006794SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006795M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006796L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006797S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07006798F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006799
Michael Buesch61e115a2007-09-18 15:12:50 -04006800SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02006801M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04006802L: netdev@vger.kernel.org
6803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006804F: drivers/ssb/
6805F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04006806
Linus Torvalds1da177e2005-04-16 15:20:36 -07006807SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006808M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05006809L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01006810W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07006811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006812F: Documentation/laptops/sony-laptop.txt
6813F: drivers/char/sonypi.c
6814F: drivers/platform/x86/sony-laptop.c
6815F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006816
Alex Dubovbaf85322008-02-09 10:20:54 -08006817SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006818M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08006819W: http://tifmxx.berlios.de/
6820S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006821F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08006822
Linus Torvalds1da177e2005-04-16 15:20:36 -07006823SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07006824M: Jaroslav Kysela <perex@perex.cz>
6825M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07006826L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07006827W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02006828T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07006829T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006830S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07006831F: Documentation/sound/
6832F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07006833F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006834
Mark Brownbd903bd2008-11-19 19:16:05 +00006835SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01006836M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006837M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00006838T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07006839L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01006840W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006841S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006842F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01006843F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006844
Sam Ravnborg473321f2009-01-04 15:47:49 -08006845SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07006846M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006847L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006848Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07006849T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6850T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006852F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07006853F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006854
David S. Miller6404fcc2010-03-16 01:00:17 -07006855SPARC SERIAL DRIVERS
6856M: "David S. Miller" <davem@davemloft.net>
6857L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006858T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6859T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07006860S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05006861F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006862F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006863F: drivers/tty/serial/sunhv.c
6864F: drivers/tty/serial/sunsab.c
6865F: drivers/tty/serial/sunsab.h
6866F: drivers/tty/serial/sunsu.c
6867F: drivers/tty/serial/sunzilog.c
6868F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07006869
Christopher Li389325b2012-04-05 14:25:14 -07006870SPARSE CHECKER
6871M: "Christopher Li" <sparse@chrisli.org>
6872L: linux-sparse@vger.kernel.org
6873W: https://sparse.wiki.kernel.org/
6874T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
6875T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
6876S: Maintained
6877F: include/linux/compiler.h
6878
viresh kumarfc0c1952010-04-01 12:31:21 +01006879SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006880M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306881M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006882L: spear-devel@list.st.com
6883L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006884W: http://www.st.com/spear
6885S: Maintained
6886F: arch/arm/plat-spear/
6887
Viresh Kumar71e09a92012-04-20 22:39:48 +05306888SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006889M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306890M: Shiraz Hashim <shiraz.hashim@st.com>
6891L: spear-devel@list.st.com
6892L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6893W: http://www.st.com/spear
6894S: Maintained
6895F: arch/arm/mach-spear13xx/
6896
viresh kumarfc0c1952010-04-01 12:31:21 +01006897SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006898M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306899M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006900L: spear-devel@list.st.com
6901L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006902W: http://www.st.com/spear
6903S: Maintained
6904F: arch/arm/mach-spear3xx/
6905
6906SPEAR6XX MACHINE SUPPORT
6907M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306908M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006909M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006910L: spear-devel@list.st.com
6911L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006912W: http://www.st.com/spear
6913S: Maintained
6914F: arch/arm/mach-spear6xx/
6915
6916SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006917M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006918L: spear-devel@list.st.com
6919L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006920W: http://www.st.com/spear
6921S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05306922F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01006923
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006924SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07006925M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006926L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08006927Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06006928T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006929S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006930F: Documentation/spi/
6931F: drivers/spi/
6932F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006933
Jim Lewis2752e402006-09-29 02:01:19 -07006934SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07006935M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
6936M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07006937L: netdev@vger.kernel.org
6938S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006939F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006940F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07006941
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006942SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006943M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006944L: linuxppc-dev@lists.ozlabs.org
6945L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006946W: http://www.ibm.com/developerworks/power/cell/
6947S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006948F: Documentation/filesystems/spufs.txt
6949F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006950
Phillip Lougherfc555842009-01-05 08:46:29 +00006951SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01006952M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00006953L: squashfs-devel@lists.sourceforge.net (subscribers-only)
6954W: http://squashfs.org.uk
6955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006956F: Documentation/filesystems/squashfs.txt
6957F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00006958
Linus Torvalds1da177e2005-04-16 15:20:36 -07006959SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07006960M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006962F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006963
Linus Torvalds26e9a392008-10-17 09:50:12 -07006964STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08006965M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08006966L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08006967S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006968
Linus Torvalds26e9a392008-10-17 09:50:12 -07006969STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08006970M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07006971T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07006972L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08006973S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006974F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07006975
Joe Perchesc8c8b102011-07-05 09:42:12 -07006976STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
6977M: Henk de Groot <pe1dnn@amsat.org>
6978S: Odd Fixes
6979F: drivers/staging/wlags49_h2/
6980F: drivers/staging/wlags49_h25/
6981
Joe Perchesc9555152011-07-05 09:42:01 -07006982STAGING - ASUS OLED
6983M: Jakub Schmidtke <sjakub@gmail.com>
6984S: Odd Fixes
6985F: drivers/staging/asus_oled/
6986
Joe Perchesebd3d012011-07-05 09:42:02 -07006987STAGING - COMEDI
6988M: Ian Abbott <abbotti@mev.co.uk>
6989M: Mori Hess <fmhess@users.sourceforge.net>
6990S: Odd Fixes
6991F: drivers/staging/comedi/
6992
Joe Perches8ca572c2011-07-05 09:42:03 -07006993STAGING - CRYSTAL HD VIDEO DECODER
6994M: Naren Sankar <nsankar@broadcom.com>
6995M: Jarod Wilson <jarod@wilsonet.com>
6996M: Scott Davilla <davilla@4pi.com>
6997M: Manu Abraham <abraham.manu@gmail.com>
6998S: Odd Fixes
6999F: drivers/staging/crystalhd/
7000
Joe Perches0f16ffc2011-07-05 09:42:04 -07007001STAGING - ECHO CANCELLER
7002M: Steve Underwood <steveu@coppice.org>
7003M: David Rowe <david@rowetel.com>
7004S: Odd Fixes
7005F: drivers/staging/echo/
7006
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007007STAGING - ET131X NETWORK DRIVER
7008M: Mark Einon <mark.einon@gmail.com>
7009S: Odd Fixes
7010F: drivers/staging/et131x/
7011
Joe Perchesa0138162011-07-05 15:21:34 -07007012STAGING - FLARION FT1000 DRIVERS
7013M: Marek Belisko <marek.belisko@gmail.com>
7014S: Odd Fixes
7015F: drivers/staging/ft1000/
7016
Joe Perchesec3fab92011-07-05 09:42:05 -07007017STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7018M: David Täht <d@teklibre.com>
7019S: Odd Fixes
7020F: drivers/staging/frontier/
7021
Joe Perches6c1bb422011-07-05 09:42:07 -07007022STAGING - INDUSTRIAL IO
7023M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007024L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007025S: Odd Fixes
7026F: drivers/staging/iio/
7027
Joe Perchesa0138162011-07-05 15:21:34 -07007028STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7029M: Jarod Wilson <jarod@wilsonet.com>
7030W: http://www.lirc.org/
7031S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007032F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007033
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007034STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007035M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007036M: Marc Dietrich <marvin24@gmx.de>
7037L: ac100@lists.launchpad.net (moderated for non-subscribers)
7038S: Maintained
7039F: drivers/staging/nvec/
7040
Joe Perchesa0138162011-07-05 15:21:34 -07007041STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7042M: Andres Salomon <dilinger@queued.net>
7043M: Chris Ball <cjb@laptop.org>
7044M: Jon Nettleton <jon.nettleton@gmail.com>
7045W: http://wiki.laptop.org/go/DCON
7046S: Odd Fixes
7047F: drivers/staging/olpc_dcon/
7048
Chris Kelly94cfdd12012-03-14 10:55:42 +00007049STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00007050M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007051M: Chris Kelly <ckelly@ozmodevices.com>
7052S: Maintained
7053F: drivers/staging/ozwpan/
7054
Joe Perchesa0138162011-07-05 15:21:34 -07007055STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007056M: Willy Tarreau <willy@meta-x.org>
7057S: Odd Fixes
7058F: drivers/staging/panel/
7059
Joe Perchesa0138162011-07-05 15:21:34 -07007060STAGING - REALTEK RTL8712U DRIVERS
7061M: Larry Finger <Larry.Finger@lwfinger.net>
7062M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7063S: Odd Fixes
7064F: drivers/staging/rtl8712/
7065
Joe Perches9629fa82011-07-05 09:42:09 -07007066STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7067M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7068S: Odd Fixes
7069F: drivers/staging/sm7xx/
7070
Joe Perchesa0138162011-07-05 15:21:34 -07007071STAGING - SOFTLOGIC 6x10 MPEG CODEC
7072M: Ben Collins <bcollins@bluecherry.net>
7073S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007074F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007075
7076STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7077M: William Hubbs <w.d.hubbs@gmail.com>
7078M: Chris Brannon <chris@the-brannons.com>
7079M: Kirk Reiser <kirk@braille.uwo.ca>
7080M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7081L: speakup@braille.uwo.ca
7082W: http://www.linux-speakup.org/
7083S: Odd Fixes
7084F: drivers/staging/speakup/
7085
7086STAGING - TI DSP BRIDGE DRIVERS
7087M: Omar Ramirez Luna <omar.ramirez@ti.com>
7088S: Odd Fixes
7089F: drivers/staging/tidspbridge/
7090
Joe Perchesa0138162011-07-05 15:21:34 -07007091STAGING - USB ENE SM/MS CARD READER DRIVER
7092M: Al Cho <acho@novell.com>
7093S: Odd Fixes
7094F: drivers/staging/keucr/
7095
Joe Perchesb3e871c2011-07-05 09:42:10 -07007096STAGING - VIA VT665X DRIVERS
7097M: Forest Bond <forest@alittletooquiet.net>
7098S: Odd Fixes
7099F: drivers/staging/vt665?/
7100
Joe Perches81a9a522011-07-05 09:42:11 -07007101STAGING - WINBOND IS89C35 WLAN USB DRIVER
7102M: Pavel Machek <pavel@ucw.cz>
7103S: Odd Fixes
7104F: drivers/staging/winbond/
7105
Joe Perches709bcb02011-07-05 09:42:13 -07007106STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007107M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007108S: Odd Fixes
7109F: drivers/staging/xgifb/
7110
Linus Torvalds1da177e2005-04-16 15:20:36 -07007111STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007112M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007113S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007114F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007115
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007116SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007117M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007118W: http://sammy.net/sun3/
7119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007120F: arch/m68k/kernel/*sun3*
7121F: arch/m68k/sun3*/
7122F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007123F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007124
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007125SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007126M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007127L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007128W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007129Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007130T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007131S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007132F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007133F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007134F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007135
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007136SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007137M: Len Brown <len.brown@intel.com>
7138M: Pavel Machek <pavel@ucw.cz>
7139M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007140L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007141S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007142F: Documentation/power/
7143F: arch/x86/kernel/acpi/
7144F: drivers/base/power/
7145F: kernel/power/
7146F: include/linux/suspend.h
7147F: include/linux/freezer.h
7148F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007149
7150SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007151M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007152L: linux-video@atrey.karlin.mff.cuni.cz
7153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007154F: Documentation/svga.txt
7155F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007156
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007157SWIOTLB SUBSYSTEM
7158M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7159L: linux-kernel@vger.kernel.org
7160S: Supported
7161F: lib/swiotlb.c
7162F: arch/*/kernel/pci-swiotlb.c
7163F: include/linux/swiotlb.h
7164
Linus Torvalds1da177e2005-04-16 15:20:36 -07007165SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007166M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007168F: Documentation/filesystems/sysv-fs.txt
7169F: fs/sysv/
7170F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007171
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007172TARGET SUBSYSTEM
7173M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7174L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007175L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007176L: http://groups.google.com/group/linux-iscsi-target-dev
7177W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007178T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007179S: Supported
7180F: drivers/target/
7181F: include/target/
7182F: Documentation/target/
7183
Alan Cox4e688522008-04-30 00:52:11 -07007184TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007185M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007187F: Documentation/accounting/taskstats*
7188F: include/linux/taskstats*
7189F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007190
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007191TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007192M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007193L: netdev@vger.kernel.org
7194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007195F: include/linux/pkt_cls.h
7196F: include/net/pkt_cls.h
7197F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007198
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007199TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007200M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7201M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007202W: http://tcp-lp-mod.sourceforge.net/
7203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007204F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007205
Antti Palosaari91952bc2012-10-01 12:28:46 -03007206TDA10071 MEDIA DRIVER
7207M: Antti Palosaari <crope@iki.fi>
7208L: linux-media@vger.kernel.org
7209W: http://linuxtv.org/
7210W: http://palosaari.fi/linux/
7211Q: http://patchwork.linuxtv.org/project/linux-media/list/
7212T: git git://linuxtv.org/anttip/media_tree.git
7213S: Maintained
7214F: drivers/media/dvb-frontends/tda10071*
7215
7216TDA18212 MEDIA DRIVER
7217M: Antti Palosaari <crope@iki.fi>
7218L: linux-media@vger.kernel.org
7219W: http://linuxtv.org/
7220W: http://palosaari.fi/linux/
7221Q: http://patchwork.linuxtv.org/project/linux-media/list/
7222T: git git://linuxtv.org/anttip/media_tree.git
7223S: Maintained
7224F: drivers/media/tuners/tda18212*
7225
7226TDA18218 MEDIA DRIVER
7227M: Antti Palosaari <crope@iki.fi>
7228L: linux-media@vger.kernel.org
7229W: http://linuxtv.org/
7230W: http://palosaari.fi/linux/
7231Q: http://patchwork.linuxtv.org/project/linux-media/list/
7232T: git git://linuxtv.org/anttip/media_tree.git
7233S: Maintained
7234F: drivers/media/tuners/tda18218*
7235
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007236TDA18271 MEDIA DRIVER
7237M: Michael Krufky <mkrufky@linuxtv.org>
7238L: linux-media@vger.kernel.org
7239W: http://linuxtv.org/
7240W: http://github.com/mkrufky
7241Q: http://patchwork.linuxtv.org/project/linux-media/list/
7242T: git git://linuxtv.org/mkrufky/tuners.git
7243S: Maintained
7244F: drivers/media/tuners/tda18271*
7245
Michael Krufkye48307a2012-10-02 00:56:33 -03007246TDA827x MEDIA DRIVER
7247M: Michael Krufky <mkrufky@linuxtv.org>
7248L: linux-media@vger.kernel.org
7249W: http://linuxtv.org/
7250W: http://github.com/mkrufky
7251Q: http://patchwork.linuxtv.org/project/linux-media/list/
7252T: git git://linuxtv.org/mkrufky/tuners.git
7253S: Maintained
7254F: drivers/media/tuners/tda8290.*
7255
Michael Krufky66cf9212012-10-02 00:56:28 -03007256TDA8290 MEDIA DRIVER
7257M: Michael Krufky <mkrufky@linuxtv.org>
7258L: linux-media@vger.kernel.org
7259W: http://linuxtv.org/
7260W: http://github.com/mkrufky
7261Q: http://patchwork.linuxtv.org/project/linux-media/list/
7262T: git git://linuxtv.org/mkrufky/tuners.git
7263S: Maintained
7264F: drivers/media/tuners/tda8290.*
7265
Jiri Pirko3d249d42011-11-11 22:16:48 +00007266TEAM DRIVER
7267M: Jiri Pirko <jpirko@redhat.com>
7268L: netdev@vger.kernel.org
7269S: Supported
7270F: drivers/net/team/
7271F: include/linux/if_team.h
7272
Erik Gilling84b94142010-06-09 15:35:53 -07007273TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007274M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007275L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007276Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7277T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007278S: Supported
7279F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007280F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007281F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007282
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007283TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007284M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007285L: netdev@vger.kernel.org
7286S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007287F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007288
Alan Cox4e688522008-04-30 00:52:11 -07007289Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007290M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007291S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007292F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007293
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007294TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007295M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007296M: Max Filippov <jcmvbkbc@gmail.com>
7297L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007299F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007300
Zhang Ruid3fb6952012-11-15 08:58:27 +08007301THERMAL
7302M: Zhang Rui <rui.zhang@intel.com>
7303L: linux-pm@vger.kernel.org
7304T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7305S: Supported
7306F: drivers/thermal/
7307F: include/linux/thermal.h
7308
Alan Cox4e688522008-04-30 00:52:11 -07007309THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007310M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007311L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007312L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007313W: http://ibm-acpi.sourceforge.net
7314W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007315T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007317F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007318
Alex Dubov4020f2d2006-10-04 02:15:37 -07007319TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007320M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007322F: drivers/misc/tifm*
7323F: drivers/mmc/host/tifm_sd.c
7324F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007325
M R Swami Reddy152ad442012-04-02 20:02:31 +05307326TI LM49xxx FAMILY ASoC CODEC DRIVERS
7327M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307328M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307329L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7330S: Maintained
7331F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307332F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307333
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007334TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007335M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007336L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7337S: Maintained
7338F: sound/soc/codecs/twl4030*
7339
Luciano Coelho90921012011-11-20 21:40:41 +02007340TI WILINK WIRELESS DRIVERS
7341M: Luciano Coelho <coelho@ti.com>
7342L: linux-wireless@vger.kernel.org
7343W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7344W: http://wireless.kernel.org/en/users/Drivers/wl1251
7345T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7346S: Maintained
7347F: drivers/net/wireless/ti/
7348F: include/linux/wl12xx.h
7349
Per Lidene86eaa32006-01-12 16:45:18 +01007350TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007351M: Jon Maloy <jon.maloy@ericsson.com>
7352M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007353L: netdev@vger.kernel.org (core kernel code)
7354L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007355W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007357F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007358F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007359
Chris Metcalf867e3592010-05-28 23:09:12 -04007360TILE ARCHITECTURE
7361M: Chris Metcalf <cmetcalf@tilera.com>
7362W: http://www.tilera.com/scm/
7363S: Supported
7364F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007365F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007366F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007367F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007368
Linus Torvalds1da177e2005-04-16 15:20:36 -07007369TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007370M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007371L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007372W: http://sourceforge.net/projects/tlan/
7373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007374F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007375F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007376
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007377TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007378M: Kentaro Takeda <takedakn@nttdata.co.jp>
7379M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007380L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7381L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007382L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7383L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7384W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007385T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007387F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007388
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007389TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007390M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007391L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007392S: Maintained
7393F: drivers/platform/x86/topstar-laptop.c
7394
Linus Torvalds1da177e2005-04-16 15:20:36 -07007395TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05007396L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007397S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007398F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007399
7400TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007401M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007402L: tlinux-users@tce.toshiba-dme.co.jp
7403W: http://www.buzzard.org.uk/toshiba/
7404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007405F: drivers/char/toshiba.c
7406F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007407
Pierre Ossmand719f902009-03-24 21:06:09 +01007408TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007409M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007410M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007411L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007412S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007413F: drivers/mmc/host/tmio_mmc*
7414F: drivers/mmc/host/sh_mobile_sdhi.c
7415F: include/linux/mmc/tmio.h
7416F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007417
Hugh Dickins98f32602009-05-21 20:33:58 +01007418TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007419M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007420L: linux-mm@kvack.org
7421S: Maintained
7422F: include/linux/shmem_fs.h
7423F: mm/shmem.c
7424
Alan Cox4e688522008-04-30 00:52:11 -07007425TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007426M: Kent Yoder <key@linux.vnet.ibm.com>
7427M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007428W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007429M: Marcel Selhorst <tpmdd@selhorst.net>
7430M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007431W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007432L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007434F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007435
Joe Perchesd6f005a2009-10-26 16:49:40 -07007436TRACING
7437M: Steven Rostedt <rostedt@goodmis.org>
7438M: Frederic Weisbecker <fweisbec@gmail.com>
7439M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007440T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007441S: Maintained
7442F: Documentation/trace/ftrace.txt
7443F: arch/*/*/*/ftrace.h
7444F: arch/*/kernel/ftrace.c
7445F: include/*/ftrace.h
7446F: include/linux/trace*.h
7447F: include/trace/
7448F: kernel/trace/
7449
Linus Torvalds1da177e2005-04-16 15:20:36 -07007450TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007451M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007452T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007453S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007454K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007455
Alan Cox4e688522008-04-30 00:52:11 -07007456TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007457M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01007458M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08007459S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007460T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007461F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007462F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007463F: include/linux/serial_core.h
7464F: include/linux/serial.h
7465F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007466
Antti Palosaari91952bc2012-10-01 12:28:46 -03007467TUA9001 MEDIA DRIVER
7468M: Antti Palosaari <crope@iki.fi>
7469L: linux-media@vger.kernel.org
7470W: http://linuxtv.org/
7471W: http://palosaari.fi/linux/
7472Q: http://patchwork.linuxtv.org/project/linux-media/list/
7473T: git git://linuxtv.org/anttip/media_tree.git
7474S: Maintained
7475F: drivers/media/tuners/tua9001*
7476
Grant Grundler740db6d2008-02-17 11:53:49 -07007477TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007478M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007479L: netdev@vger.kernel.org
7480S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007481F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007482
7483TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00007484M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007485W: http://vtun.sourceforge.net/tun
7486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007487F: Documentation/networking/tuntap.txt
7488F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007489
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007490TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007491M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007493F: drivers/tc/
7494F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007495
Linus Torvalds1da177e2005-04-16 15:20:36 -07007496U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007497M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007498L: linux-scsi@vger.kernel.org
7499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007500F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007501
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007502UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007503M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007504M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007505L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007506T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007507W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007509F: Documentation/filesystems/ubifs.txt
7510F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007511
Alan Coxcc2020e2008-05-19 14:21:51 +01007512UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007513M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007514W: http://www.uclinux.org/
7515L: uclinux-dev@uclinux.org (subscribers-only)
7516S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007517F: arch/m68k/*/*_no.*
7518F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007519
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007520UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007521M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007522W: http://uclinux-h8.sourceforge.jp/
7523S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007524F: arch/h8300/
7525F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007526F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007527
Linus Torvalds1da177e2005-04-16 15:20:36 -07007528UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007529M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007531F: Documentation/filesystems/udf.txt
7532F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007533
Alan Coxcc2020e2008-05-19 14:21:51 +01007534UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007535M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007537F: Documentation/filesystems/ufs.txt
7538F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007539
David Herrmann0a09d3a2012-06-10 15:16:28 +02007540UHID USERSPACE HID IO DRIVER:
7541M: David Herrmann <dh.herrmann@googlemail.com>
7542L: linux-input@vger.kernel.org
7543S: Maintained
7544F: drivers/hid/uhid.c
7545F: include/linux/uhid.h
7546
David Vrabel18332a82008-09-17 16:34:44 +01007547ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007548L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007549S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007550F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007551F: include/linux/uwb.h
7552F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007553
GuanXuetaob31d8272011-01-16 00:35:49 +08007554UNICORE32 ARCHITECTURE:
7555M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7556W: http://mprc.pku.edu.cn/~guanxuetao/linux
7557S: Maintained
7558T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7559F: arch/unicore32/
7560
Tony Finchd8379ab2009-11-27 15:50:30 +00007561UNIFDEF
7562M: Tony Finch <dot@dotat.at>
7563W: http://dotat.at/prog/unifdef
7564S: Maintained
7565F: scripts/unifdef.c
7566
Linus Torvalds1da177e2005-04-16 15:20:36 -07007567UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007568M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007569W: http://www.kernel.dk
7570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007571F: Documentation/cdrom/
7572F: drivers/cdrom/cdrom.c
7573F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007574
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307575UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7576M: Vinayak Holikatti <vinholikatti@gmail.com>
7577M: Santosh Y <santoshsy@gmail.com>
7578L: linux-scsi@vger.kernel.org
7579S: Supported
7580F: Documentation/scsi/ufs.txt
7581F: drivers/scsi/ufs/
7582
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007583UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007584M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007585W: http://www.linux-mtd.infradead.org/
7586L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007587T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007588S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007589F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007590F: include/linux/mtd/ubi.h
7591F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007592
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007593UNSORTED BLOCK IMAGES (UBI) Fastmap
7594M: Richard Weinberger <richard@nod.at>
7595L: linux-mtd@lists.infradead.org
7596S: Maintained
7597F: drivers/mtd/ubi/fastmap.c
7598
Linus Torvalds1da177e2005-04-16 15:20:36 -07007599USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007600M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007601L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007603F: Documentation/usb/acm.txt
7604F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007605
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02007606USB AR5523 WIRELESS DRIVER
7607M: Pontus Fuchs <pontus.fuchs@gmail.com>
7608L: linux-wireless@vger.kernel.org
7609S: Maintained
7610F: drivers/net/wireless/ath/ar5523/
7611
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007612USB ATTACHED SCSI
7613M: Matthew Wilcox <willy@linux.intel.com>
7614M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7615L: linux-usb@vger.kernel.org
7616L: linux-scsi@vger.kernel.org
7617S: Supported
7618F: drivers/usb/storage/uas.c
7619
Linus Torvalds1da177e2005-04-16 15:20:36 -07007620USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007621M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007622L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007624F: drivers/net/usb/cdc_*.c
7625F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007626
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007627USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007628M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007629L: linux-usb@vger.kernel.org
7630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007631F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007632
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007633USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007634M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007635L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007636W: http://www.linux-usb.org/usbnet
7637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007638F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007639
Alan Coxcc2020e2008-05-19 14:21:51 +01007640USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007641M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007642L: rio500-users@lists.sourceforge.net
7643W: http://rio500.sourceforge.net
7644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007645F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007646
Linus Torvalds1da177e2005-04-16 15:20:36 -07007647USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007648M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007649L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007651F: Documentation/usb/ehci.txt
7652F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007653
David Brownell69ae9e32006-11-14 02:03:31 -08007654USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007655M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007656L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007657W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007658T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007660F: drivers/usb/gadget/
7661F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007662
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007663USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007664M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007665L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007666T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007667S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007668F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007669F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007670
matt mooney857aab32011-06-17 15:50:46 -07007671USB/IP DRIVERS
7672M: Matt Mooney <mfm@muteddisk.com>
7673L: linux-usb@vger.kernel.org
7674S: Maintained
7675F: drivers/staging/usbip/
7676
Olav Kongas959eea22005-11-03 17:38:14 +02007677USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007678M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007679L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007681F: drivers/usb/host/isp116x*
7682F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007683
Linus Torvalds1da177e2005-04-16 15:20:36 -07007684USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007685M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007686L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007688F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007689
7690USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007691M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007692L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007693L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007694S: Maintained
7695W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007696F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007697
Clemens Ladischaf399172011-01-10 16:32:54 +01007698USB MIDI DRIVER
7699M: Clemens Ladisch <clemens@ladisch.de>
7700L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7701T: git git://git.alsa-project.org/alsa-kernel.git
7702S: Maintained
7703F: sound/usb/midi.*
7704
Linus Torvalds1da177e2005-04-16 15:20:36 -07007705USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007706M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007707L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007709F: Documentation/usb/ohci.txt
7710F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007711
Matthias Urlichsba460e42005-07-14 00:33:47 -07007712USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007713M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007714L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007716F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007717
Linus Torvalds1da177e2005-04-16 15:20:36 -07007718USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007719M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007720L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007721L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007722W: http://pegasus2.sourceforge.net/
7723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007724F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007725
Felipe Balbid3ad5582012-05-21 16:24:49 +03007726USB PHY LAYER
7727M: Felipe Balbi <balbi@ti.com>
7728L: linux-usb@vger.kernel.org
7729T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7730S: Maintained
7731F: drivers/usb/phy/
7732F: drivers/usb/otg/
7733
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007734USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007735M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007736L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007737S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007738F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007739
7740USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007741M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007742L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007743L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007744W: http://pegasus2.sourceforge.net/
7745S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007746F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007747
Alan Cox4e688522008-04-30 00:52:11 -07007748USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007749M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007750L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007752F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007753
7754USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007755M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007756L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007757S: Maintained
7758W: http://geocities.com/i0xox0i
7759W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07007760F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07007761
Linus Torvalds1da177e2005-04-16 15:20:36 -07007762USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007763M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007764W: http://www.reiner-sct.de/support/treiber_cyberjack.php
7765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007766F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007767
7768USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007769M: Peter Berger <pberger@brimson.com>
7770M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007771L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007773F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007774
7775USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007776M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007777L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007778S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007779F: Documentation/usb/usb-serial.txt
7780F: drivers/usb/serial/generic.c
7781F: drivers/usb/serial/usb-serial.c
7782F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007783
Linus Torvalds1da177e2005-04-16 15:20:36 -07007784USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007785M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007786L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007788F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007789
7790USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007791M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007792L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007794F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007795
7796USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007797M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007798L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007799W: http://www.connecttech.com
7800S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007801F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007802
Steve Glendinningb3f0db12012-08-15 21:53:38 +00007803USB SMSC75XX ETHERNET DRIVER
7804M: Steve Glendinning <steve.glendinning@shawell.net>
7805L: netdev@vger.kernel.org
7806S: Maintained
7807F: drivers/net/usb/smsc75xx.*
7808
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007809USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007810M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007811L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007813F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007814
Luca Risoliaf423b9a2007-03-26 16:12:04 -03007815USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007816M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007817L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007818L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007819T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007820W: http://www.linux-projects.org
7821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007822F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007823F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007824
7825USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007826M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007827L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007828W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07007829T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007830S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007831F: Documentation/usb/
7832F: drivers/net/usb/
7833F: drivers/usb/
7834F: include/linux/usb.h
7835F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007836
7837USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007838M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007839L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007841F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007842
David Brownell69ae9e32006-11-14 02:03:31 -08007843USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02007844M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007845L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007846W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07007847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007848F: drivers/net/usb/usbnet.c
7849F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007850
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007851USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07007852M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03007853L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007854L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007855T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03007856W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007857S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007858F: drivers/media/usb/uvc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007859
Laurent Pinchart8282da42012-10-04 02:32:42 +02007860USB WEBCAM GADGET
7861M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7862L: linux-usb@vger.kernel.org
7863S: Maintained
7864F: drivers/usb/gadget/*uvc*.c
7865F: drivers/usb/gadget/webcam.c
7866
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007867USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07007868M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007869L: linux-wireless@vger.kernel.org
7870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007871F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007872
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007873USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08007874M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007875L: linux-usb@vger.kernel.org
7876S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08007877F: drivers/usb/host/xhci*
7878F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007879
Linus Torvalds1da177e2005-04-16 15:20:36 -07007880USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04007881L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007882W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04007883S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007884F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007885
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007886USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007887M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007888L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007889L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007890T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007891W: http://royale.zerezo.com/zr364xx/
7892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007893F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007894F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007895
Randy Dunlape7839f22008-10-12 16:11:45 -07007896USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07007897M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01007898M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007899L: user-mode-linux-devel@lists.sourceforge.net
7900L: user-mode-linux-user@lists.sourceforge.net
7901W: http://user-mode-linux.sourceforge.net
7902S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07007903F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07007904F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02007905F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07007906F: fs/hostfs/
7907F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007908
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007909USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07007910M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08007911M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007913F: Documentation/DocBook/uio-howto.tmpl
7914F: drivers/uio/
7915F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007916
Karel Zak256cccb2012-06-01 10:13:09 +02007917UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07007918M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02007919L: util-linux@vger.kernel.org
7920W: http://en.wikipedia.org/wiki/Util-linux
7921T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07007922S: Maintained
7923
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007924UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007925M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007926L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007927W: http://dev.gentoo.org/~spock/projects/uvesafb/
7928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007929F: Documentation/fb/uvesafb.txt
7930F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007931
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007932VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007933M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007934S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007935F: Documentation/filesystems/vfat.txt
7936F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007937
Alex Williamsoncba33452012-07-31 08:16:22 -06007938VFIO DRIVER
7939M: Alex Williamson <alex.williamson@redhat.com>
7940L: kvm@vger.kernel.org
7941S: Maintained
7942F: Documentation/vfio.txt
7943F: drivers/vfio/
7944F: include/linux/vfio.h
7945
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007946VIDEOBUF2 FRAMEWORK
7947M: Pawel Osciak <pawel@osciak.com>
7948M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03007949M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007950L: linux-media@vger.kernel.org
7951S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007952F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007953F: include/media/videobuf2-*
7954
Amit Shah9a824462010-03-23 18:23:09 +05307955VIRTIO CONSOLE DRIVER
7956M: Amit Shah <amit.shah@redhat.com>
7957L: virtualization@lists.linux-foundation.org
7958S: Maintained
7959F: drivers/char/virtio_console.c
7960F: include/linux/virtio_console.h
7961
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10307962VIRTIO CORE, NET AND BLOCK DRIVERS
7963M: Rusty Russell <rusty@rustcorp.com.au>
7964M: "Michael S. Tsirkin" <mst@redhat.com>
7965L: virtualization@lists.linux-foundation.org
7966S: Maintained
7967F: drivers/virtio/
7968F: drivers/net/virtio_net.c
7969F: drivers/block/virtio_blk.c
7970F: include/linux/virtio_*.h
7971
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007972VIRTIO HOST (VHOST)
7973M: "Michael S. Tsirkin" <mst@redhat.com>
7974L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00007975L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007976L: netdev@vger.kernel.org
7977S: Maintained
7978F: drivers/vhost/
7979F: include/linux/vhost.h
7980
Linus Torvalds1da177e2005-04-16 15:20:36 -07007981VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007982M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007983S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007984F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007985
Harald Weltef0bf7f62009-06-17 20:22:39 +02007986VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08007987M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07007988M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02007989S: Maintained
7990F: drivers/mmc/host/via-sdmmc.c
7991
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007992VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007993M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007994L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007995S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007996F: include/linux/via-core.h
7997F: include/linux/via-gpio.h
7998F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07007999F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008000
Francois Romieu01f20732007-01-26 00:57:17 -08008001VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008002M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008003L: netdev@vger.kernel.org
8004S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008005F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008006
Patrick McHardybe7f8272007-10-23 20:26:36 -07008007VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008008M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008009L: netdev@vger.kernel.org
8010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008011F: drivers/net/macvlan.c
8012F: include/linux/if_*vlan.h
8013F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008014
Florian Fainelli55e331c2009-06-16 15:33:53 -07008015VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008016M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008017L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008018S: Maintained
8019F: drivers/vlynq/vlynq.c
8020F: include/linux/vlynq.h
8021
Martyn Welch390beae2012-05-03 17:52:36 +01008022VME SUBSYSTEM
8023M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008024M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008025M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8026L: devel@driverdev.osuosl.org
8027S: Maintained
8028T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8029F: Documentation/vme_api.txt
8030F: drivers/staging/vme/
8031F: drivers/vme/
8032F: include/linux/vme*
8033
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008034VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008035M: Shreyas Bhatewara <sbhatewara@vmware.com>
8036M: "VMware, Inc." <pv-drivers@vmware.com>
8037L: netdev@vger.kernel.org
8038S: Maintained
8039F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008040
Alok Kataria851b1642009-10-13 14:51:05 -07008041VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008042M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008043M: VMware PV-Drivers <pv-drivers@vmware.com>
8044L: linux-scsi@vger.kernel.org
8045S: Maintained
8046F: drivers/scsi/vmw_pvscsi.c
8047F: drivers/scsi/vmw_pvscsi.h
8048
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008049VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008050M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008051M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008052W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008053W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008054T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008055S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008056F: drivers/regulator/
8057F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008058
Juerg Haefligerab413192006-09-24 20:54:04 +02008059VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008060M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008061L: lm-sensors@lm-sensors.org
8062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008063F: Documentation/hwmon/vt1211
8064F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008065
Roger Lucas1de9e372005-11-26 20:20:05 +01008066VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008067M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008068L: lm-sensors@lm-sensors.org
8069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008070F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008071
Tony Olech88095e72011-05-14 16:48:13 -04008072VUB300 USB to SDIO/SD/MMC bridge chip
8073M: Tony Olech <tony.olech@elandigitalsystems.com>
8074L: linux-mmc@vger.kernel.org
8075L: linux-usb@vger.kernel.org
8076S: Supported
8077F: drivers/mmc/host/vub300.c
8078
Linus Torvalds1da177e2005-04-16 15:20:36 -07008079W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008080M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008082F: Documentation/w1/
8083F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008084
Charles Spirakis13927072006-07-05 18:05:15 +02008085W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008086M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008087L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008089F: Documentation/hwmon/w83791d
8090F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008091
Rudolf Marek61db0112006-12-12 18:18:30 +01008092W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008093M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008094L: lm-sensors@lm-sensors.org
8095S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008096F: Documentation/hwmon/w83793
8097F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008098
Jean Delvaree3760b42010-10-28 20:31:49 +02008099W83795 HARDWARE MONITORING DRIVER
8100M: Jean Delvare <khali@linux-fr.org>
8101L: lm-sensors@lm-sensors.org
8102S: Maintained
8103F: drivers/hwmon/w83795.c
8104
Linus Torvalds1da177e2005-04-16 15:20:36 -07008105W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008106M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008108F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008109
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008110WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008111M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008112L: linux-watchdog@vger.kernel.org
8113W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008114T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008116F: Documentation/watchdog/
8117F: drivers/watchdog/
8118F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008119
Linus Torvalds1da177e2005-04-16 15:20:36 -07008120WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008121M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008122L: linux-scsi@vger.kernel.org
8123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008124F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008125
David Herrmannb22e00f2011-09-06 13:50:40 +02008126WIIMOTE HID DRIVER
8127M: David Herrmann <dh.herrmann@googlemail.com>
8128L: linux-input@vger.kernel.org
8129S: Maintained
8130F: drivers/hid/hid-wiimote*
8131
David Härdemane258b802009-09-21 17:04:53 -07008132WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008133M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008134S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008135F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008136
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008137WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008138M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008139M: linux-wimax@intel.com
8140L: wimax@linuxwimax.org
8141S: Supported
8142W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008143F: Documentation/wimax/README.wimax
8144F: include/linux/wimax.h
8145F: include/linux/wimax/debug.h
8146F: include/net/wimax.h
8147F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008148
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008149WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008150M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008152F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008153
Linus Torvalds1da177e2005-04-16 15:20:36 -07008154WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008155M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008156L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008157W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008159F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008160
Mark Brownfebf1df2008-04-02 00:51:09 -04008161WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008162M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8163M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008164L: linux-input@vger.kernel.org
8165T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8166W: http://opensource.wolfsonmicro.com/node/7
8167S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008168F: drivers/input/touchscreen/*wm97*
8169F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008170
Mark Brown055bcbc2010-08-13 14:18:12 +01008171WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008172M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008173L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008174T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008175T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008176W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008177S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008178F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008179F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008180F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008181F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008182F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008183F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008184F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008185F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008186F: drivers/input/misc/wm831x-on.c
8187F: drivers/input/touchscreen/wm831x-ts.c
8188F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008189F: drivers/mfd/arizona*
8190F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008191F: drivers/power/wm83*.c
8192F: drivers/rtc/rtc-wm83*.c
8193F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008194F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008195F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008196F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008197F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008198F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008199F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008200F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008201F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008202F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008203F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008204
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008205WORKQUEUE
8206M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008207T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8208S: Maintained
8209F: include/linux/workqueue.h
8210F: kernel/workqueue.c
8211F: Documentation/workqueue.txt
8212
Linus Torvalds1da177e2005-04-16 15:20:36 -07008213X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008214M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008215L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008216S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008217F: Documentation/networking/x25*
8218F: include/net/x25*
8219F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008220
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008221X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008222M: Thomas Gleixner <tglx@linutronix.de>
8223M: Ingo Molnar <mingo@redhat.com>
8224M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008225M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008226T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008227S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008228F: Documentation/x86/
8229F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008230
Matthew Garrettd0944852010-02-11 10:40:13 -05008231X86 PLATFORM DRIVERS
8232M: Matthew Garrett <mjg@redhat.com>
8233L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008234T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008235S: Maintained
8236F: drivers/platform/x86
8237
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008238X86 MCE INFRASTRUCTURE
8239M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008240M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008241L: linux-edac@vger.kernel.org
8242S: Maintained
8243F: arch/x86/kernel/cpu/mcheck/*
8244
Ian Campbellc4468082011-04-27 15:26:46 -07008245XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008246M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008247M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008248L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8249L: virtualization@lists.linux-foundation.org
8250S: Supported
8251F: arch/x86/xen/
8252F: drivers/*/xen-*front.c
8253F: drivers/xen/
8254F: arch/x86/include/asm/xen/
8255F: include/xen/
8256
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008257XEN HYPERVISOR ARM
8258M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8259L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8260S: Supported
8261F: arch/arm/xen/
8262F: arch/arm/include/asm/xen/
8263
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008264XEN NETWORK BACKEND DRIVER
8265M: Ian Campbell <ian.campbell@citrix.com>
8266L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8267L: netdev@vger.kernel.org
8268S: Supported
8269F: drivers/net/xen-netback/*
8270
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008271XEN PCI SUBSYSTEM
8272M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008273L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008274S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008275F: arch/x86/pci/*xen*
8276F: drivers/pci/*xen*
8277
8278XEN SWIOTLB SUBSYSTEM
8279M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008280L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008281S: Supported
8282F: arch/x86/xen/*swiotlb*
8283F: drivers/xen/*swiotlb*
8284
Linus Torvalds1da177e2005-04-16 15:20:36 -07008285XFS FILESYSTEM
8286P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008287M: Ben Myers <bpm@sgi.com>
8288M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008289M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008290L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008291W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008292T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008293S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008294F: Documentation/filesystems/xfs.txt
8295F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008296
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008297XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008298M: Anirudha Sarangi <anirudh@xilinx.com>
8299M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008300S: Maintained
8301F: drivers/net/ethernet/xilinx/xilinx_axienet*
8302
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008303XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008304M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008305W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008307F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008308
Peter Korsgaard238b8722006-12-06 20:35:17 -08008309XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008310M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008311L: linux-serial@vger.kernel.org
8312S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008313F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008314
Linus Torvalds1da177e2005-04-16 15:20:36 -07008315YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008316M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008317L: linux-hams@vger.kernel.org
8318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008319F: drivers/net/hamradio/yam*
8320F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008321
Henkaf64a5e2005-10-12 15:02:56 +02008322YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008323M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008324L: usbb2k-api-dev@nongnu.org
8325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008326F: Documentation/input/yealink.txt
8327F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008328
Linus Torvalds1da177e2005-04-16 15:20:36 -07008329Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008330M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008331W: http://yaina.de/jreuter/
8332W: http://www.qsl.net/dl1bke/
8333L: linux-hams@vger.kernel.org
8334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008335F: Documentation/networking/z8530drv.txt
8336F: drivers/net/hamradio/*scc.c
8337F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008338
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008339ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008340M: Daniel Drake <dsd@gentoo.org>
8341M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008342W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008343L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008344L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008346F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008347
Linus Torvalds1da177e2005-04-16 15:20:36 -07008348ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008349L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008350L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008351W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008352T: Mercurial http://linuxtv.org/hg/v4l-dvb
8353S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008354F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008355
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008356ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008357M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008358S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008359F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008360
Linus Torvalds1da177e2005-04-16 15:20:36 -07008361THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008362M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008363L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008364Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008365T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008366S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008367F: *
8368F: */