blob: 14cffbfbd041b52d8eaf074374bf3a977560d3e7 [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
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800688ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700689M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800690M: Nicolas Ferre <nicolas.ferre@atmel.com>
691M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700692L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200693W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800694W: http://www.linux4sam.org
695S: Supported
696F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100697
Rob Herring986cf2e2011-06-22 11:28:53 -0500698ARM/CALXEDA HIGHBANK ARCHITECTURE
699M: Rob Herring <rob.herring@calxeda.com>
700L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
701S: Maintained
702F: arch/arm/mach-highbank/
703
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300704ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
705M: Anton Vorontsov <avorontsov@mvista.com>
706S: Maintained
707F: arch/arm/mach-cns3xxx/
708T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
709
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800710ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100711M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000712M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700713L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800714S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100715F: arch/arm/mach-ep93xx/
716F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800717
718ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700719M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700720L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800721S: Maintained
722
Russell Kingd4275352009-04-16 14:05:27 +0100723ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700724M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700725L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700726S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100727F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700728F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100729
Mike Rapoportd48134e2008-08-20 09:03:26 +0100730ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700731M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700732L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100733S: Maintained
734
Hubert Feurstein94150092009-10-07 08:36:07 +0100735ARM/CONTEC MICRO9 MACHINE SUPPORT
736M: Hubert Feurstein <hubert.feurstein@contec.at>
737S: Maintained
738F: arch/arm/mach-ep93xx/micro9.c
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700741M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742S: Maintained
743
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200744ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100745M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700746L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100747T: git git://git.berlios.de/gemini-board
748S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300749F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200750
Barry Songa990cbd2011-07-12 21:44:10 +0800751ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
752M: Barry Song <baohua.song@csr.com>
753L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
754S: Maintained
755F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800756F: drivers/dma/sirf-dma.c
757F: drivers/i2c/busses/i2c-sirf.c
758F: drivers/pinctrl/pinctrl-sirf.c
759F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800760
Russell Kingd4275352009-04-16 14:05:27 +0100761ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700762M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700763L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100764W: http://www.arm.linux.org.uk/
765S: Maintained
766F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700767F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100768
Russell Kinga9da4f72008-07-12 21:42:04 +0100769ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700770M: Daniel Ribeiro <drwyrm@gmail.com>
771M: Stefan Schmidt <stefan@openezx.org>
772M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200773L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100774W: http://www.openezx.org/
775S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200776T: topgit git://git.openezx.org/openezx.git
777F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100778
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200779ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100780M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700781L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100782S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700783T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300784F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200785
Russell Kingd4275352009-04-16 14:05:27 +0100786ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700787M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700788L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100789W: http://www.arm.linux.org.uk/
790S: Maintained
791F: arch/arm/include/asm/hardware/dec21285.h
792F: arch/arm/mach-footbridge/
793
Sascha Hauer86183a52008-07-24 23:50:35 +0200794ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700795M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700796L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200797S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700798T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100799F: arch/arm/mach-imx/
Uwe Kleine-Königb16533d2009-11-30 16:53:24 +0100800F: arch/arm/plat-mxc/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700801F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200802
Shawn Guo8bcb9762011-10-07 22:24:18 +0800803ARM/FREESCALE IMX6
804M: Shawn Guo <shawn.guo@linaro.org>
805L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
806S: Maintained
807T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
808F: arch/arm/mach-imx/*imx6*
809
Shawn Guoa9866a092011-10-21 11:53:34 +0800810ARM/FREESCALE MXS ARM ARCHITECTURE
811M: Shawn Guo <shawn.guo@linaro.org>
812L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
813S: Maintained
814T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
815F: arch/arm/mach-mxs/
816
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800817ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700818M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700819L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800820S: Maintained
821
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100822ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700823M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700824L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100825S: Maintained
826
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200827ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700828M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100829M: Paul Parsons <lost.distance@yahoo.com>
830L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200831S: Maintained
832F: arch/arm/mach-pxa/hx4700.c
833F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100834F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200835
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100836ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700837M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200838W: www.jlime.com
839S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700840T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
841F: arch/arm/mach-sa1100/jornada720.c
842F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100843
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200844ARM/IGEP MACHINE SUPPORT
845M: Enric Balletbo i Serra <eballetbo@gmail.com>
846M: Javier Martinez Canillas <javier@dowhile0.org>
847L: linux-omap@vger.kernel.org
848L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
849S: Maintained
850F: arch/arm/mach-omap2/board-igep0020.c
851
Marek Vasut403d2972010-05-22 00:29:39 +0200852ARM/INCOME PXA270 SUPPORT
853M: Marek Vasut <marek.vasut@gmail.com>
854L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
855S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700856F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200857
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800858ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700859M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700860M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700861L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700862S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100863
864ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700865M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700866L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700867S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800868
869ARM/INTEL IOP13XX 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
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800874
875ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700876M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700877M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700878L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700879S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800880
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800881ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700882M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700883L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800884S: Maintained
885
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200886ARM/INTEL IXP4XX ARM ARCHITECTURE
887M: Imre Kaloz <kaloz@openwrt.org>
888M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100889L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200890S: Maintained
891F: arch/arm/mach-ixp4xx/
892
Joe Perches838553c2010-10-26 14:22:59 -0700893ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100894M: Jonathan Cameron <jic23@cam.ac.uk>
895L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
896S: Maintained
897F: arch/arm/mach-pxa/stargate2.c
898F: drivers/pcmcia/pxa2xx_stargate2.c
899
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800900ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700901M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700902M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700903L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700904S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800905
906ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700907M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700908L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800909S: Maintained
910
911ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700912M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700913L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800914S: Maintained
915
Philipp Zabel3b8861712008-07-09 21:27:15 +0100916ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700917M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100918S: Maintained
919
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200920ARM/Marvell Armada 370 and Armada XP SOC support
921M: Jason Cooper <jason@lakedaemon.net>
922M: Andrew Lunn <andrew@lunn.ch>
923M: Gregory Clement <gregory.clement@free-electrons.com>
924L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
925S: Maintained
926F: arch/arm/mach-mvebu/
927
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400928ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
929M: Jason Cooper <jason@lakedaemon.net>
930M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700931L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400932S: Maintained
933F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400934F: arch/arm/mach-kirkwood/
935F: arch/arm/mach-mv78xx0/
936F: arch/arm/mach-orion5x/
937F: arch/arm/plat-orion/
938
Alexander Clouterd69ac132011-04-14 15:22:02 -0700939ARM/Orion SoC/Technologic Systems TS-78xx platform support
940M: Alexander Clouter <alex@digriz.org.uk>
941L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
942W: http://www.digriz.org.uk/ts78xx/kernel
943S: Maintained
944F: arch/arm/mach-orion5x/ts78xx-*
945
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000946ARM/MICREL KS8695 ARCHITECTURE
947M: Greg Ungerer <gerg@uclinux.org>
948L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
949F: arch/arm/mach-ks8695
950S: Odd Fixes
951
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200952ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700953M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700954L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200955F: arch/arm/mach-pxa/mioa701.c
956S: Maintained
957
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100958ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700959M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100960S: Maintained
961
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100962ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700963M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200964M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700965M: STEricsson <STEricsson_nomadik_linux@list.st.com>
966L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
967S: Maintained
968F: arch/arm/mach-nomadik/
969F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100970F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200971T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100972
Andy Green9d762952009-05-19 06:41:42 -0300973ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700974M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300975L: openmoko-kernel@lists.openmoko.org (subscribers-only)
976W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
977S: Supported
978
Daniel Walker0c19d212009-12-07 16:53:51 -0800979ARM/QUALCOMM MSM MACHINE SUPPORT
980M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -0800981M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -0800982M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -0800983L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -0800984F: arch/arm/mach-msm/
985F: drivers/video/msm/
986F: drivers/mmc/host/msm_sdcc.c
987F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800988F: drivers/tty/serial/msm_serial.h
989F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -0700990F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -0700991F: drivers/*/pm8???-*
992F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -0800993T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -0800994S: Maintained
995
Dirk Opfer8459c152005-11-06 14:27:52 +0000996ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700997M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
998M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000999S: Maintained
1000
Marek Vasut5d783a22009-07-16 13:26:48 +02001001ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001002M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001003L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001004W: http://hackndev.com
1005S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001006F: arch/arm/mach-pxa/include/mach/palmtx.h
1007F: arch/arm/mach-pxa/palmtx.c
1008F: arch/arm/mach-pxa/include/mach/palmt5.h
1009F: arch/arm/mach-pxa/palmt5.c
1010F: arch/arm/mach-pxa/include/mach/palmld.h
1011F: arch/arm/mach-pxa/palmld.c
1012F: arch/arm/mach-pxa/include/mach/palmte2.h
1013F: arch/arm/mach-pxa/palmte2.c
1014F: arch/arm/mach-pxa/include/mach/palmtc.h
1015F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001016
Joe Perchesb57fe922009-12-14 18:00:52 -08001017ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001018M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001019L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001020W: http://hackndev.com
1021S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001022F: arch/arm/mach-pxa/include/mach/palmtreo.h
1023F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001024
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001025ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001026M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001027L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001028W: http://hackndev.com
1029S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001030F: arch/arm/mach-pxa/include/mach/palmz72.h
1031F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001034M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1036S: Maintained
1037
1038ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001039M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001040L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041W: http://www.arm.linux.org.uk/
1042S: Maintained
1043
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001044ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001045M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001046L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001047S: Maintained
1048
Russell Kingd4275352009-04-16 14:05:27 +01001049ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001050M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001051L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001052W: http://www.arm.linux.org.uk/
1053S: Maintained
1054F: arch/arm/common/time-acorn.c
1055F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1056F: arch/arm/include/asm/hardware/ioc.h
1057F: arch/arm/include/asm/hardware/iomd.h
1058F: arch/arm/include/asm/hardware/memc.h
1059F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001060F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001061F: drivers/net/ethernet/i825xx/ether1*
1062F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001063F: drivers/scsi/arm/
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001066M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067W: http://www.shark-linux.de/shark.html
1068S: Maintained
1069
Ben Dooksb21477f2009-06-13 10:46:34 +01001070ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001071M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001072M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001073L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001074L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001075W: http://www.fluff.org/ben/linux/
1076S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001077F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001078F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001079F: arch/arm/plat-s5p/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001080F: arch/arm/mach-s3c24*/
1081F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001082F: drivers/*/*s3c2410*
1083F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001084F: drivers/spi/spi-s3c*
1085F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001087ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001088M: Kukjin Kim <kgene.kim@samsung.com>
1089L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1090L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1091S: Maintained
1092F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001093F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001094
Kyungmin Park10ffa962011-03-04 17:36:26 -08001095ARM/SAMSUNG MOBILE MACHINE SUPPORT
1096M: Kyungmin Park <kyungmin.park@samsung.com>
1097L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1098S: Maintained
1099F: arch/arm/mach-s5pv210/mach-aquila.c
1100F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001101F: arch/arm/mach-exynos/mach-universal_c210.c
1102F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001103
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001104ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1105M: Kyungmin Park <kyungmin.park@samsung.com>
1106M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1107L: linux-arm-kernel@lists.infradead.org
1108L: linux-media@vger.kernel.org
1109S: Maintained
1110F: arch/arm/plat-s5p/dev-fimc*
1111F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001112F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001113
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001114ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1115M: Kyungmin Park <kyungmin.park@samsung.com>
1116M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001117M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001118L: linux-arm-kernel@lists.infradead.org
1119L: linux-media@vger.kernel.org
1120S: Maintained
1121F: arch/arm/plat-s5p/dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001122F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001123
1124ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1125M: Kyungmin Park <kyungmin.park@samsung.com>
1126M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1127L: linux-arm-kernel@lists.infradead.org
1128L: linux-media@vger.kernel.org
1129S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001130F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001131
Paul Mundtd48d38e2010-02-08 12:50:24 +09001132ARM/SHMOBILE ARM ARCHITECTURE
1133M: Paul Mundt <lethal@linux-sh.org>
1134M: Magnus Damm <magnus.damm@gmail.com>
1135L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001136W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001137Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtd22c0e52010-11-10 18:09:14 +09001138T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest
Paul Mundtd48d38e2010-02-08 12:50:24 +09001139S: Supported
1140F: arch/arm/mach-shmobile/
1141F: drivers/sh/
1142
Dinh Nguyen66314222012-07-18 16:07:18 -06001143ARM/SOCFPGA ARCHITECTURE
1144M: Dinh Nguyen <dinguyen@altera.com>
1145S: Maintained
1146F: arch/arm/mach-socfpga/
1147
1148ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1149M: Dinh Nguyen <dinguyen@altera.com>
1150S: Maintained
1151F: drivers/clk/socfpga/
1152
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001153ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001154M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001155L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001156S: Maintained
1157
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001158ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001159M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001160L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1161S: Maintained
1162
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001163ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001164M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001165L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001166S: Maintained
1167
wanzongshun98ad6e32009-02-13 06:04:32 +01001168ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001169M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001170L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001171W: http://www.mcuos.com
1172S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001173F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001174F: drivers/input/keyboard/w90p910_keypad.c
1175F: drivers/input/touchscreen/w90p910_ts.c
1176F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001177F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001178F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001179F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001180F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001181F: drivers/usb/host/ehci-w90x900.c
1182F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001183
Linus Walleij54274d72010-04-04 10:58:03 +01001184ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001185M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001186L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1187S: Supported
1188F: arch/arm/mach-u300/
1189F: drivers/i2c/busses/i2c-stu300.c
1190F: drivers/rtc/rtc-coh901331.c
1191F: drivers/watchdog/coh901327_wdt.c
1192F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001193F: drivers/mfd/ab3100*
1194F: drivers/rtc/rtc-ab3100.c
1195F: drivers/rtc/rtc-coh901331.c
1196T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001197
Linus Walleij87572882010-12-22 09:18:29 +01001198ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001199M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001200M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001201L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1202S: Maintained
1203F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001204F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001205F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001206F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001207F: drivers/mfd/abx500*
1208F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001209F: drivers/mfd/dbx500*
1210F: drivers/mfd/db8500*
1211F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001212F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001213F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001214T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001215
Russell Kingd4275352009-04-16 14:05:27 +01001216ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001217M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001218L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001219W: http://www.arm.linux.org.uk/
1220S: Maintained
1221F: arch/arm/vfp/
1222
Marek Vasute66b6d82010-03-26 06:51:32 +01001223ARM/VOIPAC PXA270 SUPPORT
1224M: Marek Vasut <marek.vasut@gmail.com>
1225L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1226S: Maintained
1227F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001228F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001229
Tony Prisk04529fe2012-07-24 04:19:37 +12001230ARM/VT8500 ARM ARCHITECTURE
1231M: Tony Prisk <linux@prisktech.co.nz>
1232L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1233S: Maintained
1234F: arch/arm/mach-vt8500/
1235F: drivers/video/vt8500lcdfb.*
1236F: drivers/video/wm8505fb*
1237F: drivers/video/wmt_ge_rops.*
1238F: drivers/tty/serial/vt8500_serial.c
1239F: drivers/rtc/rtc-vt8500-c
1240
Marek Vasute66b6d82010-03-26 06:51:32 +01001241ARM/ZIPIT Z2 SUPPORT
1242M: Marek Vasut <marek.vasut@gmail.com>
1243L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1244S: Maintained
1245F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001246F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001247
Catalin Marinas38074222012-03-05 11:49:34 +00001248ARM64 PORT (AARCH64 ARCHITECTURE)
1249M: Catalin Marinas <catalin.marinas@arm.com>
1250L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1251S: Maintained
1252F: arch/arm64/
1253
George Josephd58de032010-03-05 22:17:25 +01001254ASC7621 HARDWARE MONITOR DRIVER
1255M: George Joseph <george.joseph@fairview5.com>
1256L: lm-sensors@lm-sensors.org
1257S: Maintained
1258F: Documentation/hwmon/asc7621
1259F: drivers/hwmon/asc7621.c
1260
Corentin Charyb229ece2011-02-26 10:20:40 +01001261ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001262M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001264L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001265W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001267F: drivers/platform/x86/asus*.c
1268F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001270ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001271M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001272L: lm-sensors@lm-sensors.org
1273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001274F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001275
Andrew Morton953a6472008-11-06 12:53:28 -08001276ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001277M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001278W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001280F: Documentation/crypto/async-tx-api.txt
1281F: crypto/async_tx/
1282F: drivers/dma/
1283F: include/linux/dmaengine.h
1284F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001285
Wolfram Sanga1867d32009-09-18 22:45:51 +02001286AT24 EEPROM DRIVER
1287M: Wolfram Sang <w.sang@pengutronix.de>
1288L: linux-i2c@vger.kernel.org
1289S: Maintained
1290F: drivers/misc/eeprom/at24.c
1291F: include/linux/i2c/at24.h
1292
Randy Dunlape7839f22008-10-12 16:11:45 -07001293ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001294M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001295W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001297F: Documentation/aoe/
1298F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Joe Perches9a10a872010-12-01 09:37:55 -08001300ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001301M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001302L: linux-wireless@vger.kernel.org
1303S: Supported
1304F: drivers/net/wireless/ath/*
1305
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001306ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001307M: Jiri Slaby <jirislaby@gmail.com>
1308M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001309M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001310L: linux-wireless@vger.kernel.org
1311L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001312W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001313S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001314F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001315
Kalle Valo12e62d62011-09-13 10:21:25 +03001316ATHEROS ATH6KL WIRELESS DRIVER
1317M: Kalle Valo <kvalo@qca.qualcomm.com>
1318L: linux-wireless@vger.kernel.org
1319W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1320T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1321S: Supported
1322F: drivers/net/wireless/ath/ath6kl/
1323
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001324ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001325M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1326M: Jouni Malinen <jouni@qca.qualcomm.com>
1327M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1328M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001329L: linux-wireless@vger.kernel.org
1330L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001331W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001332S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001333F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001334
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001335CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1336M: Christian Lamparter <chunkeey@googlemail.com>
1337L: linux-wireless@vger.kernel.org
1338W: http://wireless.kernel.org/en/users/Drivers/carl9170
1339S: Maintained
1340F: drivers/net/wireless/ath/carl9170/
1341
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001342ATK0110 HWMON DRIVER
1343M: Luca Tettamanti <kronos.it@gmail.com>
1344L: lm-sensors@lm-sensors.org
1345S: Maintained
1346F: drivers/hwmon/asus_atk0110.c
1347
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001348ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001349M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001351F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001352
Chris Snook7ae115b2008-09-09 03:26:57 -04001353ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001354M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001355M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001356L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001357W: http://sourceforge.net/projects/atl1
1358W: http://atl1.sourceforge.net
1359S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001360F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001363M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001364L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001365L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366W: http://linux-atm.sourceforge.net
1367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001368F: drivers/atm/
1369F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Pierre Ossman272f1332007-05-14 21:25:26 +02001371ATMEL AT91 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001372M: Ludovic Desroches <ludovic.desroches@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001373L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001374W: http://www.atmel.com/products/AT91/
1375W: http://www.at91.com/
1376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001377F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001378
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001379ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001380M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001381S: Maintained
1382F: drivers/mmc/host/atmel-mci.c
1383F: drivers/mmc/host/atmel-mci-regs.h
1384
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001385ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001386M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001387S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001388F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001389
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001390ATMEL DMA DRIVER
1391M: Nicolas Ferre <nicolas.ferre@atmel.com>
1392L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1393S: Supported
1394F: drivers/dma/at_hdmac.c
1395F: drivers/dma/at_hdmac_regs.h
1396F: arch/arm/mach-at91/include/mach/at_hdmac.h
1397
Josh Wu15515542012-03-23 17:56:29 +08001398ATMEL ISI DRIVER
1399M: Josh Wu <josh.wu@atmel.com>
1400L: linux-media@vger.kernel.org
1401S: Supported
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001402F: drivers/media/platform/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001403F: include/media/atmel-isi.h
1404
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001405ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001406M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001407L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001409F: drivers/video/atmel_lcdfb.c
1410F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001411
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001412ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001413M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001414S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001415F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001416
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001417ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001418M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001419S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001420F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001421
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001422ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1423M: Nicolas Ferre <nicolas.ferre@atmel.com>
1424L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1425S: Supported
1426F: drivers/misc/atmel_tclib.c
1427F: drivers/clocksource/tcb_clksrc.c
1428
Josh Wuff2675d2012-03-23 17:56:55 +08001429ATMEL TSADCC DRIVER
1430M: Josh Wu <josh.wu@atmel.com>
1431L: linux-input@vger.kernel.org
1432S: Supported
1433F: drivers/input/touchscreen/atmel_tsadcc.c
1434
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001435ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001436M: Nicolas Ferre <nicolas.ferre@atmel.com>
1437L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001438S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001439F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001442M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001443L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444W: http://www.thekelleys.org.uk/atmel
1445W: http://atmelwlandriver.sourceforge.net/
1446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001447F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Chris Wrighta92b7b82005-07-07 18:12:23 -07001449AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001450M: Al Viro <viro@zeniv.linux.org.uk>
1451M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001452L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001453W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001454T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001456F: include/linux/audit.h
1457F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001458
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001459AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001460M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001461W: http://miguelojeda.es/auxdisplay.htm
1462W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001464F: drivers/auxdisplay/
1465F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001466
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001467AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001468M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1469M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001470W: http://www.atmel.com/products/AVR32/
1471W: http://avr32linux.org/
1472W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001473S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001474F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001475
1476AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001477M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1478M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001480F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001483M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001485W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001487F: include/linux/ax25.h
1488F: include/net/ax25.h
1489F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001491B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001492M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001493L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001494L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001495W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001497F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001498
1499B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001500M: Larry Finger <Larry.Finger@lwfinger.net>
1501M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001502L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001503L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001504W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001506F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001507
Richard Purdie300abeb2007-02-07 22:21:07 +00001508BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001509M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001511F: drivers/video/backlight/
1512F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001513
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001514BATMAN ADVANCED
1515M: Marek Lindner <lindner_marek@yahoo.de>
1516M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001517M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001518L: b.a.t.m.a.n@lists.open-mesh.org
1519W: http://www.open-mesh.org/
1520S: Maintained
1521F: net/batman-adv/
1522
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001523BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001524M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001525L: linux-hams@vger.kernel.org
1526W: http://www.baycom.org/~tom/ham/ham.html
1527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001528F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001529
1530BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001531S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001532F: Documentation/filesystems/befs.txt
1533F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001534
1535BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001536M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001538F: Documentation/filesystems/bfs.txt
1539F: fs/bfs/
1540F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001541
Bryan Wu1394f032007-05-06 14:50:22 -07001542BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001543M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001544L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001545W: http://blackfin.uclinux.org
1546S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001547F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001548
Bryan Wue190d6b2007-07-17 14:43:44 +08001549BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001550L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001551W: http://blackfin.uclinux.org
1552S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001553F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001554
Mike Frysinger566da5b2007-06-11 15:31:30 +08001555BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001556M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001557L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001558W: http://blackfin.uclinux.org
1559S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001560F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001561
Mike Frysinger936ed492010-03-10 15:20:38 -08001562BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001563M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001564L: uclinux-dist-devel@blackfin.uclinux.org
1565W: http://blackfin.uclinux.org
1566S: Supported
1567F: drivers/mmc/host/bfin_sdh.c
1568
Bryan Wu1394f032007-05-06 14:50:22 -07001569BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001570M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001571L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001572W: http://blackfin.uclinux.org
1573S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001574F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001575
Bryan Wu1e6d3202007-07-15 02:50:02 +08001576BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001577M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001578L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001579W: http://blackfin.uclinux.org
1580S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001581F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001582
Bryan Wud24ecfc2007-05-01 23:26:32 +02001583BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001584M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001585L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001586W: http://blackfin.uclinux.org/
1587S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001588F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001589
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001590BLINKM RGB LED DRIVER
1591M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1592S: Maintained
1593F: drivers/leds/leds-blinkm.c
1594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001596M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001597T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001599F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Joern Engel2b54aae2008-02-06 01:38:02 -08001601BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001602M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001603L: linux-mtd@lists.infradead.org
1604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001605F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001606
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001607BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001608M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001609M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001610M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001611L: linux-bluetooth@vger.kernel.org
1612W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001613T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1614T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001615S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001616F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001617
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001619M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001620M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001621M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001622L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001623W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001624T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1625T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001627F: net/bluetooth/
1628F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001631M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001632M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001633L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001634W: http://sourceforge.net/projects/bonding/
1635S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001636F: drivers/net/bonding/
1637F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
Gary Zambrano39105892006-06-22 17:26:20 -07001639BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001640M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001641L: netdev@vger.kernel.org
1642S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001643F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001644
Michael Chan948c51e2006-06-04 02:51:39 -07001645BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001646M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001647L: netdev@vger.kernel.org
1648S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001649F: drivers/net/ethernet/broadcom/bnx2.*
1650F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001651
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001652BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001653M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001654L: netdev@vger.kernel.org
1655S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001656F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001657
Stephen Warrenf680f252012-09-15 00:18:54 -06001658BROADCOM BCM2835 ARM ARCHICTURE
1659M: Stephen Warren <swarren@wwwdotorg.org>
1660L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1661T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1662S: Maintained
1663F: arch/arm/mach-bcm2835/
1664F: arch/arm/boot/dts/bcm2835*
1665F: arch/arm/configs/bcm2835_defconfig
1666F: drivers/*/*bcm2835*
1667
Michael Chan948c51e2006-06-04 02:51:39 -07001668BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001669M: Matt Carlson <mcarlson@broadcom.com>
1670M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001671L: netdev@vger.kernel.org
1672S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001673F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001674
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001675BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1676M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001677M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001678M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001679M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001680L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001681L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001682S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001683F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001684
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001685BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1686M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1687L: linux-scsi@vger.kernel.org
1688S: Supported
1689F: drivers/scsi/bnx2fc/
1690
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001691BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1692M: Rafał Miłecki <zajec5@gmail.com>
1693L: linux-wireless@vger.kernel.org
1694S: Maintained
1695F: drivers/bcma/
1696F: include/linux/bcma/
1697
Jing Huang7725ccf2009-09-23 17:46:15 -07001698BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001699M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001700L: linux-scsi@vger.kernel.org
1701S: Supported
1702F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001703
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001704BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1705M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001706L: netdev@vger.kernel.org
1707S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001708F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001709
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001710BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001711M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001712L: linux-scsi@vger.kernel.org
1713S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001714F: block/bsg.c
1715F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001716
Clemens Ladischaf399172011-01-10 16:32:54 +01001717BT87X AUDIO DRIVER
1718M: Clemens Ladisch <clemens@ladisch.de>
1719L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1720T: git git://git.alsa-project.org/alsa-kernel.git
1721S: Maintained
1722F: Documentation/sound/alsa/Bt87x.txt
1723F: sound/pci/bt87x.c
1724
Michael Bueschff1d5c22008-07-25 01:46:10 -07001725BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001726M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001727W: http://bu3sch.de/btgpio.php
1728S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001729F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001730
Joe Percheseb1eb042009-01-21 10:49:16 -05001731BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001732M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001733L: linux-btrfs@vger.kernel.org
1734W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001735Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001736T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001737S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001738F: Documentation/filesystems/btrfs.txt
1739F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001742M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001743L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001744W: http://linuxtv.org
Joe Perches08deed12012-03-23 15:01:57 -07001745T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001746S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001747F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001748F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Clemens Ladischaf399172011-01-10 16:32:54 +01001750C-MEDIA CMI8788 DRIVER
1751M: Clemens Ladisch <clemens@ladisch.de>
1752L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1753T: git git://git.alsa-project.org/alsa-kernel.git
1754S: Maintained
1755F: sound/pci/oxygen/
1756
Mark Salter21413552011-10-04 11:21:42 -04001757C6X ARCHITECTURE
1758M: Mark Salter <msalter@redhat.com>
1759M: Aurelien Jacquiot <a-jacquiot@ti.com>
1760L: linux-c6x-dev@linux-c6x.org
1761W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1762S: Maintained
1763F: arch/c6x/
1764
David Howellsa5432f52009-04-20 15:46:45 +01001765CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001766M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001767L: linux-cachefs@redhat.com
1768S: Supported
1769F: Documentation/filesystems/caching/cachefiles.txt
1770F: fs/cachefiles/
1771
Jonathan Corbet77d51402007-03-22 19:44:17 -03001772CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001773M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001774L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07001775T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001777F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001778F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001779
Joe Perches201b6ba2010-09-07 20:33:24 +00001780CAIF NETWORK LAYER
1781M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1782L: netdev@vger.kernel.org
1783S: Supported
1784F: Documentation/networking/caif/
1785F: drivers/net/caif/
1786F: include/linux/caif/
1787F: include/net/caif/
1788F: net/caif/
1789
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001790CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001791M: Muli Ben-Yehuda <muli@il.ibm.com>
1792M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001793L: discuss@x86-64.org
1794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001795F: arch/x86/kernel/pci-calgary_64.c
1796F: arch/x86/kernel/tce_64.c
1797F: arch/x86/include/asm/calgary.h
1798F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001799
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001800CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001801M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001802L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001803W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001804T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001805S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001806F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001807F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001808F: include/linux/can/core.h
1809F: include/linux/can/bcm.h
1810F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001811F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001812
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001813CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001814M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001815M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001816L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001817W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001818T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001819S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001820F: drivers/net/can/
1821F: include/linux/can/dev.h
1822F: include/linux/can/error.h
1823F: include/linux/can/netlink.h
1824F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001825
James Morris95d16c72012-03-16 12:05:48 +11001826CAPABILITIES
1827M: Serge Hallyn <serge.hallyn@canonical.com>
1828L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001829S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001830F: include/linux/capability.h
1831F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001832F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001833F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001834
Arnd Bergmannb8154542008-05-16 11:10:59 +02001835CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001836M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001837L: linuxppc-dev@lists.ozlabs.org
1838L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001839W: http://www.ibm.com/developerworks/power/cell/
1840S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001841F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001842F: arch/powerpc/include/asm/spu*.h
1843F: arch/powerpc/oprofile/*cell*
1844F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001845
Sage Weil9030aaf2009-10-06 11:31:15 -07001846CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001847M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001848L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001849W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001850T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001851S: Supported
1852F: Documentation/filesystems/ceph.txt
1853F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001854F: net/ceph
1855F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001856F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001857
David Vrabel18332a82008-09-17 16:34:44 +01001858CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001859L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001860S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001861F: Documentation/usb/WUSB-Design-overview.txt
1862F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001863F: drivers/usb/host/hwa-hc.c
1864F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001865F: drivers/usb/wusbcore/
1866F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001867
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001868CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001869M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001870W: http://miguelojeda.es/auxdisplay.htm
1871W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001873F: drivers/auxdisplay/cfag12864b.c
1874F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001875
1876CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001877M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001878W: http://miguelojeda.es/auxdisplay.htm
1879W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001881F: drivers/auxdisplay/cfag12864bfb.c
1882F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001883
Johannes Berg704232c2007-04-23 12:20:05 -07001884CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001885M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001886L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001887W: http://wireless.kernel.org/
1888T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1889T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001891F: include/linux/nl80211.h
1892F: include/net/cfg80211.h
1893F: net/wireless/*
1894X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001895
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001896CHAR and MISC DRIVERS
1897M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001898M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001899T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001900S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001901F: drivers/char/*
1902F: drivers/misc/*
1903
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001904CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001905M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001906S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001907F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001908
Harry Weif8407f262011-02-25 14:44:15 -08001909CHINESE DOCUMENTATION
1910M: Harry Wei <harryxiyou@gmail.com>
1911L: xiyoulinuxkernelgroup@googlegroups.com
1912L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1913S: Maintained
1914F: Documentation/zh_CN/
1915
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001916CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1917M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1918L: linux-usb@vger.kernel.org
1919S: Maintained
1920F: drivers/usb/chipidea/
1921
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001922CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001923M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001924M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001925M: Neel Patel <neepatel@cisco.com>
1926M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001927S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001928F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001929
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001930CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001931M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001932L: netdev@vger.kernel.org
1933S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001934F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001935
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001936CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001937M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001938L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001940F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001941
Timur Tabid9e9d822008-04-24 08:45:26 +10001942CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001943M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001944L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001945S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001946F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001947
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001948CLEANCACHE API
1949M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1950L: linux-kernel@vger.kernel.org
1951S: Maintained
1952F: mm/cleancache.c
1953F: include/linux/cleancache.h
1954
Russell Kingd4275352009-04-16 14:05:27 +01001955CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001956M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001957S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001958F: include/linux/clk.h
1959
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001960CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001961M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001962M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1963M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001964L: linux-scsi@vger.kernel.org
1965S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001966F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001967
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001968CMPC ACPI DRIVER
1969M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1970M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001971L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001972S: Supported
1973F: drivers/platform/x86/classmate-laptop.c
1974
Nicolas Palix74425ee2010-06-06 17:15:01 +02001975COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02001976M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02001977M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02001978M: Nicolas Palix <nicolas.palix@imag.fr>
1979L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02001980W: http://coccinelle.lip6.fr/
1981S: Supported
1982F: scripts/coccinelle/
1983F: scripts/coccicheck
1984
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001986M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987M: coda@cs.cmu.edu
1988L: codalist@coda.cs.cmu.edu
1989W: http://www.coda.cs.cmu.edu/
1990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001991F: Documentation/filesystems/coda.txt
1992F: fs/coda/
1993F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
Mike Turquette7704add2012-05-02 18:37:45 -07001995COMMON CLK FRAMEWORK
1996M: Mike Turquette <mturquette@ti.com>
1997M: Mike Turquette <mturquette@linaro.org>
1998L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
1999T: git git://git.linaro.org/people/mturquette/linux.git
2000S: Maintained
2001F: drivers/clk/clk.c
2002F: drivers/clk/clk-*
2003F: include/linux/clk-pr*
2004
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002005COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002006M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002007L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002008L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002009W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002010Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002011T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002012S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002013F: Documentation/filesystems/cifs.txt
2014F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002017M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002018L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002020F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
2022COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002023M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002024L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002026F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002029M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002030L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002032F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002034COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002035M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002036L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002038F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002039
Simon Arlott949be0f2007-03-06 02:47:46 -08002040CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002041M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002042L: accessrunner-general@lists.sourceforge.net
2043W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002045F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002046
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002047CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002048M: Joel Becker <jlbec@evilplan.org>
2049T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002050S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002051F: fs/configfs/
2052F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002053
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002054CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002055M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002056L: netdev@vger.kernel.org
2057S: Maintained
2058F: drivers/connector/
2059
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002060CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002061M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002062M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002063L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002064L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002065T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002067F: include/linux/cgroup*
2068F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002069F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002070
Rudolf Marekbebe4672007-05-08 17:22:02 +02002071CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002072M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002073L: lm-sensors@lm-sensors.org
2074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002075F: Documentation/hwmon/coretemp
2076F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002079M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080W: http://www.fi.muni.cz/~kas/cosa/
2081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002082F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
Florian Fainelli4371ee32009-06-01 02:43:17 -07002084CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002085M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002086L: netdev@vger.kernel.org
2087S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002088F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002089
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002091M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002092L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002093L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002095F: drivers/cpufreq/
2096F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
2098CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002099M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002101F: arch/x86/kernel/cpuid.c
2102F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002104CPU POWER MONITORING SUBSYSTEM
2105M: Dominik Brodowski <linux@dominikbrodowski.net>
2106M: Thomas Renninger <trenn@suse.de>
2107S: Maintained
2108F: tools/power/cpupower
2109
Paul Jacksoned90fb42005-09-27 21:45:37 -07002110CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002111M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002112W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002113W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07002114S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002115F: Documentation/cgroups/cpusets.txt
2116F: include/linux/cpuset.h
2117F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002118
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002120W: http://sourceforge.net/projects/cramfs/
2121S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002122F: Documentation/filesystems/cramfs.txt
2123F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
2125CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002126M: Mikael Starvik <starvik@axis.com>
2127M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002128L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129W: http://developer.axis.com
2130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002131F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002132F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
2134CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002135M: Herbert Xu <herbert@gondor.apana.org.au>
2136M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002138T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002140F: Documentation/crypto/
2141F: arch/*/crypto/
2142F: crypto/
2143F: drivers/crypto/
2144F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
Neil Horman5b07bd52009-02-05 16:03:04 +11002146CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002147M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002148L: linux-crypto@vger.kernel.org
2149S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002150F: crypto/ansi_cprng.c
2151F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002152
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002153CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002154M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002156F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002157
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002158CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002159M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002160L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002161L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07002162T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002163W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002164W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002165S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002166F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002167F: drivers/media/pci/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002168
Antti Palosaari91952bc2012-10-01 12:28:46 -03002169CXD2820R MEDIA DRIVER
2170M: Antti Palosaari <crope@iki.fi>
2171L: linux-media@vger.kernel.org
2172W: http://linuxtv.org/
2173W: http://palosaari.fi/linux/
2174Q: http://patchwork.linuxtv.org/project/linux-media/list/
2175T: git git://linuxtv.org/anttip/media_tree.git
2176S: Maintained
2177F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002178
Steve Wisee5ec3782008-05-20 14:06:33 -07002179CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002180M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002181L: netdev@vger.kernel.org
2182W: http://www.chelsio.com
2183S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002184F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002185
2186CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002187M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002188L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002189W: http://www.openfabrics.org
2190S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002191F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002192
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002193CXGB4 ETHERNET DRIVER (CXGB4)
2194M: Dimitris Michailidis <dm@chelsio.com>
2195L: netdev@vger.kernel.org
2196W: http://www.chelsio.com
2197S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002198F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002199
2200CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2201M: Steve Wise <swise@chelsio.com>
2202L: linux-rdma@vger.kernel.org
2203W: http://www.openfabrics.org
2204S: Supported
2205F: drivers/infiniband/hw/cxgb4/
2206
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002207CXGB4VF ETHERNET DRIVER (CXGB4VF)
2208M: Casey Leedom <leedom@chelsio.com>
2209L: netdev@vger.kernel.org
2210W: http://www.chelsio.com
2211S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002212F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002213
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002214STMMAC ETHERNET DRIVER
2215M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2216L: netdev@vger.kernel.org
2217W: http://www.stlinux.com
2218S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002219F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002222M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002223L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224W: http://www.arm.linux.org.uk/
2225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002226F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002227
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002229M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002230W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002232F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
2234CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002236S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002237F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002238F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
2240CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002242S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002243F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002245CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002246M: Javier Martinez Canillas <javier@dowhile0.org>
2247L: linux-input@vger.kernel.org
2248S: Maintained
2249F: drivers/input/touchscreen/cyttsp*
2250F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002251
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002253M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254W: http://yaina.de/jreuter/
2255W: http://www.qsl.net/dl1bke/
2256L: linux-hams@vger.kernel.org
2257S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002258F: net/ax25/af_ax25.c
2259F: net/ax25/ax25_dev.c
2260F: net/ax25/ax25_ds_*
2261F: net/ax25/ax25_in.c
2262F: net/ax25/ax25_out.c
2263F: net/ax25/ax25_timer.c
2264F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002266DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002267L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002268S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002269F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002270F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002271
2272DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002273M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002274W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002275M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002277F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002278
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002280M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002281M: Ali Akcaagac <aliakc@web.de>
2282M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002284L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285L: http://lists.twibble.org/mailman/listinfo/dc395x/
2286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002287F: Documentation/scsi/dc395x.txt
2288F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002290DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002291M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002292L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002293W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002295F: include/linux/dccp.h
2296F: include/linux/tfrc.h
2297F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002298
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300W: http://linux-decnet.sourceforge.net
2301L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002302S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002303F: Documentation/networking/decnet.txt
2304F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
2306DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002307M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002309F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002311DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002312M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002313L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002315F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002316
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002318M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319W: http://www.debian.org/~dz/i8k/
2320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002321F: drivers/char/i8k.c
2322F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
Doug Warzecha90563ec2005-09-06 15:17:15 -07002324DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002325M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002327F: Documentation/dcdbas.txt
2328F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002329
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002330DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002331M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002332S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002333F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002334
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002335DESIGNWARE USB3 DRD IP DRIVER
2336M: Felipe Balbi <balbi@ti.com>
2337L: linux-usb@vger.kernel.org
2338L: linux-omap@vger.kernel.org
2339T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2340S: Maintained
2341F: drivers/usb/dwc3/
2342
Kyungmin Park89d07762012-01-10 15:09:09 -08002343DEVICE FREQUENCY (DEVFREQ)
2344M: MyungJoo Ham <myungjoo.ham@samsung.com>
2345M: Kyungmin Park <kyungmin.park@samsung.com>
2346L: linux-kernel@vger.kernel.org
2347S: Maintained
2348F: drivers/devfreq/
2349
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002351M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353S: Maintained
2354
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002355DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002356M: Alasdair Kergon <agk@redhat.com>
2357M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002358L: dm-devel@redhat.com
2359W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002360Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002361T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002363F: Documentation/device-mapper/
2364F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002365F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002366F: include/linux/device-mapper.h
2367F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002368
Guenter Roeck335d7c52011-01-26 11:45:49 -08002369DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002370M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002371L: linux-i2c@vger.kernel.org
2372S: Maintained
2373F: drivers/i2c/busses/i2c-diolan-u2c.c
2374
Randy Dunlape7839f22008-10-12 16:11:45 -07002375DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002376M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002378F: Documentation/filesystems/dnotify.txt
2379F: fs/notify/dnotify/
2380F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
2382DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002383M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2385W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2386W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2387S: Maintained
2388
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002389DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002390M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002392F: Documentation/filesystems/quota.txt
2393F: fs/quota/
2394F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
Bernie Thompson702686a2012-03-01 13:52:13 -08002396DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2397M: Bernie Thompson <bernie@plugable.com>
2398L: linux-fbdev@vger.kernel.org
2399S: Maintained
2400W: http://plugable.com/category/projects/udlfb/
2401F: drivers/video/udlfb.c
2402F: include/video/udlfb.h
2403F: Documentation/fb/udlfb.txt
2404
Randy Dunlape7839f22008-10-12 16:11:45 -07002405DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002406M: Christine Caulfield <ccaulfie@redhat.com>
2407M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002408L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002409W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002410T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002411S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002412F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002413
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302414DMA BUFFER SHARING FRAMEWORK
2415M: Sumit Semwal <sumit.semwal@linaro.org>
2416S: Maintained
2417L: linux-media@vger.kernel.org
2418L: dri-devel@lists.freedesktop.org
2419L: linaro-mm-sig@lists.linaro.org
2420F: drivers/base/dma-buf*
2421F: include/linux/dma-buf*
2422F: Documentation/dma-buf-sharing.txt
2423T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2424
Dan Williamsb3e5f262007-08-07 10:26:35 -07002425DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002426M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002427M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002428S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002429F: drivers/dma/
2430F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302431T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2432T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002433
Juerg Haefligerb8250372007-06-09 10:11:16 -04002434DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002435M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002436L: lm-sensors@lm-sensors.org
2437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002438F: Documentation/hwmon/dme1737
2439F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002440
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002441DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002442M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002443L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002444S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002445F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002446
Joe Perches7d2c86b2009-04-07 20:59:01 -07002447DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002448M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002449L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002450T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002452F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002453
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002455M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456L: blinux-list@redhat.com
2457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002458F: drivers/char/dtlk.c
2459F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002461DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002462M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002463L: linux-scsi@vger.kernel.org
2464W: http://www.adaptec.com/
2465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002466F: drivers/scsi/dpt*
2467F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002468
Philipp Reisnerb411b362009-09-25 16:07:19 -07002469DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002470P: Philipp Reisner
2471P: Lars Ellenberg
2472M: drbd-dev@lists.linbit.com
2473L: drbd-user@lists.linbit.com
2474W: http://www.drbd.org
2475T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2476T: git git://git.drbd.org/drbd-8.3.git
2477S: Supported
2478F: drivers/block/drbd/
2479F: lib/lru_cache.c
2480F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002481
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002482DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002483M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002484T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002486F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002487F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002488F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002489F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002490F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002491F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002492F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
2494DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002495M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002496L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002497T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002499F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002500F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501
Chris Wilson8daf7472010-09-28 14:07:26 +01002502INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002503M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002504L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002505L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002506T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002507S: Supported
2508F: drivers/gpu/drm/i915
2509F: include/drm/i915*
2510
Kyungmin Park398a6d42011-11-02 11:33:16 +09002511DRM DRIVERS FOR EXYNOS
2512M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002513M: Joonyoung Shim <jy0922.shim@samsung.com>
2514M: Seung-Woo Kim <sw0312.kim@samsung.com>
2515M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002516L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002517T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002518S: Supported
2519F: drivers/gpu/drm/exynos
2520F: include/drm/exynos*
2521
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002523M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002524L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002526F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Antti Palosaari91952bc2012-10-01 12:28:46 -03002528DVB_USB_AF9015 MEDIA DRIVER
2529M: Antti Palosaari <crope@iki.fi>
2530L: linux-media@vger.kernel.org
2531W: http://linuxtv.org/
2532W: http://palosaari.fi/linux/
2533Q: http://patchwork.linuxtv.org/project/linux-media/list/
2534T: git git://linuxtv.org/anttip/media_tree.git
2535S: Maintained
2536F: drivers/media/usb/dvb-usb-v2/af9015*
2537
2538DVB_USB_AF9035 MEDIA DRIVER
2539M: Antti Palosaari <crope@iki.fi>
2540L: linux-media@vger.kernel.org
2541W: http://linuxtv.org/
2542W: http://palosaari.fi/linux/
2543Q: http://patchwork.linuxtv.org/project/linux-media/list/
2544T: git git://linuxtv.org/anttip/media_tree.git
2545S: Maintained
2546F: drivers/media/usb/dvb-usb-v2/af9035*
2547
2548DVB_USB_ANYSEE MEDIA DRIVER
2549M: Antti Palosaari <crope@iki.fi>
2550L: linux-media@vger.kernel.org
2551W: http://linuxtv.org/
2552W: http://palosaari.fi/linux/
2553Q: http://patchwork.linuxtv.org/project/linux-media/list/
2554T: git git://linuxtv.org/anttip/media_tree.git
2555S: Maintained
2556F: drivers/media/usb/dvb-usb-v2/anysee*
2557
2558DVB_USB_AU6610 MEDIA DRIVER
2559M: Antti Palosaari <crope@iki.fi>
2560L: linux-media@vger.kernel.org
2561W: http://linuxtv.org/
2562W: http://palosaari.fi/linux/
2563Q: http://patchwork.linuxtv.org/project/linux-media/list/
2564T: git git://linuxtv.org/anttip/media_tree.git
2565S: Maintained
2566F: drivers/media/usb/dvb-usb-v2/au6610*
2567
2568DVB_USB_CE6230 MEDIA DRIVER
2569M: Antti Palosaari <crope@iki.fi>
2570L: linux-media@vger.kernel.org
2571W: http://linuxtv.org/
2572W: http://palosaari.fi/linux/
2573Q: http://patchwork.linuxtv.org/project/linux-media/list/
2574T: git git://linuxtv.org/anttip/media_tree.git
2575S: Maintained
2576F: drivers/media/usb/dvb-usb-v2/ce6230*
2577
Michael Krufkyd099dea2012-10-02 00:56:20 -03002578DVB_USB_CXUSB MEDIA DRIVER
2579M: Michael Krufky <mkrufky@linuxtv.org>
2580L: linux-media@vger.kernel.org
2581W: http://linuxtv.org/
2582W: http://github.com/mkrufky
2583Q: http://patchwork.linuxtv.org/project/linux-media/list/
2584T: git git://linuxtv.org/media_tree.git
2585S: Maintained
2586F: drivers/media/usb/dvb-usb-v2/cxusb*
2587
Antti Palosaari91952bc2012-10-01 12:28:46 -03002588DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2589M: Antti Palosaari <crope@iki.fi>
2590L: linux-media@vger.kernel.org
2591W: http://linuxtv.org/
2592W: http://palosaari.fi/linux/
2593Q: http://patchwork.linuxtv.org/project/linux-media/list/
2594T: git git://linuxtv.org/anttip/media_tree.git
2595S: Maintained
2596F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2597
2598DVB_USB_EC168 MEDIA DRIVER
2599M: Antti Palosaari <crope@iki.fi>
2600L: linux-media@vger.kernel.org
2601W: http://linuxtv.org/
2602W: http://palosaari.fi/linux/
2603Q: http://patchwork.linuxtv.org/project/linux-media/list/
2604T: git git://linuxtv.org/anttip/media_tree.git
2605S: Maintained
2606F: drivers/media/usb/dvb-usb-v2/ec168*
2607
Michael Krufky8856f5f2012-10-02 00:55:50 -03002608DVB_USB_MXL111SF MEDIA DRIVER
2609M: Michael Krufky <mkrufky@linuxtv.org>
2610L: linux-media@vger.kernel.org
2611W: http://linuxtv.org/
2612W: http://github.com/mkrufky
2613Q: http://patchwork.linuxtv.org/project/linux-media/list/
2614T: git git://linuxtv.org/mkrufky/mxl111sf.git
2615S: Maintained
2616F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2617
Antti Palosaari91952bc2012-10-01 12:28:46 -03002618DVB_USB_RTL28XXU MEDIA DRIVER
2619M: Antti Palosaari <crope@iki.fi>
2620L: linux-media@vger.kernel.org
2621W: http://linuxtv.org/
2622W: http://palosaari.fi/linux/
2623Q: http://patchwork.linuxtv.org/project/linux-media/list/
2624T: git git://linuxtv.org/anttip/media_tree.git
2625S: Maintained
2626F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2627
2628DVB_USB_V2 MEDIA DRIVER
2629M: Antti Palosaari <crope@iki.fi>
2630L: linux-media@vger.kernel.org
2631W: http://linuxtv.org/
2632W: http://palosaari.fi/linux/
2633Q: http://patchwork.linuxtv.org/project/linux-media/list/
2634T: git git://linuxtv.org/anttip/media_tree.git
2635S: Maintained
2636F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2637F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2638
Jason Baronac0ac382011-08-11 14:36:43 -04002639DYNAMIC DEBUG
2640M: Jason Baron <jbaron@redhat.com>
2641S: Maintained
2642F: lib/dynamic_debug.c
2643F: include/linux/dynamic_debug.h
2644
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002645DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002646M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002647S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002648F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002649
Antti Palosaari91952bc2012-10-01 12:28:46 -03002650E4000 MEDIA DRIVER
2651M: Antti Palosaari <crope@iki.fi>
2652L: linux-media@vger.kernel.org
2653W: http://linuxtv.org/
2654W: http://palosaari.fi/linux/
2655Q: http://patchwork.linuxtv.org/project/linux-media/list/
2656T: git git://linuxtv.org/anttip/media_tree.git
2657S: Maintained
2658F: drivers/media/tuners/e4000*
2659
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002661M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002662L: linux-eata@i-connect.net
2663L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002665F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666
2667EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002668M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669L: linux-scsi@vger.kernel.org
2670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002671F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
2673EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002674M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002675L: linux-eata@i-connect.net
2676L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002678F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
2680EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002681M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002682L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683W: http://ebtables.sourceforge.net/
2684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002685F: include/linux/netfilter_bridge/ebt_*.h
2686F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687
Antti Palosaari91952bc2012-10-01 12:28:46 -03002688EC100 MEDIA DRIVER
2689M: Antti Palosaari <crope@iki.fi>
2690L: linux-media@vger.kernel.org
2691W: http://linuxtv.org/
2692W: http://palosaari.fi/linux/
2693Q: http://patchwork.linuxtv.org/project/linux-media/list/
2694T: git git://linuxtv.org/anttip/media_tree.git
2695S: Maintained
2696F: drivers/media/dvb-frontends/ec100*
2697
Michael Halcrow237fead2006-10-04 02:16:22 -07002698ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002699M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002700M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002701L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002702W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002703S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002704F: Documentation/filesystems/ecryptfs.txt
2705F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002706
Alan Coxda9bb1d2006-01-18 17:44:13 -08002707EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002708M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002709L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002710W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002711S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002712F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002713F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002714F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002715
Borislav Petkovc476c232009-05-20 20:31:58 +02002716EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002717M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002718M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002719L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002720W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002721S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002722F: drivers/edac/amd64_edac*
2723
Dave Peterson0e438e32006-03-26 01:38:55 -08002724EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002725M: Mark Gross <mark.gross@intel.com>
2726M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002727L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002728W: bluesmoke.sourceforge.net
2729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002730F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002731
2732EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002733M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002734L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002735W: bluesmoke.sourceforge.net
2736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002737F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002738
Douglas Thompson6bc78402007-07-19 01:50:12 -07002739EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002740M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002741L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002742W: bluesmoke.sourceforge.net
2743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002744F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002745
2746EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002747M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002748L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002749W: bluesmoke.sourceforge.net
2750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002751F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002752
2753EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002754M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002755L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002756W: bluesmoke.sourceforge.net
2757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002758F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002759
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002760EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002761M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002762L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002763W: bluesmoke.sourceforge.net
2764S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002765F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002766
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002767EDAC-I7300
2768M: Mauro Carvalho Chehab <mchehab@redhat.com>
2769L: linux-edac@vger.kernel.org
2770W: bluesmoke.sourceforge.net
2771S: Maintained
2772F: drivers/edac/i7300_edac.c
2773
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002774EDAC-I7CORE
2775M: Mauro Carvalho Chehab <mchehab@redhat.com>
2776L: linux-edac@vger.kernel.org
2777W: bluesmoke.sourceforge.net
2778S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002779F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002780
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002781EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002782M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302783M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002784L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002785W: bluesmoke.sourceforge.net
2786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002787F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002788
2789EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002790M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002791L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002792W: bluesmoke.sourceforge.net
2793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002794F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002795
Dave Peterson0e438e32006-03-26 01:38:55 -08002796EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002797M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002798L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002799W: bluesmoke.sourceforge.net
2800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002801F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002802
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002803EDAC-SBRIDGE
2804M: Mauro Carvalho Chehab <mchehab@redhat.com>
2805L: linux-edac@vger.kernel.org
2806W: bluesmoke.sourceforge.net
2807S: Maintained
2808F: drivers/edac/sb_edac.c
2809
Clemens Ladischaf399172011-01-10 16:32:54 +01002810EDIROL UA-101/UA-1000 DRIVER
2811M: Clemens Ladisch <clemens@ladisch.de>
2812L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2813T: git git://git.alsa-project.org/alsa-kernel.git
2814S: Maintained
2815F: sound/usb/misc/ua101.c
2816
Matt Fleming1f7df952012-10-03 10:04:02 +01002817EXTENSIBLE FIRMWARE INTERFACE (EFI)
2818M: Matt Fleming <matt.fleming@intel.com>
2819L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002820T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002821S: Maintained
2822F: Documentation/x86/efi-stub.txt
2823F: arch/ia64/kernel/efi.c
2824F: arch/x86/boot/compressed/eboot.[ch]
2825F: arch/x86/include/asm/efi.h
2826F: arch/x86/platform/efi/*
2827F: drivers/firmware/efivars.c
2828F: include/linux/efi*.h
2829
Peter Jones85a00d92010-09-22 13:05:04 -07002830EFIFB FRAMEBUFFER DRIVER
2831L: linux-fbdev@vger.kernel.org
2832M: Peter Jones <pjones@redhat.com>
2833S: Maintained
2834F: drivers/video/efifb.c
2835
Josh Triplett0bee8d22006-07-30 03:03:58 -07002836EFS FILESYSTEM
2837W: http://aeschi.ch.eu.org/efs/
2838S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002839F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002840
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002841EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002842M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2843M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002844L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002845S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002846F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002847
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002848EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002849M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002850L: netdev@vger.kernel.org
2851S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002852F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002853
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002854EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002855M: Paul Gortmaker <paul.gortmaker@windriver.com>
2856M: Matt Mackall <mpm@selenic.com>
2857M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002858L: linux-embedded@vger.kernel.org
2859S: Maintained
2860
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002861EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002862M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002863L: linux-scsi@vger.kernel.org
2864W: http://sourceforge.net/projects/lpfcxxxx
2865S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002866F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002867
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002868ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002869M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002870S: Maintained
2871F: drivers/misc/cb710/
2872F: drivers/mmc/host/cb710-mmc.*
2873F: include/linux/cb710.h
2874
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002875ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2876M: Maxim Levitsky <maximlevitsky@gmail.com>
2877S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002878F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002879
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002881M: Christopher Hoover <ch@murgatroid.com>
2882M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002884F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002886EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002887M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002888S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002889T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002890F: drivers/video/s1d13xxxfb.c
2891F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002892
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002894M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002895L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002897F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898
2899ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002900M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002901L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002902L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002903W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002905F: include/linux/netfilter_bridge/
2906F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
2908ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002909M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002911F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
2913EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002914M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002915L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002917F: Documentation/filesystems/ext2.txt
2918F: fs/ext2/
2919F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920
2921EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002922M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002923M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002924M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002925L: linux-ext4@vger.kernel.org
2926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002927F: Documentation/filesystems/ext3.txt
2928F: fs/ext3/
2929F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002930
2931EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002932M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002933M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002934L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002935W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002936Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002938F: Documentation/filesystems/ext4.txt
2939F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
Mimi Zoharc5532b02011-08-17 18:52:24 -04002941Extended Verification Module (EVM)
2942M: Mimi Zohar <zohar@us.ibm.com>
2943S: Supported
2944F: security/integrity/evm/
2945
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09002946EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
2947M: MyungJoo Ham <myungjoo.ham@samsung.com>
2948M: Chanwoo Choi <cw00.choi@samsung.com>
2949L: linux-kernel@vger.kernel.org
2950S: Maintained
2951F: drivers/extcon/
2952F: Documentation/extcon/
2953
Jingoo Han0a799512012-02-06 11:30:39 +09002954EXYNOS DP DRIVER
2955M: Jingoo Han <jg1.han@samsung.com>
2956L: linux-fbdev@vger.kernel.org
2957S: Maintained
2958F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07002959F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09002960
Donghwa Lee33ad3912012-03-06 11:44:58 +09002961EXYNOS MIPI DISPLAY DRIVERS
2962M: Inki Dae <inki.dae@samsung.com>
2963M: Donghwa Lee <dh09.lee@samsung.com>
2964M: Kyungmin Park <kyungmin.park@samsung.com>
2965L: linux-fbdev@vger.kernel.org
2966S: Maintained
2967F: drivers/video/exynos/exynos_mipi*
2968F: include/video/exynos_mipi*
2969
Jean Delvaree53004e2006-01-09 23:26:14 +01002970F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002971M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002972L: lm-sensors@lm-sensors.org
2973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002974F: Documentation/hwmon/f71805f
2975F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002976
Michael Büscheea977e2012-04-02 12:14:32 -03002977FC0011 TUNER DRIVER
2978M: Michael Buesch <m@bues.ch>
2979L: linux-media@vger.kernel.org
2980S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03002981F: drivers/media/tuners/fc0011.h
2982F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03002983
Antti Palosaari91952bc2012-10-01 12:28:46 -03002984FC2580 MEDIA DRIVER
2985M: Antti Palosaari <crope@iki.fi>
2986L: linux-media@vger.kernel.org
2987W: http://linuxtv.org/
2988W: http://palosaari.fi/linux/
2989Q: http://patchwork.linuxtv.org/project/linux-media/list/
2990T: git git://linuxtv.org/anttip/media_tree.git
2991S: Maintained
2992F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993
Eric Paris88b2dbd2010-08-18 12:25:50 -04002994FANOTIFY
2995M: Eric Paris <eparis@redhat.com>
2996S: Maintained
2997F: fs/notify/fanotify/
2998F: include/linux/fanotify.h
2999
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003001M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002W: http://www.farsite.co.uk/
3003S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003004F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005
Akinobu Mitac5408b82007-04-23 14:41:20 -07003006FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003007M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003008S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003009F: Documentation/fault-injection/
3010F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003011
Robert Lovecae727d2010-02-16 12:16:00 -08003012FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3013M: Robert Love <robert.w.love@intel.com>
3014L: devel@open-fcoe.org
3015W: www.Open-FCoE.org
3016S: Supported
3017F: drivers/scsi/libfc/
3018F: drivers/scsi/fcoe/
3019F: include/scsi/fc/
3020F: include/scsi/libfc.h
3021F: include/scsi/libfcoe.h
3022
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003023FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003024M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003025L: linux-fsdevel@vger.kernel.org
3026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003027F: include/linux/fcntl.h
3028F: include/linux/fs.h
3029F: fs/fcntl.c
3030F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003031
3032FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003033M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003034L: linux-fsdevel@vger.kernel.org
3035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003036F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003037
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003038FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003039M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003040L: lm-sensors@lm-sensors.org
3041S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003042F: drivers/hwmon/f75375s.c
3043F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003044
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003045FIREWIRE AUDIO DRIVERS
3046M: Clemens Ladisch <clemens@ladisch.de>
3047L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3048T: git git://git.alsa-project.org/alsa-kernel.git
3049S: Maintained
3050F: sound/firewire/
3051
Chris Boota511ce32012-04-14 17:50:35 -07003052FIREWIRE SBP-2 TARGET
3053M: Chris Boot <bootc@bootc.net>
3054L: linux-scsi@vger.kernel.org
3055L: target-devel@vger.kernel.org
3056L: linux1394-devel@lists.sourceforge.net
3057T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3058S: Maintained
3059F: drivers/target/sbp/
3060
Joe Perches7d2c86b2009-04-07 20:59:01 -07003061FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003062M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003063L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003064W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003065T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003067F: drivers/firewire/
3068F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003069F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003070
3071FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003072M: Ming Lei <ming.lei@canonical.com>
3073L: linux-kernel@vger.kernel.org
3074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003075F: Documentation/firmware_class/
3076F: drivers/base/firmware*.c
3077F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003078
Jiri Kosina8206f662012-05-18 13:52:29 +02003079FLOPPY DRIVER
3080M: Jiri Kosina <jkosina@suse.cz>
3081T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3082S: Odd fixes
3083F: drivers/block/floppy.c
3084
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003085FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003086M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003087W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003089F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003090
3091FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003092L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003093S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003094F: drivers/net/wan/dlci.c
3095F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003096
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003098M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003099L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003101Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003102T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003104F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003105F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003106F: drivers/video/
3107F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003108F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109
Zhang Wei173acc72008-03-01 07:42:48 -07003110FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003111M: Li Yang <leoli@freescale.com>
3112M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003113L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003115F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003116
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003117FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003118M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003119L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003120L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003122F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003123
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003124FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003125M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003126L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003127L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003129F: arch/arm/plat-mxc/include/mach/imxfb.h
3130F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003131
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003132FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003133M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3134M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003135L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003136L: netdev@vger.kernel.org
3137S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003138F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003139F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003140
Timur Tabid9e9d822008-04-24 08:45:26 +10003141FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003142M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003143L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003144S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003145F: arch/powerpc/sysdev/qe_lib/
3146F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003147
Joe Perchesb55ef9292009-10-26 16:49:46 -07003148FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003149M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003150L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003151L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003152S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003153F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003154
Li Yangbeaf53b2007-05-25 13:54:02 +08003155FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003156M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003157L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003158L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003159S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003160F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003161
Timur Tabid9e9d822008-04-24 08:45:26 +10003162FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003163M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003164L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003165S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003166F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003167
3168FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003169M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003170L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003171L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003172S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003173F: sound/soc/fsl/fsl*
3174F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003175
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003177M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003180F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181
Pavel Machek71038f52009-01-15 13:51:02 -08003182FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003183M: Pavel Machek <pavel@ucw.cz>
3184M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003185L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003186S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003187F: Documentation/power/freezing-of-tasks.txt
3188F: include/linux/freezer.h
3189F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003190
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003191FRONTSWAP API
3192M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3193L: linux-kernel@vger.kernel.org
3194S: Maintained
3195F: mm/frontswap.c
3196F: include/linux/frontswap.h
3197
David Howellsa5432f52009-04-20 15:46:45 +01003198FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003199M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003200L: linux-cachefs@redhat.com
3201S: Supported
3202F: Documentation/filesystems/caching/
3203F: fs/fscache/
3204F: include/linux/fscache*.h
3205
David Howells5ab7ffe2007-04-10 15:10:45 +01003206FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003207M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003209F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210
Jonathan Woithe20b93732008-06-11 10:14:56 +09303211FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303212M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003213L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003215F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303216
Heungjun Kim4da621b2011-11-11 08:05:33 -03003217FUJITSU M-5MO LS CAMERA ISP DRIVER
3218M: Kyungmin Park <kyungmin.park@samsung.com>
3219M: Heungjun Kim <riverful.kim@samsung.com>
3220L: linux-media@vger.kernel.org
3221S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003222F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003223F: include/media/m5mols.h
3224
Robert Gerlach2d24c492012-01-18 14:26:22 +01003225FUJITSU TABLET EXTRAS
3226M: Robert Gerlach <khnz@gmx.de>
3227L: platform-driver-x86@vger.kernel.org
3228S: Maintained
3229F: drivers/platform/x86/fujitsu-tablet.c
3230
Miklos Szeredi04578f12005-09-09 13:10:22 -07003231FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003232M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003233L: fuse-devel@lists.sourceforge.net
3234W: http://fuse.sourceforge.net/
3235S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003236F: fs/fuse/
3237F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003238
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003240M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003242S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003243F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
3245GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003246M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247L: linux-scsi@vger.kernel.org
3248W: http://www.icp-vortex.com/
3249S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003250F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003252GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003253M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003254S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003255F: drivers/i2c/busses/i2c-gpio.c
3256F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003257
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003258GENERIC GPIO I2C MULTIPLEXER DRIVER
3259M: Peter Korsgaard <peter.korsgaard@barco.com>
3260L: linux-i2c@vger.kernel.org
3261S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003262F: drivers/i2c/muxes/i2c-mux-gpio.c
3263F: include/linux/i2c-mux-gpio.h
3264F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003265
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003266GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003267M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003270F: drivers/net/wan/c101.c
3271F: drivers/net/wan/hd6457*
3272F: drivers/net/wan/hdlc*
3273F: drivers/net/wan/n2.c
3274F: drivers/net/wan/pc300too.c
3275F: drivers/net/wan/pci200syn.c
3276F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003278GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003279M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003280L: linux-arch@vger.kernel.org
3281T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3282S: Maintained
3283F: include/asm-generic
3284
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003285GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003286M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003287L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003288S: Supported
3289F: drivers/uio/uio_pci_generic.c
3290
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003291GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003292M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003293L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003294W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003295T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3296T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003297S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003298F: Documentation/filesystems/gfs2*.txt
3299F: fs/gfs2/
3300F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003301
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003302GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003303M: Hansjoerg Lipp <hjlipp@web.de>
3304M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003305L: gigaset307x-common@lists.sourceforge.net
3306W: http://gigaset307x.sourceforge.net/
3307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003308F: Documentation/isdn/README.gigaset
3309F: drivers/isdn/gigaset/
3310F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003311
Grant Likelya0dc00b2011-02-12 01:48:14 -07003312GPIO SUBSYSTEM
3313M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003314M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003315S: Maintained
3316T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003317F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003318F: drivers/gpio/
3319F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003320F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003321
Harry Wei71a6d0a2011-05-11 15:13:33 -07003322GRE DEMULTIPLEXER DRIVER
3323M: Dmitry Kozlov <xeb@mail.ru>
3324L: netdev@vger.kernel.org
3325S: Maintained
3326F: net/ipv4/gre.c
3327F: include/net/gre.h
3328
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003329GRETH 10/100/1G Ethernet MAC device driver
3330M: Kristoffer Glembo <kristoffer@gaisler.com>
3331L: netdev@vger.kernel.org
3332S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003333F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003334
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003335GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003336M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003337L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003338T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003339S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003340F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003341
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003342GSPCA GL860 SUBDRIVER
3343M: Olivier Lorin <o.lorin@laposte.net>
3344L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003345T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003346S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003347F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003348
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003349GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003350M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003351L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003352T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003353S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003354F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003355
3356GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003357M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003358L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003359T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003360S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003361F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003362
Brian Johnson261982f2009-07-19 15:58:56 -03003363GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003364M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003365L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003366T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Brian Johnson261982f2009-07-19 15:58:56 -03003367S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003368F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003369
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003370GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003371M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003372L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003373T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003374S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003375F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003376
3377GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003378M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003379L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003380T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003381S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003382F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003383
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003384STK1160 USB VIDEO CAPTURE DRIVER
3385M: Ezequiel Garcia <elezegarcia@gmail.com>
3386L: linux-media@vger.kernel.org
3387T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3388S: Maintained
3389F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003390
Harry Wei71a6d0a2011-05-11 15:13:33 -07003391HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3392M: Frank Seidel <frank@f-seidel.de>
3393L: platform-driver-x86@vger.kernel.org
3394W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3395S: Maintained
3396F: drivers/platform/x86/hdaps.c
3397
3398HWPOISON MEMORY FAILURE HANDLING
3399M: Andi Kleen <andi@firstfloor.org>
3400L: linux-mm@kvack.org
3401T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3402S: Maintained
3403F: mm/memory-failure.c
3404F: mm/hwpoison-inject.c
3405
3406HYPERVISOR VIRTUAL CONSOLE DRIVER
3407L: linuxppc-dev@lists.ozlabs.org
3408S: Odd Fixes
3409F: drivers/tty/hvc/
3410
Michael Buesch844dd052006-06-26 00:24:59 -07003411HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003412M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003413M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003414L: lm-sensors@lm-sensors.org
3415W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003416T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003417T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003418S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003419F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003420F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003421F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003422
3423HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003424M: Matt Mackall <mpm@selenic.com>
3425M: Herbert Xu <herbert@gondor.apana.org.au>
3426S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003427F: Documentation/hw_random.txt
3428F: drivers/char/hw_random/
3429F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003430
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003431HARDWARE SPINLOCK CORE
3432M: Ohad Ben-Cohen <ohad@wizery.com>
3433S: Maintained
3434F: Documentation/hwspinlock.txt
3435F: drivers/hwspinlock/hwspinlock_*
3436F: include/linux/hwspinlock.h
3437
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003439L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003441F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
Antti Palosaari91952bc2012-10-01 12:28:46 -03003443HD29L2 MEDIA DRIVER
3444M: Antti Palosaari <crope@iki.fi>
3445L: linux-media@vger.kernel.org
3446W: http://linuxtv.org/
3447W: http://palosaari.fi/linux/
3448Q: http://patchwork.linuxtv.org/project/linux-media/list/
3449T: git git://linuxtv.org/anttip/media_tree.git
3450S: Maintained
3451F: drivers/media/dvb-frontends/hd29l2*
3452
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003453HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003454M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003455L: iss_storagedev@hp.com
3456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003457F: Documentation/blockdev/cpqarray.txt
3458F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003459
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003460HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003461M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003462L: iss_storagedev@hp.com
3463S: Supported
3464F: Documentation/scsi/hpsa.txt
3465F: drivers/scsi/hpsa*.[ch]
3466F: include/linux/cciss*.h
3467
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003468HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003469M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003470L: iss_storagedev@hp.com
3471S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003472F: Documentation/blockdev/cciss.txt
3473F: drivers/block/cciss*
3474F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003475
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003477L: linux-fsdevel@vger.kernel.org
3478S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003479F: Documentation/filesystems/hfs.txt
3480F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
3482HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003483M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484L: linux-nvidia@lists.surfsouth.com
3485W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003487F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003489HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003490M: Pavel Machek <pavel@ucw.cz>
3491M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003492L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003493S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003494F: arch/x86/power/
3495F: drivers/base/power/
3496F: kernel/power/
3497F: include/linux/suspend.h
3498F: include/linux/freezer.h
3499F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003500F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003501
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003502HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003503M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003504L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003505T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003507F: drivers/hid/
3508F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003509
Ingo Molnar38bed542007-02-22 09:09:34 +01003510HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003511M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003512T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003514F: Documentation/timers/
3515F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003516F: kernel/time/clockevents.c
3517F: kernel/time/tick*.*
3518F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003519F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003520F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003521
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003524S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003525F: drivers/net/hamradio/dmascc.c
3526F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003528HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003529M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003530W: http://www.highpoint-tech.com
3531S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003532F: Documentation/scsi/hptiop.txt
3533F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003534
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003536M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537L: linux-hippi@sunsite.dk
3538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003539F: include/linux/hippidevice.h
3540F: include/linux/if_hippi.h
3541F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003542F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543
Jouni Malinenff1d2762005-05-12 22:54:16 -04003544HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003545M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003546L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003547L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003548W: http://hostap.epitest.fi/
3549S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003550F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003551
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003552HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003553L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003554S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003555F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003556
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003557HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003558M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003559S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003560F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003561
Joe Perches7d2c86b2009-04-07 20:59:01 -07003562HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003563M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003565F: Documentation/timers/hpet.txt
3566F: drivers/char/hpet.c
3567F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003568
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003569HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003570M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003572F: arch/x86/kernel/hpet.c
3573F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003574
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003576M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003579F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580
Joe Perches7d2c86b2009-04-07 20:59:01 -07003581HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003582M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003583W: http://www.pharscape.org
3584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003585F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003586
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003587HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003588M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003589L: linux-input@vger.kernel.org
3590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003591F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003592
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003594M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003596F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003598Hyper-V CORE AND DRIVERS
3599M: K. Y. Srinivasan <kys@microsoft.com>
3600M: Haiyang Zhang <haiyangz@microsoft.com>
3601L: devel@linuxdriverproject.org
3602S: Maintained
3603F: drivers/hv/
3604F: drivers/hid/hid-hyperv.c
3605F: drivers/net/hyperv/
3606F: drivers/staging/hv/
3607
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003608I2C OVER PARALLEL PORT
3609M: Jean Delvare <khali@linux-fr.org>
3610L: linux-i2c@vger.kernel.org
3611S: Maintained
3612F: Documentation/i2c/busses/i2c-parport
3613F: Documentation/i2c/busses/i2c-parport-light
3614F: drivers/i2c/busses/i2c-parport.c
3615F: drivers/i2c/busses/i2c-parport-light.c
3616
3617I2C/SMBUS CONTROLLER DRIVERS FOR PC
3618M: Jean Delvare <khali@linux-fr.org>
3619L: linux-i2c@vger.kernel.org
3620S: Maintained
3621F: Documentation/i2c/busses/i2c-ali1535
3622F: Documentation/i2c/busses/i2c-ali1563
3623F: Documentation/i2c/busses/i2c-ali15x3
3624F: Documentation/i2c/busses/i2c-amd756
3625F: Documentation/i2c/busses/i2c-amd8111
3626F: Documentation/i2c/busses/i2c-i801
3627F: Documentation/i2c/busses/i2c-nforce2
3628F: Documentation/i2c/busses/i2c-piix4
3629F: Documentation/i2c/busses/i2c-sis5595
3630F: Documentation/i2c/busses/i2c-sis630
3631F: Documentation/i2c/busses/i2c-sis96x
3632F: Documentation/i2c/busses/i2c-via
3633F: Documentation/i2c/busses/i2c-viapro
3634F: drivers/i2c/busses/i2c-ali1535.c
3635F: drivers/i2c/busses/i2c-ali1563.c
3636F: drivers/i2c/busses/i2c-ali15x3.c
3637F: drivers/i2c/busses/i2c-amd756.c
3638F: drivers/i2c/busses/i2c-amd756-s4882.c
3639F: drivers/i2c/busses/i2c-amd8111.c
3640F: drivers/i2c/busses/i2c-i801.c
3641F: drivers/i2c/busses/i2c-isch.c
3642F: drivers/i2c/busses/i2c-nforce2.c
3643F: drivers/i2c/busses/i2c-nforce2-s4985.c
3644F: drivers/i2c/busses/i2c-piix4.c
3645F: drivers/i2c/busses/i2c-sis5595.c
3646F: drivers/i2c/busses/i2c-sis630.c
3647F: drivers/i2c/busses/i2c-sis96x.c
3648F: drivers/i2c/busses/i2c-via.c
3649F: drivers/i2c/busses/i2c-viapro.c
3650
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003651I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003652M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003653L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003655F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003656
Jean Delvare5b543962005-08-15 19:51:02 +02003657I2C SUBSYSTEM
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003658M: Wolfram Sang <w.sang@pengutronix.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003659M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003660L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003661W: http://i2c.wiki.kernel.org/
3662T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003663T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003665F: Documentation/i2c/
3666F: drivers/i2c/
3667F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003668F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003670I2C-TAOS-EVM DRIVER
3671M: Jean Delvare <khali@linux-fr.org>
3672L: linux-i2c@vger.kernel.org
3673S: Maintained
3674F: Documentation/i2c/busses/i2c-taos-evm
3675F: drivers/i2c/busses/i2c-taos-evm.c
3676
Till Harbaume8c76ee2007-05-01 23:26:35 +02003677I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003678M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003679L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003680W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003682F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003683
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003685M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003687F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
3689i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003690M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003691T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692S: Maintained
3693
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003695M: Tony Luck <tony.luck@intel.com>
3696M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003698T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003700F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701
Kent Yoder956c2032012-09-07 04:17:01 +08003702IBM Power in-Nest Crypto Acceleration
3703M: Kent Yoder <key@linux.vnet.ibm.com>
3704L: linux-crypto@vger.kernel.org
3705S: Supported
3706F: drivers/crypto/nx/
3707
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003708IBM Power 842 compression accelerator
3709M: Robert Jennings <rcj@linux.vnet.ibm.com>
3710S: Supported
3711F: drivers/crypto/nx/nx-842.c
3712F: include/linux/nx842.h
3713
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003715M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003717F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718
Santiago Leon9d348af2010-09-03 18:29:53 +00003719IBM Power Virtual Ethernet Device Driver
3720M: Santiago Leon <santil@linux.vnet.ibm.com>
3721L: netdev@vger.kernel.org
3722S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003723F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003724
Robert Jennings4b7652c2012-07-31 12:34:36 -05003725IBM Power Virtual SCSI/FC Device Drivers
3726M: Robert Jennings <rcj@linux.vnet.ibm.com>
3727L: linux-scsi@vger.kernel.org
3728S: Supported
3729F: drivers/scsi/ibmvscsi/
3730X: drivers/scsi/ibmvscsi/ibmvstgt.c
3731
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732IBM ServeRAID RAID DRIVER
3733P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003734M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003736S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003737F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003739ICH LPC AND GPIO DRIVER
3740M: Peter Tyser <ptyser@xes-inc.com>
3741S: Maintained
3742F: drivers/mfd/lpc_ich.c
3743F: drivers/gpio/gpio-ich.c
3744
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003745IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003746M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003748Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003749T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003751F: Documentation/ide/
3752F: drivers/ide/
3753F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754
Ike Panhc6cb8c132011-08-25 22:28:45 +08003755IDEAPAD LAPTOP EXTRAS DRIVER
3756M: Ike Panhc <ike.pan@canonical.com>
3757L: platform-driver-x86@vger.kernel.org
3758W: http://launchpad.net/ideapad-laptop
3759S: Maintained
3760F: drivers/platform/x86/ideapad-laptop.c
3761
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003762IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003763M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003764L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003766F: Documentation/cdrom/ide-cd
3767F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768
Andy Henroid27471fd2008-10-09 11:45:22 -07003769IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003770M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003771L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003772S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003773F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003774
Sergey Lapin02cf2282009-06-08 12:18:50 +00003775IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003776M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003777M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003778L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003779W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003780T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003781S: Maintained
3782F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003783F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003784F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003785
Ameya Palande9545f862012-01-10 09:00:58 -08003786IIO SUBSYSTEM AND DRIVERS
3787M: Jonathan Cameron <jic23@cam.ac.uk>
3788L: linux-iio@vger.kernel.org
3789S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003790F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003791F: drivers/staging/iio/
3792
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003793IKANOS/ADI EAGLE ADSL USB DRIVER
3794M: Matthieu Castet <castet.matthieu@free.fr>
3795M: Stanislaw Gruszka <stf_xl@wp.pl>
3796S: Maintained
3797F: drivers/usb/atm/ueagle-atm.c
3798
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003799INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003800M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003801S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003802F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003803
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003805L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003806S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003807F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808
3809INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003810M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003811M: Sean Hefty <sean.hefty@intel.com>
3812M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003813L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003814W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003815Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003816T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003818F: Documentation/infiniband/
3819F: drivers/infiniband/
3820F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821
Robert Lovec9f04f52005-07-15 12:21:07 -04003822INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003823M: John McCutchan <john@johnmccutchan.com>
3824M: Robert Love <rlove@rlove.org>
3825M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003827F: Documentation/filesystems/inotify.txt
3828F: fs/notify/inotify/
3829F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003830
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003831INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003832M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3833M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003834L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003835Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003836T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003838F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003839F: include/linux/input.h
3840F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003841
Henrik Rydberg3267a872010-06-24 19:10:40 -07003842INPUT MULTITOUCH (MT) PROTOCOL
3843M: Henrik Rydberg <rydberg@euromail.se>
3844L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003845T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003846S: Maintained
3847F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003848F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003849K: \b(ABS|SYN)_MT_
3850
Dave Jiang4ac13e12011-07-29 17:16:55 -07003851INTEL C600 SERIES SAS CONTROLLER DRIVER
3852M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003853M: Lukasz Dorau <lukasz.dorau@intel.com>
3854M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003855M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003856L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003857T: git git://git.code.sf.net/p/intel-sas/isci
3858S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003859F: drivers/scsi/isci/
3860F: firmware/isci/
3861
Len Brown26717172010-03-08 14:07:30 -05003862INTEL IDLE DRIVER
3863M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003864L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003865T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003866S: Supported
3867F: drivers/idle/intel_idle.c
3868
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003869INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003870M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003871L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003873F: Documentation/fb/intelfb.txt
3874F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003875
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003877M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003878L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003880F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303882INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003883M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003884L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303885W: http://www.lesswatts.org/projects/acpi/
3886S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003887F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303888
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003890M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003892F: arch/x86/kernel/microcode_core.c
3893F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003895INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003896M: Dan Williams <djbw@fb.com>
3897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003898F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003899
David Woodhouse6c8909b2008-10-18 16:12:17 +01003900INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003901M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003902L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003903T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003904S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003905F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07003906F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003907
Dan Williamsb3e5f262007-08-07 10:26:35 -07003908INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003909M: Dan Williams <djbw@fb.com>
3910S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003911F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003912
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003913INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003914M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003915S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003916F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3917F: arch/arm/mach-ixp4xx/include/mach/npe.h
3918F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3919F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07003920F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07003921F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003922
Michael Buesch844dd052006-06-26 00:24:59 -07003923INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003924M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003926F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003927
Jeff Kirsher0d164402010-10-05 01:15:17 +00003928INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003929M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3930M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3931M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003932M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3933M: Don Skidmore <donald.c.skidmore@intel.com>
3934M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003935M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003936M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003937M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00003938M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003939L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00003940W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08003941W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003942T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
3943T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00003945F: Documentation/networking/e100.txt
3946F: Documentation/networking/e1000.txt
3947F: Documentation/networking/e1000e.txt
3948F: Documentation/networking/igb.txt
3949F: Documentation/networking/igbvf.txt
3950F: Documentation/networking/ixgb.txt
3951F: Documentation/networking/ixgbe.txt
3952F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003953F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954
Len Brown6dccf9c2011-07-12 22:29:32 -04003955INTEL MRST PMU DRIVER
3956M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003957L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04003958S: Supported
3959F: arch/x86/platform/mrst/pmu.*
3960
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003961INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
3962M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07003963L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003964S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003965F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07003966F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003967F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06003968
Shane Wang4bd96a72010-03-10 14:36:10 +08003969INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07003970M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
3971M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08003972M: Shane Wang <shane.wang@intel.com>
3973L: tboot-devel@lists.sourceforge.net
3974W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07003975T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08003976S: Supported
3977F: Documentation/intel_txt.txt
3978F: include/linux/tboot.h
3979F: arch/x86/kernel/tboot.c
3980
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003981INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003982M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003983M: linux-wimax@intel.com
3984L: wimax@linuxwimax.org
3985S: Supported
3986W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003987F: Documentation/wimax/README.i2400m
3988F: drivers/net/wimax/i2400m/
3989F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003990
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003991INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
3992M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003993L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003994S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003995F: drivers/net/wireless/iwlegacy/
3996
Zhu Yib481de92007-09-25 17:54:57 -07003997INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07003998M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07003999M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004000M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004001L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004002W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07004003T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004004S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004005F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004006
Tomas Winklerde8fe022012-05-09 16:39:02 +03004007INTEL MANAGEMENT ENGINE (mei)
4008M: Tomas Winkler <tomas.winkler@intel.com>
4009L: linux-kernel@vger.kernel.org
4010S: Supported
4011F: include/linux/mei.h
4012F: drivers/misc/mei/*
4013F: Documentation/mei/*
4014
Ralf Baechlecb109a02007-08-30 23:56:30 -07004015IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004016M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017L: linux-mips@linux-mips.org
4018S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004019F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020
Ralf Baechlecb109a02007-08-30 23:56:30 -07004021IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004022M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004023L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004024S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004025F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004026
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004027IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004028M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004030F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031
Francois Romieu1202d6f2007-09-17 17:13:55 -07004032IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004033M: Francois Romieu <romieu@fr.zoreil.com>
4034M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004035L: netdev@vger.kernel.org
4036S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004037F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004038
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004039IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004040M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004041L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004043F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004044
Corey Minyard4409ebe2006-04-20 02:43:12 -07004045IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004046M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004047L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004048W: http://openipmi.sourceforge.net/
4049S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004050F: Documentation/IPMI.txt
4051F: drivers/char/ipmi/
4052F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004053
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004054IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004055M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004056L: linux-scsi@vger.kernel.org
4057W: http://www.adaptec.com/
4058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004059F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004060
4061IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004062M: Wensong Zhang <wensong@linux-vs.org>
4063M: Simon Horman <horms@verge.net.au>
4064M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004065L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004066L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004068F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004069F: include/net/ip_vs.h
4070F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004071F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072
Randy Dunlape7839f22008-10-12 16:11:45 -07004073IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004074M: Jiri Kosina <jkosina@suse.cz>
4075M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004076S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004077F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004078
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004079IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004080M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004081L: netdev@vger.kernel.org
4082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004083F: include/linux/ipx.h
4084F: include/net/ipx.h
4085F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004086
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004088M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004089L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004090L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004092S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004093T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004094F: Documentation/networking/irda.txt
4095F: drivers/net/irda/
4096F: include/net/irda/
4097F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004099IRQ SUBSYSTEM
4100M: Thomas Gleixner <tglx@linutronix.de>
4101S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004102T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004103F: kernel/irq/
4104
Grant Likely7ab3a832012-02-14 14:06:47 -07004105IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4106M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4107M: Grant Likely <grant.likely@secretlab.ca>
4108T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4109S: Maintained
4110F: Documentation/IRQ-domain.txt
4111F: include/linux/irqdomain.h
4112F: kernel/irq/irqdomain.c
4113
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004114ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004115M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004117F: Documentation/isapnp.txt
4118F: drivers/pnp/isapnp/
4119F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004120
Harry Wei71a6d0a2011-05-11 15:13:33 -07004121iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4122M: Peter Jones <pjones@redhat.com>
4123M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4124S: Maintained
4125F: drivers/firmware/iscsi_ibft*
4126
Mike Christie14816b1e2007-11-28 16:22:06 -08004127ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004128M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004129L: open-iscsi@googlegroups.com
4130W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004131T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004133F: drivers/scsi/*iscsi*
4134F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004135
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004137M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004138L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004139L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004141T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004143F: Documentation/isdn/
4144F: drivers/isdn/
4145F: include/linux/isdn.h
4146F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147
4148ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004149M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004150L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151W: http://www.melware.de
4152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004153F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154
Jean Delvared6248702010-03-05 22:17:20 +01004155IT87 HARDWARE MONITORING DRIVER
4156M: Jean Delvare <khali@linux-fr.org>
4157L: lm-sensors@lm-sensors.org
4158S: Maintained
4159F: Documentation/hwmon/it87
4160F: drivers/hwmon/it87.c
4161
Hans Verkuil91821ff2007-12-02 09:35:33 -03004162IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004163M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004164L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004165L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004166T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004167W: http://www.ivtvdriver.org
4168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004169F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004170F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004171F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004172
Guenter Roeck4453d732010-08-09 17:21:08 -07004173JC42.4 TEMPERATURE SENSOR DRIVER
4174M: Guenter Roeck <linux@roeck-us.net>
4175L: lm-sensors@lm-sensors.org
4176S: Maintained
4177F: drivers/hwmon/jc42.c
4178F: Documentation/hwmon/jc42
4179
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004180JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004181M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004182L: jfs-discussion@lists.sourceforge.net
4183W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004184T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004186F: Documentation/filesystems/jfs.txt
4187F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004188
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004189JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004190M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004191L: netdev@vger.kernel.org
4192S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004193F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004194
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004196M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004197L: linux-mtd@lists.infradead.org
4198W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004200F: fs/jffs2/
4201F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202
Josh Triplettde456d32006-07-30 03:04:00 -07004203JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004204M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004205M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004206L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004207S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004208F: fs/jbd/
4209F: include/linux/ext3_jbd.h
4210F: include/linux/jbd.h
4211
4212JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4213M: "Theodore Ts'o" <tytso@mit.edu>
4214L: linux-ext4@vger.kernel.org
4215S: Maintained
4216F: fs/jbd2/
4217F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004218
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004219JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004220M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004221L: linux-serial@vger.kernel.org
4222S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004223F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004224
Clemens Ladischaf399172011-01-10 16:32:54 +01004225K10TEMP HARDWARE MONITORING DRIVER
4226M: Clemens Ladisch <clemens@ladisch.de>
4227L: lm-sensors@lm-sensors.org
4228S: Maintained
4229F: Documentation/hwmon/k10temp
4230F: drivers/hwmon/k10temp.c
4231
Rudolf Marek4660cb32006-10-08 22:01:26 +02004232K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004233M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004234L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004236F: Documentation/hwmon/k8temp
4237F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238
4239KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004240M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004241L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004242S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004243F: Documentation/kbuild/kconfig-language.txt
4244F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245
Vivek Goyalea6c2082006-05-20 14:59:55 -07004246KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004247M: Vivek Goyal <vgoyal@redhat.com>
4248M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004249L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004250W: http://lse.sourceforge.net/kdump/
4251S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004252F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004253
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004255M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004256L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004258F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259
Michal Marek70fb7ba2010-01-29 14:22:43 +01004260KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004261M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004262T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4263T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004264L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004265S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004266F: Documentation/kbuild/
4267F: Makefile
4268F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004269F: scripts/basic/
4270F: scripts/mk*
4271F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272
4273KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004274L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004275W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004276S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004278KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004279M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004280L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004282S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004283F: fs/nfsd/
4284F: include/linux/nfsd/
4285F: fs/lockd/
4286F: fs/nfs_common/
4287F: net/sunrpc/
4288F: include/linux/lockd/
4289F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290
Avi Kivity426d62e2006-12-13 00:34:03 -08004291KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004292M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004293M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004294L: kvm@vger.kernel.org
4295W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004296S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004297F: Documentation/*/kvm.txt
4298F: arch/*/kvm/
4299F: arch/*/include/asm/kvm*
4300F: include/linux/kvm*
4301F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004302
Joerg Roedelad8003d2008-09-10 20:01:07 +02004303KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07004304M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004305L: kvm@vger.kernel.org
4306W: http://kvm.qumranet.com
4307S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004308F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004309F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004310
Hollis Blanchard513014b2008-04-16 23:28:08 -05004311KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004312M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004313L: kvm-ppc@vger.kernel.org
4314W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05004315S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004316F: arch/powerpc/include/asm/kvm*
4317F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004318
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004319KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004320M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004321L: kvm-ia64@vger.kernel.org
4322W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004323S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004324F: Documentation/ia64/kvm.txt
4325F: arch/ia64/include/asm/kvm*
4326F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004327
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004328KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004329M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004330M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004331M: linux390@de.ibm.com
4332L: linux-s390@vger.kernel.org
4333W: http://www.ibm.com/developerworks/linux/linux390/
4334S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004335F: Documentation/s390/kvm.txt
4336F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004337F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004338F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004339
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004340KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004341M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004342W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004343L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004345F: include/linux/kexec.h
4346F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004347
David Howellse9714612010-03-29 23:42:09 +01004348KEYS/KEYRINGS:
4349M: David Howells <dhowells@redhat.com>
4350L: keyrings@linux-nfs.org
4351S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004352F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004353F: include/linux/key.h
4354F: include/linux/key-type.h
4355F: include/keys/
4356F: security/keys/
4357
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004358KEYS-TRUSTED
4359M: David Safford <safford@watson.ibm.com>
4360M: Mimi Zohar <zohar@us.ibm.com>
4361L: linux-security-module@vger.kernel.org
4362L: keyrings@linux-nfs.org
4363S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004364F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004365F: include/keys/trusted-type.h
4366F: security/keys/trusted.c
4367F: security/keys/trusted.h
4368
4369KEYS-ENCRYPTED
4370M: Mimi Zohar <zohar@us.ibm.com>
4371M: David Safford <safford@watson.ibm.com>
4372L: linux-security-module@vger.kernel.org
4373L: keyrings@linux-nfs.org
4374S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004375F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004376F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004377F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004378
Jason Wessel5b778da2010-05-20 21:04:28 -05004379KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004380M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004381W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004382L: kgdb-bugreport@lists.sourceforge.net
4383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004384F: Documentation/DocBook/kgdb.tmpl
4385F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004386F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004387F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004388F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004389F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004390
Pekka Enberg456db8c2008-04-28 22:47:29 +03004391KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004392M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004393M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004394S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004395F: Documentation/kmemcheck.txt
4396F: arch/x86/include/asm/kmemcheck.h
4397F: arch/x86/mm/kmemcheck/
4398F: include/linux/kmemcheck.h
4399F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004400
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004401KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004402M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004403S: Maintained
4404F: Documentation/kmemleak.txt
4405F: include/linux/kmemleak.h
4406F: mm/kmemleak.c
4407F: mm/kmemleak-test.c
4408
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004409KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004410M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4411M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4412M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004413M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004415F: Documentation/kprobes.txt
4416F: include/linux/kprobes.h
4417F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004418
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004419KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004420M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004421W: http://miguelojeda.es/auxdisplay.htm
4422W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004424F: Documentation/auxdisplay/ks0108
4425F: drivers/auxdisplay/ks0108.c
4426F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004427
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004430S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004431F: Documentation/networking/lapb-module.txt
4432F: include/*/lapb.h
4433F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434
4435LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004436M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437L: linux-scsi@vger.kernel.org
4438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004439F: Documentation/scsi/53c700.txt
4440F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441
Richard Purdie263de9b2006-05-15 09:44:16 -07004442LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004443M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004444M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004445L: linux-leds@vger.kernel.org
4446T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004448F: drivers/leds/
4449F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004450
Jean Delvareb0461a42011-06-15 15:08:46 -07004451LEGACY EEPROM DRIVER
4452M: Jean Delvare <khali@linux-fr.org>
4453S: Maintained
4454F: Documentation/misc-devices/eeprom
4455F: drivers/misc/eeprom/eeprom.c
4456
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004458M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459L: legousb-devel@lists.sourceforge.net
4460W: http://legousb.sourceforge.net/
4461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004462F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463
Michael Krufky055616a2012-10-02 00:56:06 -03004464LG2160 MEDIA DRIVER
4465M: Michael Krufky <mkrufky@linuxtv.org>
4466L: linux-media@vger.kernel.org
4467W: http://linuxtv.org/
4468W: http://github.com/mkrufky
4469Q: http://patchwork.linuxtv.org/project/linux-media/list/
4470T: git git://linuxtv.org/mkrufky/tuners.git
4471S: Maintained
4472F: drivers/media/dvb-frontends/lg2160.*
4473
Michael Krufky6f0e7722012-10-02 00:56:00 -03004474LGDT3305 MEDIA DRIVER
4475M: Michael Krufky <mkrufky@linuxtv.org>
4476L: linux-media@vger.kernel.org
4477W: http://linuxtv.org/
4478W: http://github.com/mkrufky
4479Q: http://patchwork.linuxtv.org/project/linux-media/list/
4480T: git git://linuxtv.org/mkrufky/tuners.git
4481S: Maintained
4482F: drivers/media/dvb-frontends/lgdt3305.*
4483
Rusty Russell568a17f2007-10-25 14:12:24 +10004484LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004485M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004486L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004487W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004488S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004489F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004490F: arch/x86/lguest/
4491F: drivers/lguest/
4492F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004493F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004494
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004496M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497W: http://www.ibm.com/linux/ltc/projects/ppc
4498S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004499F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004501LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004502M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4503M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004505L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004506Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004507T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004509F: Documentation/powerpc/
4510F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511
4512LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004513M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004515L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004517F: arch/powerpc/platforms/powermac/
4518F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519
Grant Likely77a76362008-07-12 12:11:43 -06004520LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004521M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004522L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004523T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004525F: arch/powerpc/platforms/512x/
4526F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527
4528LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004529M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004530M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004532L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004533T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004535F: arch/powerpc/platforms/40x/
4536F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537
Grant Likely260c02a2007-10-02 12:15:34 +10004538LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004539M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004540W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004541L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004542T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004544F: arch/powerpc/*/*virtex*
4545F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546
Tom Rinie93adf12005-07-26 12:49:53 -07004547LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004548M: Vitaly Bordug <vitb@kernel.crashing.org>
4549M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004550W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004551L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004552S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004553F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004554
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004556M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004557W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004558L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004559S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004560F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004561F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562
Olof Johanssonab06ff32006-09-06 14:44:54 -05004563LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004564M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004565L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004566S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004567F: arch/powerpc/platforms/pasemi/
4568F: drivers/*/*pasemi*
4569F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004570
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004572M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004573L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574S: Supported
4575
Harry Weia23ce6d2011-02-11 16:52:20 +01004576LIS3LV02D ACCELEROMETER DRIVER
4577M: Eric Piel <eric.piel@tremplin-utc.net>
4578S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004579F: Documentation/misc-devices/lis3lv02d
4580F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004581F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004582
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004583LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004584M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004586F: include/linux/llc.h
4587F: include/net/llc*
4588F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004589
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004590LM73 HARDWARE MONITOR DRIVER
4591M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4592L: lm-sensors@lm-sensors.org
4593S: Maintained
4594F: drivers/hwmon/lm73.c
4595
Jean Delvare156e2d12011-07-25 21:46:11 +02004596LM78 HARDWARE MONITOR DRIVER
4597M: Jean Delvare <khali@linux-fr.org>
4598L: lm-sensors@lm-sensors.org
4599S: Maintained
4600F: Documentation/hwmon/lm78
4601F: drivers/hwmon/lm78.c
4602
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004604M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004605L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004607F: Documentation/hwmon/lm83
4608F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609
4610LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004611M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004612L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004614F: Documentation/hwmon/lm90
4615F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004617LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004618M: Peter Zijlstra <peterz@infradead.org>
4619M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004620T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004622F: Documentation/lockdep*.txt
4623F: Documentation/lockstat.txt
4624F: include/linux/lockdep.h
4625F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004626
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004627LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004628M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004629L: linux-ntfs-dev@lists.sourceforge.net
4630W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004632F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004633F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634
Joern Engelef6ada32009-11-20 22:17:12 +01004635LogFS
4636M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304637M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004638L: logfs@logfs.org
4639W: logfs.org
4640S: Maintained
4641F: fs/logfs/
4642
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004643LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004644M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004645M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004646L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004647L: linux-scsi@vger.kernel.org
4648W: http://www.lsilogic.com/support
4649S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004650F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004651
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004653M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654L: linux-scsi@vger.kernel.org
4655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004656F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657
Guenter Roecke5f5c992010-06-25 11:59:54 -07004658LTC4261 HARDWARE MONITOR DRIVER
4659M: Guenter Roeck <linux@roeck-us.net>
4660L: lm-sensors@lm-sensors.org
4661S: Maintained
4662F: Documentation/hwmon/ltc4261
4663F: drivers/hwmon/ltc4261.c
4664
Mike Frysinger81365c32008-10-29 14:01:12 -07004665LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004666M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004667M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004668M: Cyril Hrubis <chrubis@suse.cz>
4669M: Caspar Zhang <caspar@casparzhang.com>
4670M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004671L: ltp-list@lists.sourceforge.net (subscribers-only)
4672W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004673T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004674T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004675S: Maintained
4676
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004677M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004678M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004679L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004680L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4681W: http://www.linux-m32r.org/
4682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004683F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004684
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004686M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687L: linux-m68k@lists.linux-m68k.org
4688W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004689T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004691F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004692F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693
4694M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004695M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004697L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004699F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700
4701M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004702M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703W: http://www.tazenda.demon.co.uk/phil/linux-hp
4704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004705F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706
Jiri Benc64a327a2007-05-05 11:47:08 -07004707MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004708M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004709L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004710W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004711T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4712T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004714F: Documentation/networking/mac80211-injection.txt
4715F: include/net/mac80211.h
4716F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004717
Stefano Brivio1036d862007-12-23 04:46:27 +01004718MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004719M: Stefano Brivio <stefano.brivio@polimi.it>
4720M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004721L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004722W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004723T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4724T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004726F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004727
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004728MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004729M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004730L: netdev@vger.kernel.org
4731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004732F: drivers/net/macvlan.c
4733F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004734
Michael Kerriskfaf16682005-07-31 22:34:47 -07004735MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004736M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004737W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004738L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004739S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004740
stephen hemminger44c14c12012-04-02 12:59:47 +00004741MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4742M: Mirko Lindner <mlindner@marvell.com>
4743M: Stephen Hemminger <shemminger@vyatta.com>
4744L: netdev@vger.kernel.org
4745S: Maintained
4746F: drivers/net/ethernet/marvell/sk*
4747
Stefano Brivio74cda162007-11-19 20:27:46 +01004748MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004749M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004750L: libertas-dev@lists.infradead.org
4751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004752F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004753
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004754MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004755M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004756L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004757S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004758F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004759F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760
Bing Zhaofcad5842011-07-13 13:11:58 -07004761MARVELL MWIFIEX WIRELESS DRIVER
4762M: Bing Zhao <bzhao@marvell.com>
4763L: linux-wireless@vger.kernel.org
4764S: Maintained
4765F: drivers/net/wireless/mwifiex/
4766
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004767MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004768M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004769L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004770S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004771F: drivers/net/wireless/mwl8k.c
4772
Pierre Ossman2a695672009-03-16 19:52:26 +01004773MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004774M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004775S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004776F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004777
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004779L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004780S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004781F: drivers/video/matrox/matroxfb_*
4782F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783
Guenter Roeckca462082012-06-01 23:28:23 -07004784MAX16065 HARDWARE MONITOR DRIVER
4785M: Guenter Roeck <linux@roeck-us.net>
4786L: lm-sensors@lm-sensors.org
4787S: Maintained
4788F: Documentation/hwmon/max16065
4789F: drivers/hwmon/max16065.c
4790
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004791MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004792M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004793L: lm-sensors@lm-sensors.org
4794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004795F: Documentation/hwmon/max6650
4796F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004797
Joe Perches127c49a2009-04-08 08:34:04 -07004798MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07004799M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07004800P: LinuxTV.org Project
4801L: linux-media@vger.kernel.org
4802W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004803Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches08deed12012-03-23 15:01:57 -07004804T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Joe Perches127c49a2009-04-08 08:34:04 -07004805S: Maintained
4806F: Documentation/dvb/
4807F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004808F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004809F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004810F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004811F: include/media/
4812F: include/linux/dvb/
4813F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004814
4815MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004816M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004817L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004818W: http://megaraid.lsilogic.com
4819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004820F: Documentation/scsi/megaraid.txt
4821F: drivers/scsi/megaraid.*
4822F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004823
Amir Vadai2c46c9d2012-12-02 03:49:21 +00004824MELLANOX ETHERNET DRIVER (mlx4_en)
4825M: Amir Vadai <amirv@mellanox.com>
4826L: netdev@vger.kernel.org
4827S: Supported
4828W: http://www.mellanox.com
4829Q: http://patchwork.ozlabs.org/project/netdev/list/
4830F: drivers/net/ethernet/mellanox/mlx4/en_*
4831
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004832MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834W: http://www.linux-mm.org
4835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004836F: include/linux/mm.h
4837F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004838
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004839MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08004840M: Johannes Weiner <hannes@cmpxchg.org>
4841M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07004842M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004843M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08004844L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004845L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004847F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004848F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004849
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004851M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004853W: http://www.linux-mtd.infradead.org/
4854Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004855T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004857F: drivers/mtd/
4858F: include/linux/mtd/
4859F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860
Michal Simekc6375b02009-03-27 14:25:52 +01004861MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004862M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02004863L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01004864W: http://www.monstr.eu/fdt/
4865T: git git://git.monstr.eu/linux-2.6-microblaze.git
4866S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004867F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868
4869MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02004870M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004872F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873
4874MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004875M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01004877W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00004878T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01004879Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00004880S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004881F: Documentation/mips/
4882F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004885M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004887F: include/linux/module.h
4888F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889
4890MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08004892S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004893F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004894F: drivers/media/pci/meye/
Joe Perches679655d2009-04-07 20:44:32 -07004895F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896
Pavel Pisac58ff042007-05-16 01:10:41 +02004897MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004898M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004899L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02004900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004901F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02004902
Jiri Slabyb9705b62008-04-30 00:53:48 -07004903MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07004904M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08004905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004906F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07004907F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08004908
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004909MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07004910M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004911L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004913F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004914
Anisse Astier0f1006b2009-12-17 11:28:49 +01004915MSI WMI SUPPORT
4916M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05004917L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01004918S: Supported
4919F: drivers/platform/x86/msi-wmi.c
4920
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004921MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07004922M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07004923T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004924S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004925F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004926
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02004927MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04004928M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07004929L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04004930T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
4931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004932F: drivers/mmc/
4933F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01004934
David Brownell15a05802007-08-08 09:12:54 -07004935MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06004936S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004937F: drivers/mmc/host/mmc_spi.c
4938F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004939
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004941M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004943F: Documentation/sound/oss/MultiSound
4944F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945
Jiri Slabyd7354102006-12-08 02:38:35 -08004946MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02004947S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07004948F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07004949F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004950
Felipe Balbi550a7372008-07-24 12:27:36 +03004951MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03004952M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004953L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004954T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004956F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004957
Michael Krufkyea0af5f2012-10-02 00:55:41 -03004958MXL5007T MEDIA DRIVER
4959M: Michael Krufky <mkrufky@linuxtv.org>
4960L: linux-media@vger.kernel.org
4961W: http://linuxtv.org/
4962W: http://github.com/mkrufky
4963Q: http://patchwork.linuxtv.org/project/linux-media/list/
4964T: git git://linuxtv.org/mkrufky/tuners.git
4965S: Maintained
4966F: drivers/media/tuners/mxl5007t.*
4967
Brice Goglin2d3cf582008-05-17 12:45:36 +02004968MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07004969M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02004970L: netdev@vger.kernel.org
4971W: http://www.myri.com/scs/download-Myri10GE.html
4972S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07004973F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004974
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04004976S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07004977F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978
Daniel Mack23dc05a2011-05-18 11:28:38 +02004979NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
4980M: Daniel Mack <zonque@gmail.com>
4981S: Maintained
4982L: alsa-devel@alsa-project.org
4983W: http://www.native-instruments.com
4984F: sound/usb/caiaq/
4985
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07004987M: Petr Vandrovec <petr@vandrovec.name>
4988S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004989F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990
4991NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07004992M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993L: linux-scsi@vger.kernel.org
4994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004995F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004997NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07004998M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004999L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005000W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005001S: Supported
5002F: drivers/infiniband/hw/nes/
5003
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005004NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05005005M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07005006L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005008F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005009
Jon Masonb2f5a052010-07-15 08:47:27 +00005010NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005011M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005012L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005013S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005014F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005015F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005016F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005017
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019P: Harald Welte
5020P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005021M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005022M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005023L: netfilter-devel@vger.kernel.org
5024L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005025L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026W: http://www.netfilter.org/
5027W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005028T: git git://1984.lsi.us.es/nf
5029T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005031F: include/linux/netfilter*
5032F: include/linux/netfilter/
5033F: include/net/netfilter/
5034F: net/*/netfilter.c
5035F: net/*/netfilter/
5036F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037
Paul Moore4cc67732006-09-25 15:57:13 -07005038NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005039M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005040W: http://netlabel.sf.net
5041L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005042S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005043F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005044F: include/net/netlabel.h
5045F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005046
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005048M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005050W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005052F: include/linux/netrom.h
5053F: include/net/netrom.h
5054F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005056NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005057M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005059F: Documentation/blockdev/nbd.txt
5060F: drivers/block/nbd.c
5061F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062
Neil Horman6e436502009-10-05 03:56:55 +00005063NETWORK DROP MONITOR
5064M: Neil Horman <nhorman@tuxdriver.com>
5065L: netdev@vger.kernel.org
5066S: Maintained
5067W: https://fedorahosted.org/dropwatch/
5068F: net/core/drop_monitor.c
5069
Linus Torvalds1da177e2005-04-16 15:20:36 -07005070NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005071M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005072L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005073W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005074Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005075T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5076T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005078F: net/
5079F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005080F: include/linux/in.h
5081F: include/linux/net.h
5082F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083
5084NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005085M: "David S. Miller" <davem@davemloft.net>
5086M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005087M: James Morris <jmorris@namei.org>
5088M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5089M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005090L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005091T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005093F: net/ipv4/
5094F: net/ipv6/
5095F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005096F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097
David S. Miller73b76562012-10-16 14:08:40 -04005098NETWORKING [IPSEC]
5099M: Steffen Klassert <steffen.klassert@secunet.com>
5100M: Herbert Xu <herbert@gondor.apana.org.au>
5101M: "David S. Miller" <davem@davemloft.net>
5102L: netdev@vger.kernel.org
5103T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5104S: Maintained
5105F: net/xfrm/
5106F: net/key/
5107F: net/ipv4/xfrm*
5108F: net/ipv6/xfrm*
5109F: include/uapi/linux/xfrm.h
5110F: include/net/xfrm.h
5111
James Morris10e2ff12007-08-25 14:41:28 -07005112NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005113M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005114L: netdev@vger.kernel.org
5115S: Maintained
5116
John W. Linville29f8f632006-01-18 14:52:48 -08005117NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005118M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005119L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005120Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005121T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005122S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005123F: net/mac80211/
5124F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005125F: net/wireless/
5126F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005127F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005128F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005129F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005130
Joe Perches788873a2009-04-16 09:38:45 +00005131NETWORKING DRIVERS
5132L: netdev@vger.kernel.org
5133W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005134Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005135T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5136T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005137S: Odd Fixes
5138F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005139F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005140F: include/linux/netdevice.h
5141F: include/linux/arcdevice.h
5142F: include/linux/etherdevice.h
5143F: include/linux/fcdevice.h
5144F: include/linux/fddidevice.h
5145F: include/linux/hippidevice.h
5146F: include/linux/inetdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005147
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005148NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005149M: Sony Chacko <sony.chacko@qlogic.com>
5150M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005151L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005152W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005153S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005154F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005155
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005156NFC SUBSYSTEM
5157M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5158M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5159M: Samuel Ortiz <sameo@linux.intel.com>
5160L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005161L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005162S: Maintained
5163F: net/nfc/
5164F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005165F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005166F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005167F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005169NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005170M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005171L: linux-nfs@vger.kernel.org
5172W: http://client.linux-nfs.org
5173T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005175F: fs/lockd/
5176F: fs/nfs/
5177F: fs/nfs_common/
5178F: net/sunrpc/
5179F: include/linux/lockd/
5180F: include/linux/nfs*
5181F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182
5183NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005184M: Jan-Pascal van Best <janpascal@vanbest.org>
5185M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005186L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005188F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005190NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005191M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005192L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005193W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005194T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005195S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005196F: Documentation/filesystems/nilfs2.txt
5197F: fs/nilfs2/
5198F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005199
Linus Torvalds1da177e2005-04-16 15:20:36 -07005200NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005201M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005204F: Documentation/scsi/NinjaSCSI.txt
5205F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206
5207NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005208M: GOTO Masanori <gotom@debian.or.jp>
5209M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005212F: Documentation/scsi/NinjaSCSI.txt
5213F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005216M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005218W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005219T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005220S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005221F: Documentation/filesystems/ntfs.txt
5222F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005224NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005225M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005226L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005227S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005228F: drivers/video/riva/
5229F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230
Tony Lindgrenf5525782009-05-28 13:23:53 -07005231OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005232M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005233L: linux-omap@vger.kernel.org
5234W: http://www.muru.com/linux/omap/
5235W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005236Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005237T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005238S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005239F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005240F: drivers/i2c/busses/i2c-omap.c
5241F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005242
5243OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005244M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005245L: linux-omap@vger.kernel.org
5246S: Maintained
5247F: arch/arm/*omap*/*clock*
5248
5249OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005250M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005251L: linux-omap@vger.kernel.org
5252S: Maintained
5253F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005254F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005255
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005256OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5257M: Rajendra Nayak <rnayak@ti.com>
5258M: Paul Walmsley <paul@pwsan.com>
5259L: linux-omap@vger.kernel.org
5260S: Maintained
5261F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5262F: arch/arm/mach-omap2/powerdomain44xx.c
5263F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5264F: arch/arm/mach-omap2/clockdomain44xx.c
5265
Tony Lindgrenf5525782009-05-28 13:23:53 -07005266OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005267M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005268M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005269L: alsa-devel@alsa-project.org (subscribers-only)
5270L: linux-omap@vger.kernel.org
5271S: Maintained
5272F: sound/soc/omap/
5273
5274OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005275M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005276L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005277L: linux-omap@vger.kernel.org
5278S: Maintained
5279F: drivers/video/omap/
5280
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005281OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005282M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005283L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005284L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005285S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005286F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005287F: Documentation/arm/OMAP/DSS
5288
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005289OMAP HARDWARE SPINLOCK SUPPORT
5290M: Ohad Ben-Cohen <ohad@wizery.com>
5291L: linux-omap@vger.kernel.org
5292S: Maintained
5293F: drivers/hwspinlock/omap_hwspinlock.c
5294F: arch/arm/mach-omap2/hwspinlock.c
5295
Tony Lindgrenf5525782009-05-28 13:23:53 -07005296OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005297M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005298L: linux-omap@vger.kernel.org
5299S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005300F: drivers/mmc/host/omap.c
5301
5302OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305303M: Venkatraman S <svenkatr@ti.com>
5304L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005305L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305306S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005307F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005308
5309OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005310M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005311S: Maintained
5312F: drivers/char/hw_random/omap-rng.c
5313
Paul Walmsleyf400c822010-12-06 19:08:54 -07005314OMAP HWMOD SUPPORT
5315M: Benoît Cousson <b-cousson@ti.com>
5316M: Paul Walmsley <paul@pwsan.com>
5317L: linux-omap@vger.kernel.org
5318S: Maintained
5319F: arch/arm/mach-omap2/omap_hwmod.c
5320F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5321
5322OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5323M: Benoît Cousson <b-cousson@ti.com>
5324L: linux-omap@vger.kernel.org
5325S: Maintained
5326F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5327
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005328OMAP IMAGE SIGNAL PROCESSOR (ISP)
5329M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5330L: linux-media@vger.kernel.org
5331S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005332F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005333
Tony Lindgrenf5525782009-05-28 13:23:53 -07005334OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005335M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005336L: linux-usb@vger.kernel.org
5337L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005338T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005339S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005340F: drivers/usb/*/*omap*
5341F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005342
Kevin Hilman6d994712012-07-16 10:05:07 -07005343OMAP GPIO DRIVER
5344M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5345M: Kevin Hilman <khilman@ti.com>
5346L: linux-omap@vger.kernel.org
5347S: Maintained
5348F: drivers/gpio/gpio-omap.c
5349
Bob Copeland0ad122d2008-07-25 19:45:18 -07005350OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005351M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005352L: linux-karma-devel@lists.sourceforge.net
5353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005354F: Documentation/filesystems/omfs.txt
5355F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005356
Harald Weltec1986ee2005-11-13 16:06:29 -08005357OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005358M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005360F: drivers/char/pcmcia/cm4000_cs.c
5361F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005362
Harald Welte77c44ab2005-11-13 16:06:26 -08005363OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005364M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005366F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005367
Jonathan Corbet77d51402007-03-22 19:44:17 -03005368OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005369M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005370L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005371T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005372S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005373F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005374
Thomas Gleixner431bca72007-05-02 09:31:35 +02005375ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005376M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005377L: linux-mtd@lists.infradead.org
5378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005379F: drivers/mtd/onenand/
5380F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005381
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005383M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384L: osst-users@lists.sourceforge.net
5385L: linux-scsi@vger.kernel.org
5386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005387F: drivers/scsi/osst*
5388F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005390OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005391M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005392L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005394F: Documentation/i2c/busses/i2c-ocores
5395F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005396
Grant Likely860c44c2009-10-26 16:49:49 -07005397OPEN FIRMWARE AND FLATTENED DEVICE TREE
5398M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005399M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005400L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005401W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005402T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005403S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005404F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005405F: drivers/of
5406F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005407F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005408K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005409K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005410
Jonas Bonn19f9d392011-06-04 22:00:38 +03005411OPENRISC ARCHITECTURE
5412M: Jonas Bonn <jonas@southpole.se>
5413W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005414L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005415S: Maintained
5416T: git git://openrisc.net/~jonas/linux
5417F: arch/openrisc
5418
Jesse Grossccb13522011-10-25 19:26:31 -07005419OPENVSWITCH
5420M: Jesse Gross <jesse@nicira.com>
5421L: dev@openvswitch.org
5422W: http://openvswitch.org
5423T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5424S: Maintained
5425F: net/openvswitch/
5426
Clemens Ladischaf399172011-01-10 16:32:54 +01005427OPL4 DRIVER
5428M: Clemens Ladisch <clemens@ladisch.de>
5429L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5430T: git git://git.alsa-project.org/alsa-kernel.git
5431S: Maintained
5432F: sound/drivers/opl4/
5433
Linus Torvalds1da177e2005-04-16 15:20:36 -07005434OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005435M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436L: oprofile-list@lists.sf.net
5437S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005438F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005439F: arch/*/oprofile/
5440F: drivers/oprofile/
5441F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005442
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005443ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005444M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005445M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005446L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5447W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005448T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005449S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005450F: Documentation/filesystems/ocfs2.txt
5451F: Documentation/filesystems/dlmfs.txt
5452F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005453
Linus Torvalds1da177e2005-04-16 15:20:36 -07005454ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005455L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005456W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005457W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005458S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005459F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005461OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005462M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005463M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005464L: osd-dev@open-osd.org
5465W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005466T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005467S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005468F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005469F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005470F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005471
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005472P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005473M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005474L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005475W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005477F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005478
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005479PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005480M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005481L: netdev@vger.kernel.org
5482S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005483F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005484
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005485PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005486M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005487L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005489F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005490
Steffen Klassert48fc2672010-08-13 10:10:46 -04005491PADATA PARALLEL EXECUTION MECHANISM
5492M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005493L: linux-crypto@vger.kernel.org
5494S: Maintained
5495F: kernel/padata.c
5496F: include/linux/padata.h
5497F: Documentation/padata.txt
5498
Harald Welte709ee532008-09-23 17:46:57 +02005499PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005500M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005501L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005503F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005504
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005505PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005506M: David Howells <dhowells@redhat.com>
5507M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005508L: linux-am33-list@redhat.com (moderated for non-subscribers)
5509W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005511F: Documentation/mn10300/
5512F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005513
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005515L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005516S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005517F: drivers/parport/
5518F: include/linux/parport*.h
5519F: drivers/char/ppdev.c
5520F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005522PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005523M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005524M: Chris Wright <chrisw@sous-sol.org>
5525M: Alok Kataria <akataria@vmware.com>
5526M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005527L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005528S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005529F: Documentation/ia64/paravirt_ops.txt
5530F: arch/*/kernel/paravirt*
5531F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005532
Linus Torvalds1da177e2005-04-16 15:20:36 -07005533PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005534M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005535L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536W: http://www.torque.net/linux-pp.html
5537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005538F: Documentation/blockdev/paride.txt
5539F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540
5541PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005542M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005543M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005544L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005546Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005547T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005549F: arch/parisc/
5550F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551
Jim Cromie1662d322006-10-06 00:43:59 -07005552PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005553M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005554L: lm-sensors@lm-sensors.org
5555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005556F: Documentation/hwmon/pc87360
5557F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005558
5559PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005560M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005562F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005563
Jean Delvare1ad107f2010-08-14 21:09:00 +02005564PC87427 HARDWARE MONITORING DRIVER
5565M: Jean Delvare <khali@linux-fr.org>
5566L: lm-sensors@lm-sensors.org
5567S: Maintained
5568F: Documentation/hwmon/pc87427
5569F: drivers/hwmon/pc87427.c
5570
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005571PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005572M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005573S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005574F: drivers/leds/leds-pca9532.c
5575F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005576
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005577PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005578M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005579L: linux-i2c@vger.kernel.org
5580S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005581F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005582
Wolfram Sanga1867d32009-09-18 22:45:51 +02005583PCA9564/PCA9665 I2C BUS DRIVER
5584M: Wolfram Sang <w.sang@pengutronix.de>
5585L: linux-i2c@vger.kernel.org
5586S: Maintained
5587F: drivers/i2c/algos/i2c-algo-pca.c
5588F: drivers/i2c/busses/i2c-pca-*
5589F: include/linux/i2c-algo-pca.h
5590F: include/linux/i2c-pca-platform.h
5591
Khalid Aziz3971dae2012-04-12 12:49:13 -07005592PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005593M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005594S: Maintained
5595F: drivers/firmware/pcdp.*
5596
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005597PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005598M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005599L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005600S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005601F: Documentation/PCI/pci-error-recovery.txt
5602F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005603
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005605M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005606L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005607Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005608T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005610F: Documentation/PCI/
5611F: drivers/pci/
5612F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005615P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005616L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005617W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005618T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005620F: Documentation/pcmcia/
5621F: drivers/pcmcia/
5622F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623
5624PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005625M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005626L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005628F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005629
Steffen Klassert48fc2672010-08-13 10:10:46 -04005630PCRYPT PARALLEL CRYPTO ENGINE
5631M: Steffen Klassert <steffen.klassert@secunet.com>
5632L: linux-crypto@vger.kernel.org
5633S: Maintained
5634F: crypto/pcrypt.c
5635F: include/crypto/pcrypt.h
5636
Tejun Heoe72df0b2010-12-10 17:02:49 +01005637PER-CPU MEMORY ALLOCATOR
5638M: Tejun Heo <tj@kernel.org>
5639M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005640T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5641S: Maintained
5642F: include/linux/percpu*.h
5643F: mm/percpu*.c
5644F: arch/*/include/asm/percpu.h
5645
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005646PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005647M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005648S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005649F: include/linux/delayacct.h
5650F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005651
Ingo Molnar57c0c152009-09-21 12:20:38 +02005652PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005653M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5654M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005655M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005656M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005657T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005658S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005659F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005660F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005661F: arch/*/kernel/perf_event*.c
5662F: arch/*/kernel/*/perf_event*.c
5663F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005664F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005665F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005666F: arch/*/kernel/perf_callchain.c
5667F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005668
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005669PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005670M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005671L: linux-abi-devel@lists.sourceforge.net
5672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005673F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005674
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005675PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005676M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005677S: Supported
5678F: Documentation/networking/phonet.txt
5679F: include/linux/phonet.h
5680F: include/net/phonet/
5681F: net/phonet/
5682
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005684M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685L: linux-mtd@lists.infradead.org
5686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005687F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688
Bruno Prémontefdbb102012-07-30 21:39:03 +02005689PICOLCD HID DRIVER
5690M: Bruno Prémont <bonbons@linux-vserver.org>
5691L: linux-input@vger.kernel.org
5692S: Maintained
5693F: drivers/hid/hid-picolcd*
5694
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005695PICOXCELL SUPPORT
5696M: Jamie Iles <jamie@jamieiles.com>
5697L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5698T: git git://github.com/jamieiles/linux-2.6-ji.git
5699S: Supported
5700F: arch/arm/mach-picoxcell
5701F: drivers/*/picoxcell*
5702F: drivers/*/*/picoxcell*
5703
Linus Walleij2744e8a2011-05-02 20:50:54 +02005704PIN CONTROL SUBSYSTEM
5705M: Linus Walleij <linus.walleij@linaro.org>
5706S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005707F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005708F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005709
Viresh Kumardeda8282012-03-28 22:27:07 +05305710PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005711M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305712L: spear-devel@list.st.com
5713L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5714W: http://www.st.com/spear
5715S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005716F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305717
Peter Osterlund249a6772005-09-27 21:45:30 -07005718PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005719M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005721F: drivers/block/pktcdvd.c
5722F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005723
GuanXuetaob31d8272011-01-16 00:35:49 +08005724PKUNITY SOC DRIVERS
5725M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5726W: http://mprc.pku.edu.cn/~guanxuetao/linux
5727S: Maintained
5728T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5729F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005730F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005731F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005732F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005733
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005734PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005735M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005736L: lm-sensors@lm-sensors.org
5737W: http://www.lm-sensors.org/
5738W: http://www.roeck-us.net/linux/drivers/
5739T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5740S: Maintained
5741F: Documentation/hwmon/pmbus
5742F: drivers/hwmon/pmbus/
5743F: include/linux/i2c/pmbus.h
5744
Anil Ravindranath89a36812009-08-25 17:35:18 -07005745PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005746M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005747L: linux-scsi@vger.kernel.org
5748W: http://www.pmc-sierra.com/
5749S: Supported
5750F: drivers/scsi/pmcraid.*
5751
jack wangdbf9bfe2009-10-14 16:19:21 +08005752PMC SIERRA PM8001 DRIVER
5753M: jack_wang@usish.com
5754M: lindar_liu@usish.com
5755L: linux-scsi@vger.kernel.org
5756S: Supported
5757F: drivers/scsi/pm8001/
5758
Linus Torvalds1da177e2005-04-16 15:20:36 -07005759POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005760M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005761T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005762S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005763F: fs/timerfd.c
5764F: include/linux/timer*
5765F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005766
Anton Vorontsov3be86142007-07-15 04:43:36 +04005767POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005768M: Anton Vorontsov <cbou@mail.ru>
5769M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005770T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005772F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005773F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005774
Linus Torvalds1da177e2005-04-16 15:20:36 -07005775PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005776M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005777M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005779F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005780
Vitaly Wool999445d2007-01-04 13:07:03 +01005781PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005782M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005783L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005785F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005786
Linus Torvalds1da177e2005-04-16 15:20:36 -07005787PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005788M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005789L: linux-ppp@vger.kernel.org
5790S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005791F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005792
5793PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005794M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005796F: net/atm/pppoatm.c
5797F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798
5799PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005800M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005801S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005802F: drivers/net/ppp/pppoe.c
5803F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005804
James Chapmana6d23702007-06-27 15:53:17 -07005805PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005806M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005807S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005808F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005809F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005810
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005811PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005812M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005813W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5814L: linuxpps@ml.enneenne.com (subscribers-only)
5815S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005816F: Documentation/pps/
5817F: drivers/pps/
5818F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005819
Harry Wei71a6d0a2011-05-11 15:13:33 -07005820PPTP DRIVER
5821M: Dmitry Kozlov <xeb@mail.ru>
5822L: netdev@vger.kernel.org
5823S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005824F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005825W: http://sourceforge.net/projects/accel-pptp
5826
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005828M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005829L: kpreempt-tech@lists.sourceforge.net
5830W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5831S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005832F: Documentation/preempt-locking.txt
5833F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005834
5835PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005836M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005837L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005838W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005839S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005840F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005842PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005843M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005844L: linux-ide@vger.kernel.org
5845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005846F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005847
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005848PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005849M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005850L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005851L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005852S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07005853F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005854
Geoff Levandf58a9d12006-11-23 00:46:51 +01005855PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005856M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005857L: linuxppc-dev@lists.ozlabs.org
5858L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005860F: arch/powerpc/boot/ps3*
5861F: arch/powerpc/include/asm/lv1call.h
5862F: arch/powerpc/include/asm/ps3*.h
5863F: arch/powerpc/platforms/ps3/
5864F: drivers/*/ps3*
5865F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00005866F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07005867F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00005868F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01005869
Jim Pariscffb4add2009-01-06 11:32:10 +00005870PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005871M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005872L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00005873S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07005874F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00005875
Anton Vorontsov8defe592012-08-03 18:07:20 -07005876PSTORE FILESYSTEM
5877M: Anton Vorontsov <cbouatmailru@gmail.com>
5878M: Colin Cross <ccross@android.com>
5879M: Kees Cook <keescook@chromium.org>
5880M: Tony Luck <tony.luck@intel.com>
5881S: Maintained
5882T: git git://git.infradead.org/users/cbou/linux-pstore.git
5883F: fs/pstore/
5884F: include/linux/pstore*
5885F: drivers/firmware/efivars.c
5886F: drivers/acpi/apei/erst.c
5887
Richard Cochran7fbc4152012-03-10 01:55:53 +00005888PTP HARDWARE CLOCK SUPPORT
5889M: Richard Cochran <richardcochran@gmail.com>
5890S: Maintained
5891W: http://linuxptp.sourceforge.net/
5892F: Documentation/ABI/testing/sysfs-ptp
5893F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07005894F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00005895F: drivers/net/phy/dp83640*
5896F: drivers/ptp/*
5897F: include/linux/ptp_cl*
5898
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005899PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005900M: Roland McGrath <roland@redhat.com>
5901M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005902S: Maintained
5903F: include/asm-generic/syscall.h
5904F: include/linux/ptrace.h
5905F: include/linux/regset.h
5906F: include/linux/tracehook.h
5907F: kernel/ptrace.c
5908
Michael Krufky83202042006-07-03 00:24:18 -07005909PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005910M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03005911L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005912L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07005913W: http://www.isely.net/pvrusb2/
Joe Perches08deed12012-03-23 15:01:57 -07005914T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Michael Krufky83202042006-07-03 00:24:18 -07005915S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005916F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03005917F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07005918
Thierry Reding200efed2012-03-27 13:16:18 +02005919PWM SUBSYSTEM
5920M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005921L: linux-kernel@vger.kernel.org
5922S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02005923W: http://gitorious.org/linux-pwm
5924T: git git://gitorious.org/linux-pwm/linux-pwm.git
5925F: Documentation/pwm.txt
5926F: Documentation/devicetree/bindings/pwm/
5927F: include/linux/pwm.h
5928F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005929F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07005930F: drivers/video/backlight/pwm_bl.c
5931F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005932
Eric Miao30ec2612008-06-12 15:21:41 -07005933PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005934M: Eric Miao <eric.y.miao@gmail.com>
5935M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005936M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005937L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005938T: git git://github.com/hzhuang1/linux.git
5939T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005940S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005941F: arch/arm/mach-pxa/
5942F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08005943F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07005944F: drivers/usb/gadget/pxa2*
5945F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01005946F: sound/arm/pxa*
5947F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07005948
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005949MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005950M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005951M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005952L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005953T: git git://github.com/hzhuang1/linux.git
5954T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005955S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005956F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005957
Pierre Ossman272f1332007-05-14 21:25:26 +02005958PXA MMCI DRIVER
5959S: Orphan
5960
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005961PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005962M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005963L: rtc-linux@googlegroups.com
5964S: Maintained
5965
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005966QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005967M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005968L: linux-rdma@vger.kernel.org
5969S: Supported
5970F: drivers/infiniband/hw/qib/
5971
Jes Sorensen5e9772b2010-06-30 15:37:38 +02005972QLOGIC QLA1280 SCSI DRIVER
5973M: Michael Reed <mdr@sgi.com>
5974L: linux-scsi@vger.kernel.org
5975S: Maintained
5976F: drivers/scsi/qla1280.[ch]
5977
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005979M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08005980M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981L: linux-scsi@vger.kernel.org
5982S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005983F: Documentation/scsi/LICENSE.qla2xxx
5984F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005985
Ravi Anand883c98f2010-04-28 11:45:49 +05305986QLOGIC QLA4XXX iSCSI DRIVER
5987M: Ravi Anand <ravi.anand@qlogic.com>
5988M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
5989M: iscsi-driver@qlogic.com
5990L: linux-scsi@vger.kernel.org
5991S: Supported
5992F: drivers/scsi/qla4xxx/
5993
Ron Mercer5a4faa872006-07-25 00:40:21 -07005994QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00005995M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005996M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07005997M: linux-driver@qlogic.com
5998L: netdev@vger.kernel.org
5999S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006000F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006001F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006002
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006003QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006004M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006005M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006006M: linux-driver@qlogic.com
6007L: netdev@vger.kernel.org
6008S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006009F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006010
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006011QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006012M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006013M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006014M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006015L: netdev@vger.kernel.org
6016S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006017F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006018
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006020M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006021W: http://www.alarsen.net/linux/qnx4fs/
6022S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006023F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07006024F: include/linux/qnx4_fs.h
6025F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006026
Antti Palosaari91952bc2012-10-01 12:28:46 -03006027QT1010 MEDIA DRIVER
6028M: Antti Palosaari <crope@iki.fi>
6029L: linux-media@vger.kernel.org
6030W: http://linuxtv.org/
6031W: http://palosaari.fi/linux/
6032Q: http://patchwork.linuxtv.org/project/linux-media/list/
6033T: git git://linuxtv.org/anttip/media_tree.git
6034S: Maintained
6035F: drivers/media/tuners/qt1010*
6036
Richard Kuo4f4567c2011-10-31 18:56:38 -05006037QUALCOMM HEXAGON ARCHITECTURE
6038M: Richard Kuo <rkuo@codeaurora.org>
6039L: linux-hexagon@vger.kernel.org
6040S: Supported
6041F: arch/hexagon/
6042
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006043RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006044M: Yehuda Sadeh <yehuda@inktank.com>
6045M: Sage Weil <sage@inktank.com>
6046M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006047M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006048W: http://ceph.com/
6049T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006050S: Supported
6051F: drivers/block/rbd.c
6052F: drivers/block/rbd_types.h
6053
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006055M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006056L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006058F: drivers/video/aty/radeon*
6059F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006060
6061RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006062M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006063L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006065F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066
Randy Dunlape7839f22008-10-12 16:11:45 -07006067RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006068P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006069M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006070M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006071M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006072L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006073L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006074W: http://rt2x00.serialmonkey.com/
6075S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006076T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006077F: drivers/net/wireless/rt2x00/
6078
Nick Piggin9db55792008-02-08 04:19:49 -08006079RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006080M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006082F: Documentation/blockdev/ramdisk.txt
6083F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006084
Matt Mackall9e95ce22005-04-16 15:25:56 -07006085RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006086M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006088F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006089
Matt Porter394b7012005-11-07 01:00:15 -08006090RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006091M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006092M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006094F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006095
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006096RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006097L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006098S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006099F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006100
6101RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006102M: Josh Triplett <josh@freedesktop.org>
6103M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006104S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006105T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006106F: Documentation/RCU/torture.txt
6107F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006108
Florian Fainellic1f766b2008-02-06 22:39:44 +01006109RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006110M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006111S: Maintained
6112
Florian Fainellidb17f392007-12-19 11:30:30 +01006113RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006114M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006115L: netdev@vger.kernel.org
6116S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006117F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006118
Andy Grovera09ed662009-02-24 15:30:41 +00006119RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006120M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006121L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006122S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006123F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006124
Josh Triplett595182b2006-10-04 02:17:21 -07006125READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006126M: Dipankar Sarma <dipankar@in.ibm.com>
6127M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006128W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006129S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006130T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006131F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006132X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006133F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006134F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006135X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006136
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006137REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006138M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006139L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006140Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006142F: Documentation/rtc.txt
6143F: drivers/rtc/
6144F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006145
Linus Torvalds1da177e2005-04-16 15:20:36 -07006146REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006147L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006149F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006150
Mark Brownb83a3132011-05-11 19:59:58 +02006151REGISTER MAP ABSTRACTION
6152M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6153T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6154S: Supported
6155F: drivers/base/regmap/
6156F: include/linux/regmap.h
6157
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006158REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6159M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006160T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006161S: Maintained
6162F: drivers/remoteproc/
6163F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006164F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006165
Ivo van Doorne08976452008-04-12 19:23:55 +02006166RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006167M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006168L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006169W: http://wireless.kernel.org/
6170T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6171T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006172S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006173F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006174F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006175
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006176RICOH SMARTMEDIA/XD DRIVER
6177M: Maxim Levitsky <maximlevitsky@gmail.com>
6178S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006179F: drivers/mtd/nand/r852.c
6180F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006181
Maxim Levitsky92634122011-03-25 01:56:59 -07006182RICOH R5C592 MEMORYSTICK DRIVER
6183M: Maxim Levitsky <maximlevitsky@gmail.com>
6184S: Maintained
6185F: drivers/memstick/host/r592.*
6186
Linus Torvalds1da177e2005-04-16 15:20:36 -07006187ROCKETPORT DRIVER
6188P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006189W: http://www.comtrol.com
6190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006191F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006192F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006193
6194ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006195M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006197W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006199F: include/linux/rose.h
6200F: include/net/rose.h
6201F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202
Antti Palosaari91952bc2012-10-01 12:28:46 -03006203RTL2830 MEDIA DRIVER
6204M: Antti Palosaari <crope@iki.fi>
6205L: linux-media@vger.kernel.org
6206W: http://linuxtv.org/
6207W: http://palosaari.fi/linux/
6208Q: http://patchwork.linuxtv.org/project/linux-media/list/
6209T: git git://linuxtv.org/anttip/media_tree.git
6210S: Maintained
6211F: drivers/media/dvb-frontends/rtl2830*
6212
Larry Finger59840482008-11-12 17:13:09 -06006213RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006214M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006215L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006216W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006217T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006218S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006219F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006220
Larry Finger59840482008-11-12 17:13:09 -06006221RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006222M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006223M: Hin-Tak Leung <htl10@users.sourceforge.net>
6224M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006225L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006226W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006227T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006228S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006229F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006230
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006231RTL8192CE WIRELESS DRIVER
6232M: Larry Finger <Larry.Finger@lwfinger.net>
6233M: Chaoming Li <chaoming_li@realsil.com.cn>
6234L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006235W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006236T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6237S: Maintained
6238F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006239F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006240
6241S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006242M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006243L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006244S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006245F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006246
Linus Torvalds1da177e2005-04-16 15:20:36 -07006247S390
Joe Perches8b58be82009-07-29 15:04:30 -07006248M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6249M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006250M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006251L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006252W: http://www.ibm.com/developerworks/linux/linux390/
6253S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006254F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006255F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006256F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006257F: Documentation/s390/
6258F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006259
6260S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006261M: Ursula Braun <ursula.braun@de.ibm.com>
6262M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006263M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006264L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006265W: http://www.ibm.com/developerworks/linux/linux390/
6266S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006267F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006268
Felix Beckfeed9b62009-03-26 15:24:23 +01006269S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006270M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006271M: linux390@de.ibm.com
6272L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006273W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006274S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006275F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006276
Heiko Carstens5238da42006-02-11 17:56:01 -08006277S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006278M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006279M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006280L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006281W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006283F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006284
Ursula Braundd96df22007-09-19 13:09:02 +02006285S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006286M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006287M: linux390@de.ibm.com
6288L: linux-s390@vger.kernel.org
6289W: http://www.ibm.com/developerworks/linux/linux390/
6290S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006291F: drivers/s390/net/*iucv*
6292F: include/net/iucv/
6293F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006294
Ben Dooks4dde7f72008-06-30 22:40:38 +01006295S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006296M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006297L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006298S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006299F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006300
Linus Torvalds1da177e2005-04-16 15:20:36 -07006301SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006302M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006303L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006304T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006305W: http://www.mihu.de/linux/saa7146
6306S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006307F: drivers/media/common/saa7146/
6308F: drivers/media/pci/saa7146/
6309F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006310
Corentin Chary92304a42011-12-05 12:38:35 -05006311SAMSUNG LAPTOP DRIVER
6312M: Corentin Chary <corentincj@iksaif.net>
6313L: platform-driver-x86@vger.kernel.org
6314S: Maintained
6315F: drivers/platform/x86/samsung-laptop.c
6316
Mark Brown4a109cc2010-09-24 10:50:46 +01006317SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006318M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006319L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6320S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006321F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006322
Jingoo Han0d89a282011-12-19 11:09:35 +09006323SAMSUNG FRAMEBUFFER DRIVER
6324M: Jingoo Han <jg1.han@samsung.com>
6325L: linux-fbdev@vger.kernel.org
6326S: Maintained
6327F: drivers/video/s3c-fb.c
6328
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006329SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6330M: Sangbeom Kim <sbkim73@samsung.com>
6331L: linux-kernel@vger.kernel.org
6332S: Supported
6333F: drivers/mfd/sec*.c
6334F: drivers/regulator/s2m*.c
6335F: drivers/regulator/s5m*.c
6336F: drivers/rtc/rtc-sec.c
6337F: include/linux/mfd/samsung/
6338
Alan Coxca749e22011-03-18 13:56:14 +00006339SERIAL DRIVERS
6340M: Alan Cox <alan@linux.intel.com>
6341L: linux-serial@vger.kernel.org
6342S: Maintained
6343F: drivers/tty/serial
6344
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306345SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006346M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306347S: Maintained
6348F: include/linux/dw_dmac.h
6349F: drivers/dma/dw_dmac_regs.h
6350F: drivers/dma/dw_dmac.c
6351
Thomas Gleixner88606e82010-12-14 21:37:13 +01006352TIMEKEEPING, NTP
6353M: John Stultz <johnstul@us.ibm.com>
6354M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006355T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006356S: Supported
6357F: include/linux/clocksource.h
6358F: include/linux/time.h
6359F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006360F: kernel/time/clocksource.c
6361F: kernel/time/time*.c
6362F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006363F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006364
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006365TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006366M: Huang Shijie <shijie8@gmail.com>
6367M: Kang Yong <kangyong@telegent.com>
6368M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006369S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006370F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006371
Linus Torvalds1da177e2005-04-16 15:20:36 -07006372SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006373M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006375F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006376
6377SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006378M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006379M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006380T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006382F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006383F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006384
Chen Liqin6bcf6732009-06-13 15:24:33 +08006385SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006386M: Chen Liqin <liqin.chen@sunplusct.com>
6387M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006388W: http://www.sunplusct.com
6389S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006390F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006391
Linus Torvalds1da177e2005-04-16 15:20:36 -07006392SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006393M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006394L: linux-scsi@vger.kernel.org
6395W: http://www.kernel.dk
6396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006397F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006398
Roland Dreierfb50a832010-10-07 09:54:53 -07006399SCSI RDMA PROTOCOL (SRP) INITIATOR
6400M: David Dillow <dillowda@ornl.gov>
6401L: linux-rdma@vger.kernel.org
6402S: Supported
6403W: http://www.openfabrics.org
6404Q: http://patchwork.kernel.org/project/linux-rdma/list/
6405T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6406F: drivers/infiniband/ulp/srp/
6407F: include/scsi/srp.h
6408
Linus Torvalds1da177e2005-04-16 15:20:36 -07006409SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006410M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006411L: linux-scsi@vger.kernel.org
6412W: http://www.torque.net/sg
6413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006414F: drivers/scsi/sg.c
6415F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006416
6417SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006418M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006420T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6421T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6422T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006424F: drivers/scsi/
6425F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426
6427SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006428M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006429L: linux-scsi@vger.kernel.org
6430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006431F: Documentation/scsi/st.txt
6432F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006433
6434SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006435M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006436M: Sridhar Samudrala <sri@us.ibm.com>
Neil Horman02c38d02012-10-24 09:26:51 +00006437M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006438L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006439W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006441F: Documentation/networking/sctp.txt
6442F: include/linux/sctp.h
6443F: include/net/sctp/
6444F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445
6446SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006447M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006448S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006449F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006450F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006451F: drivers/watchdog/scx200_wdt.c
6452F: drivers/i2c/busses/scx200*
6453F: drivers/mtd/maps/scx200_docflash.c
6454F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006455
6456SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006457M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006459F: drivers/char/scx200_gpio.c
6460F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006461
6462SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006463M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006465F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006466
Sascha Sommer6a369132008-07-15 14:21:29 +02006467SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006468M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006469L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006471F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006472
Randy Dunlape7839f22008-10-12 16:11:45 -07006473SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006474M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006475L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006476T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6477S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006478F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006479F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006480
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006481SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006482M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006483L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006484L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006485S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006486F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006487
Ben Dooks0d1bb412009-06-14 13:52:37 +01006488SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006489M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006490L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006491S: Maintained
6492F: drivers/mmc/host/sdhci-s3c.c
6493
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006494SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006495M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006496L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006497L: linux-mmc@vger.kernel.org
6498S: Maintained
6499F: drivers/mmc/host/sdhci-spear.c
6500
James Morris8711cca2008-12-04 03:19:45 +11006501SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006502M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006503L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006504T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006505W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006506S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006507F: security/
James Morris8711cca2008-12-04 03:19:45 +11006508
Linus Torvalds1da177e2005-04-16 15:20:36 -07006509SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006510M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006511S: Supported
6512
6513SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006514M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006515M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006516M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006517L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006518W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006519T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006520S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006521F: include/linux/selinux*
6522F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006523F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006524
John Johansenc1c124e2010-07-29 14:48:09 -07006525APPARMOR SECURITY MODULE
6526M: John Johansen <john.johansen@canonical.com>
6527L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6528W: apparmor.wiki.kernel.org
6529T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6530S: Supported
6531F: security/apparmor/
6532
Jiri Slabycef2cf02007-05-08 00:31:45 -07006533SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006534M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006536F: drivers/misc/phantom.c
6537F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006538
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006539SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006540M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006541L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006542T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006543S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006544F: drivers/ata/
6545F: include/linux/ata.h
6546F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006547
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306548SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006549M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006550L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006551W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006552S: Supported
6553F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306554
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006555SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006556M: Sathya Perla <sathya.perla@emulex.com>
6557M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6558M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006559L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006560W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006561S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006562F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006563
Ben Hutchings8ceee662008-04-27 12:55:59 +01006564SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006565M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006566M: Ben Hutchings <bhutchings@solarflare.com>
6567L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006568S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006569F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006570
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006571SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006572M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006573S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006574F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006575
6576SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006577M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006578L: linux-ia64@vger.kernel.org
6579S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006580F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006581F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006582F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006583
Linus Torvalds1da177e2005-04-16 15:20:36 -07006584SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006585M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006586L: linux-visws-devel@lists.sf.net
6587W: http://linux-visws.sf.net
6588S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006589F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006590
Jack Steiner75312612008-08-15 00:40:42 -07006591SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006592M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006594F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006595
Len Brown6349d992009-08-14 15:07:14 -04006596SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006597M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006598L: sfi-devel@simplefirmware.org
6599W: http://simplefirmware.org/
6600T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006601S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006602F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006603F: drivers/sfi/
6604F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006605
Linus Torvalds1da177e2005-04-16 15:20:36 -07006606SIMTEC EB110ATX (Chalice CATS)
6607P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006608P: Vincent Sanders <vince@simtec.co.uk>
6609M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610W: http://www.simtec.co.uk/products/EB110ATX/
6611S: Supported
6612
6613SIMTEC EB2410ITX (BAST)
6614P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006615P: Vincent Sanders <vince@simtec.co.uk>
6616M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006617W: http://www.simtec.co.uk/products/EB2410ITX/
6618S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006619F: arch/arm/mach-s3c2410/mach-bast.c
6620F: arch/arm/mach-s3c2410/bast-ide.c
6621F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006622
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006623TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006624M: Sekhar Nori <nsekhar@ti.com>
6625M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306626L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306627T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006628Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006629S: Supported
6630F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006631F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006632
Francois Romieu92aab3c2005-07-30 13:11:18 +02006633SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006634M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006635L: netdev@vger.kernel.org
6636S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006637F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006638
Linus Torvalds1da177e2005-04-16 15:20:36 -07006639SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006640M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006641W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006642L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006643S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006644F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006645
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006646SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006647M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006648L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006650F: Documentation/i2c/busses/i2c-sis96x
6651F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006652
Linus Torvalds1da177e2005-04-16 15:20:36 -07006653SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006654M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006655W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006656S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006657F: Documentation/fb/sisfb.txt
6658F: drivers/video/sis/
6659F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006660
6661SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006662M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006663W: http://www.winischhofer.at/linuxsisusbvga.shtml
6664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006665F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006666
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006667SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006668M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006669M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006670M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006671L: linux-mm@kvack.org
6672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006673F: include/linux/sl?b*.h
6674F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006675
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006676SLEEPABLE READ-COPY UPDATE (SRCU)
6677M: Lai Jiangshan <laijs@cn.fujitsu.com>
6678M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6679W: http://www.rdrop.com/users/paulmck/RCU/
6680S: Supported
6681T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6682F: include/linux/srcu*
6683F: kernel/srcu*
6684
Casey Schaufler66372842012-05-23 18:34:52 -07006685SMACK SECURITY MODULE
6686M: Casey Schaufler <casey@schaufler-ca.com>
6687L: linux-security-module@vger.kernel.org
6688W: http://schaufler-ca.com
6689T: git git://git.gitorious.org/smack-next/kernel.git
6690S: Maintained
6691F: Documentation/security/Smack.txt
6692F: security/smack/
6693
Linus Torvalds1da177e2005-04-16 15:20:36 -07006694SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006695M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006696S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006697F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006698
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006699SMM665 HARDWARE MONITOR DRIVER
6700M: Guenter Roeck <linux@roeck-us.net>
6701L: lm-sensors@lm-sensors.org
6702S: Maintained
6703F: Documentation/hwmon/smm665
6704F: drivers/hwmon/smm665.c
6705
Steve Glendinning9df73052010-08-14 21:08:54 +02006706SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006707M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006708L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006709S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006710F: Documentation/hwmon/emc2103
6711F: drivers/hwmon/emc2103.c
6712
Hans de Goedea98d5062011-03-21 17:59:36 +01006713SMSC SCH5627 HARDWARE MONITOR DRIVER
6714M: Hans de Goede <hdegoede@redhat.com>
6715L: lm-sensors@lm-sensors.org
6716S: Supported
6717F: Documentation/hwmon/sch5627
6718F: drivers/hwmon/sch5627.c
6719
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006720SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006721M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006722L: lm-sensors@lm-sensors.org
6723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006724F: Documentation/hwmon/smsc47b397
6725F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006726
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006727SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006728M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006729L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006731F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006732F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006733
Steve Glendinning2cb37722008-12-11 20:54:30 -08006734SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006735M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006736L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006737S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006738F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006739
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006740SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006741M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006742L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006743S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006744F: drivers/video/smscufx.c
6745
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006746SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006747M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006748L: linux-altix@sgi.com
6749L: linux-ia64@vger.kernel.org
6750W: http://www.sgi.com/altix
6751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006752F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006753
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006754SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006755M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006756L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006757T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006758S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006759F: include/media/soc*
6760F: drivers/media/i2c/soc_camera/
6761F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006762
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006763SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006764M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006766F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006767
Linus Torvalds1da177e2005-04-16 15:20:36 -07006768SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006769M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006770L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006771S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006772F: drivers/md/
6773F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006774
Linus Torvalds1da177e2005-04-16 15:20:36 -07006775SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006776M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006777L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006778S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07006779F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006780
Michael Buesch61e115a2007-09-18 15:12:50 -04006781SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02006782M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04006783L: netdev@vger.kernel.org
6784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006785F: drivers/ssb/
6786F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04006787
Linus Torvalds1da177e2005-04-16 15:20:36 -07006788SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006789M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05006790L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01006791W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07006792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006793F: Documentation/laptops/sony-laptop.txt
6794F: drivers/char/sonypi.c
6795F: drivers/platform/x86/sony-laptop.c
6796F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006797
Alex Dubovbaf85322008-02-09 10:20:54 -08006798SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006799M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08006800W: http://tifmxx.berlios.de/
6801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006802F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08006803
Linus Torvalds1da177e2005-04-16 15:20:36 -07006804SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07006805M: Jaroslav Kysela <perex@perex.cz>
6806M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07006807L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07006808W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02006809T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07006810T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006811S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07006812F: Documentation/sound/
6813F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07006814F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006815
Mark Brownbd903bd2008-11-19 19:16:05 +00006816SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01006817M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006818M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00006819T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07006820L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01006821W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006822S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006823F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01006824F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006825
Sam Ravnborg473321f2009-01-04 15:47:49 -08006826SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07006827M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006828L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006829Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07006830T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6831T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006833F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07006834F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006835
David S. Miller6404fcc2010-03-16 01:00:17 -07006836SPARC SERIAL DRIVERS
6837M: "David S. Miller" <davem@davemloft.net>
6838L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006839T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6840T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07006841S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05006842F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006843F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006844F: drivers/tty/serial/sunhv.c
6845F: drivers/tty/serial/sunsab.c
6846F: drivers/tty/serial/sunsab.h
6847F: drivers/tty/serial/sunsu.c
6848F: drivers/tty/serial/sunzilog.c
6849F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07006850
Christopher Li389325b2012-04-05 14:25:14 -07006851SPARSE CHECKER
6852M: "Christopher Li" <sparse@chrisli.org>
6853L: linux-sparse@vger.kernel.org
6854W: https://sparse.wiki.kernel.org/
6855T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
6856T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
6857S: Maintained
6858F: include/linux/compiler.h
6859
viresh kumarfc0c1952010-04-01 12:31:21 +01006860SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006861M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306862M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006863L: spear-devel@list.st.com
6864L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006865W: http://www.st.com/spear
6866S: Maintained
6867F: arch/arm/plat-spear/
6868
Viresh Kumar71e09a92012-04-20 22:39:48 +05306869SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006870M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306871M: Shiraz Hashim <shiraz.hashim@st.com>
6872L: spear-devel@list.st.com
6873L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6874W: http://www.st.com/spear
6875S: Maintained
6876F: arch/arm/mach-spear13xx/
6877
viresh kumarfc0c1952010-04-01 12:31:21 +01006878SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006879M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306880M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006881L: spear-devel@list.st.com
6882L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006883W: http://www.st.com/spear
6884S: Maintained
6885F: arch/arm/mach-spear3xx/
6886
6887SPEAR6XX MACHINE SUPPORT
6888M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306889M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006890M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006891L: spear-devel@list.st.com
6892L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006893W: http://www.st.com/spear
6894S: Maintained
6895F: arch/arm/mach-spear6xx/
6896
6897SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006898M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006899L: spear-devel@list.st.com
6900L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006901W: http://www.st.com/spear
6902S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05306903F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01006904
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006905SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07006906M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006907L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08006908Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06006909T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006911F: Documentation/spi/
6912F: drivers/spi/
6913F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006914
Jim Lewis2752e402006-09-29 02:01:19 -07006915SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07006916M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
6917M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07006918L: netdev@vger.kernel.org
6919S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006920F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006921F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07006922
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006923SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006924M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006925L: linuxppc-dev@lists.ozlabs.org
6926L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006927W: http://www.ibm.com/developerworks/power/cell/
6928S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006929F: Documentation/filesystems/spufs.txt
6930F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006931
Phillip Lougherfc555842009-01-05 08:46:29 +00006932SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01006933M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00006934L: squashfs-devel@lists.sourceforge.net (subscribers-only)
6935W: http://squashfs.org.uk
6936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006937F: Documentation/filesystems/squashfs.txt
6938F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00006939
Linus Torvalds1da177e2005-04-16 15:20:36 -07006940SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07006941M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006943F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006944
Linus Torvalds26e9a392008-10-17 09:50:12 -07006945STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08006946M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08006947L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08006948S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006949
Linus Torvalds26e9a392008-10-17 09:50:12 -07006950STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08006951M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07006952T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07006953L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08006954S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006955F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07006956
Joe Perchesc8c8b102011-07-05 09:42:12 -07006957STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
6958M: Henk de Groot <pe1dnn@amsat.org>
6959S: Odd Fixes
6960F: drivers/staging/wlags49_h2/
6961F: drivers/staging/wlags49_h25/
6962
Joe Perchesc9555152011-07-05 09:42:01 -07006963STAGING - ASUS OLED
6964M: Jakub Schmidtke <sjakub@gmail.com>
6965S: Odd Fixes
6966F: drivers/staging/asus_oled/
6967
Joe Perchesebd3d012011-07-05 09:42:02 -07006968STAGING - COMEDI
6969M: Ian Abbott <abbotti@mev.co.uk>
6970M: Mori Hess <fmhess@users.sourceforge.net>
6971S: Odd Fixes
6972F: drivers/staging/comedi/
6973
Joe Perches8ca572c2011-07-05 09:42:03 -07006974STAGING - CRYSTAL HD VIDEO DECODER
6975M: Naren Sankar <nsankar@broadcom.com>
6976M: Jarod Wilson <jarod@wilsonet.com>
6977M: Scott Davilla <davilla@4pi.com>
6978M: Manu Abraham <abraham.manu@gmail.com>
6979S: Odd Fixes
6980F: drivers/staging/crystalhd/
6981
Joe Perches0f16ffc2011-07-05 09:42:04 -07006982STAGING - ECHO CANCELLER
6983M: Steve Underwood <steveu@coppice.org>
6984M: David Rowe <david@rowetel.com>
6985S: Odd Fixes
6986F: drivers/staging/echo/
6987
Mark Einon8dc2bbe72011-08-29 18:42:37 +01006988STAGING - ET131X NETWORK DRIVER
6989M: Mark Einon <mark.einon@gmail.com>
6990S: Odd Fixes
6991F: drivers/staging/et131x/
6992
Joe Perchesa0138162011-07-05 15:21:34 -07006993STAGING - FLARION FT1000 DRIVERS
6994M: Marek Belisko <marek.belisko@gmail.com>
6995S: Odd Fixes
6996F: drivers/staging/ft1000/
6997
Joe Perchesec3fab92011-07-05 09:42:05 -07006998STAGING - FRONTIER TRANZPORT AND ALPHATRACK
6999M: David Täht <d@teklibre.com>
7000S: Odd Fixes
7001F: drivers/staging/frontier/
7002
Joe Perches6c1bb422011-07-05 09:42:07 -07007003STAGING - INDUSTRIAL IO
7004M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007005L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007006S: Odd Fixes
7007F: drivers/staging/iio/
7008
Joe Perchesa0138162011-07-05 15:21:34 -07007009STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7010M: Jarod Wilson <jarod@wilsonet.com>
7011W: http://www.lirc.org/
7012S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007013F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007014
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007015STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007016M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007017M: Marc Dietrich <marvin24@gmx.de>
7018L: ac100@lists.launchpad.net (moderated for non-subscribers)
7019S: Maintained
7020F: drivers/staging/nvec/
7021
Joe Perchesa0138162011-07-05 15:21:34 -07007022STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7023M: Andres Salomon <dilinger@queued.net>
7024M: Chris Ball <cjb@laptop.org>
7025M: Jon Nettleton <jon.nettleton@gmail.com>
7026W: http://wiki.laptop.org/go/DCON
7027S: Odd Fixes
7028F: drivers/staging/olpc_dcon/
7029
Chris Kelly94cfdd12012-03-14 10:55:42 +00007030STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00007031M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007032M: Chris Kelly <ckelly@ozmodevices.com>
7033S: Maintained
7034F: drivers/staging/ozwpan/
7035
Joe Perchesa0138162011-07-05 15:21:34 -07007036STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007037M: Willy Tarreau <willy@meta-x.org>
7038S: Odd Fixes
7039F: drivers/staging/panel/
7040
Joe Perchesa0138162011-07-05 15:21:34 -07007041STAGING - REALTEK RTL8712U DRIVERS
7042M: Larry Finger <Larry.Finger@lwfinger.net>
7043M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7044S: Odd Fixes
7045F: drivers/staging/rtl8712/
7046
Joe Perches9629fa82011-07-05 09:42:09 -07007047STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7048M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7049S: Odd Fixes
7050F: drivers/staging/sm7xx/
7051
Joe Perchesa0138162011-07-05 15:21:34 -07007052STAGING - SOFTLOGIC 6x10 MPEG CODEC
7053M: Ben Collins <bcollins@bluecherry.net>
7054S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007055F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007056
7057STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7058M: William Hubbs <w.d.hubbs@gmail.com>
7059M: Chris Brannon <chris@the-brannons.com>
7060M: Kirk Reiser <kirk@braille.uwo.ca>
7061M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7062L: speakup@braille.uwo.ca
7063W: http://www.linux-speakup.org/
7064S: Odd Fixes
7065F: drivers/staging/speakup/
7066
7067STAGING - TI DSP BRIDGE DRIVERS
7068M: Omar Ramirez Luna <omar.ramirez@ti.com>
7069S: Odd Fixes
7070F: drivers/staging/tidspbridge/
7071
Joe Perchesa0138162011-07-05 15:21:34 -07007072STAGING - USB ENE SM/MS CARD READER DRIVER
7073M: Al Cho <acho@novell.com>
7074S: Odd Fixes
7075F: drivers/staging/keucr/
7076
Joe Perchesb3e871c2011-07-05 09:42:10 -07007077STAGING - VIA VT665X DRIVERS
7078M: Forest Bond <forest@alittletooquiet.net>
7079S: Odd Fixes
7080F: drivers/staging/vt665?/
7081
Joe Perches81a9a522011-07-05 09:42:11 -07007082STAGING - WINBOND IS89C35 WLAN USB DRIVER
7083M: Pavel Machek <pavel@ucw.cz>
7084S: Odd Fixes
7085F: drivers/staging/winbond/
7086
Joe Perches709bcb02011-07-05 09:42:13 -07007087STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007088M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007089S: Odd Fixes
7090F: drivers/staging/xgifb/
7091
Linus Torvalds1da177e2005-04-16 15:20:36 -07007092STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007093M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007094S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007095F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007096
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007097SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007098M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007099W: http://sammy.net/sun3/
7100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007101F: arch/m68k/kernel/*sun3*
7102F: arch/m68k/sun3*/
7103F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007104F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007105
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007106SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007107M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007108L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007109W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007110Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007111T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007112S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007113F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007114F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007115F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007116
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007117SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007118M: Len Brown <len.brown@intel.com>
7119M: Pavel Machek <pavel@ucw.cz>
7120M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007121L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007122S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007123F: Documentation/power/
7124F: arch/x86/kernel/acpi/
7125F: drivers/base/power/
7126F: kernel/power/
7127F: include/linux/suspend.h
7128F: include/linux/freezer.h
7129F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007130
7131SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007132M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007133L: linux-video@atrey.karlin.mff.cuni.cz
7134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007135F: Documentation/svga.txt
7136F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007137
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007138SWIOTLB SUBSYSTEM
7139M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7140L: linux-kernel@vger.kernel.org
7141S: Supported
7142F: lib/swiotlb.c
7143F: arch/*/kernel/pci-swiotlb.c
7144F: include/linux/swiotlb.h
7145
Linus Torvalds1da177e2005-04-16 15:20:36 -07007146SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007147M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007149F: Documentation/filesystems/sysv-fs.txt
7150F: fs/sysv/
7151F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007152
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007153TARGET SUBSYSTEM
7154M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7155L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007156L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007157L: http://groups.google.com/group/linux-iscsi-target-dev
7158W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007159T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007160S: Supported
7161F: drivers/target/
7162F: include/target/
7163F: Documentation/target/
7164
Alan Cox4e688522008-04-30 00:52:11 -07007165TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007166M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007168F: Documentation/accounting/taskstats*
7169F: include/linux/taskstats*
7170F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007171
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007172TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007173M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007174L: netdev@vger.kernel.org
7175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007176F: include/linux/pkt_cls.h
7177F: include/net/pkt_cls.h
7178F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007179
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007180TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007181M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7182M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007183W: http://tcp-lp-mod.sourceforge.net/
7184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007185F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007186
Antti Palosaari91952bc2012-10-01 12:28:46 -03007187TDA10071 MEDIA DRIVER
7188M: Antti Palosaari <crope@iki.fi>
7189L: linux-media@vger.kernel.org
7190W: http://linuxtv.org/
7191W: http://palosaari.fi/linux/
7192Q: http://patchwork.linuxtv.org/project/linux-media/list/
7193T: git git://linuxtv.org/anttip/media_tree.git
7194S: Maintained
7195F: drivers/media/dvb-frontends/tda10071*
7196
7197TDA18212 MEDIA DRIVER
7198M: Antti Palosaari <crope@iki.fi>
7199L: linux-media@vger.kernel.org
7200W: http://linuxtv.org/
7201W: http://palosaari.fi/linux/
7202Q: http://patchwork.linuxtv.org/project/linux-media/list/
7203T: git git://linuxtv.org/anttip/media_tree.git
7204S: Maintained
7205F: drivers/media/tuners/tda18212*
7206
7207TDA18218 MEDIA DRIVER
7208M: Antti Palosaari <crope@iki.fi>
7209L: linux-media@vger.kernel.org
7210W: http://linuxtv.org/
7211W: http://palosaari.fi/linux/
7212Q: http://patchwork.linuxtv.org/project/linux-media/list/
7213T: git git://linuxtv.org/anttip/media_tree.git
7214S: Maintained
7215F: drivers/media/tuners/tda18218*
7216
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007217TDA18271 MEDIA DRIVER
7218M: Michael Krufky <mkrufky@linuxtv.org>
7219L: linux-media@vger.kernel.org
7220W: http://linuxtv.org/
7221W: http://github.com/mkrufky
7222Q: http://patchwork.linuxtv.org/project/linux-media/list/
7223T: git git://linuxtv.org/mkrufky/tuners.git
7224S: Maintained
7225F: drivers/media/tuners/tda18271*
7226
Michael Krufkye48307a2012-10-02 00:56:33 -03007227TDA827x MEDIA DRIVER
7228M: Michael Krufky <mkrufky@linuxtv.org>
7229L: linux-media@vger.kernel.org
7230W: http://linuxtv.org/
7231W: http://github.com/mkrufky
7232Q: http://patchwork.linuxtv.org/project/linux-media/list/
7233T: git git://linuxtv.org/mkrufky/tuners.git
7234S: Maintained
7235F: drivers/media/tuners/tda8290.*
7236
Michael Krufky66cf9212012-10-02 00:56:28 -03007237TDA8290 MEDIA DRIVER
7238M: Michael Krufky <mkrufky@linuxtv.org>
7239L: linux-media@vger.kernel.org
7240W: http://linuxtv.org/
7241W: http://github.com/mkrufky
7242Q: http://patchwork.linuxtv.org/project/linux-media/list/
7243T: git git://linuxtv.org/mkrufky/tuners.git
7244S: Maintained
7245F: drivers/media/tuners/tda8290.*
7246
Jiri Pirko3d249d42011-11-11 22:16:48 +00007247TEAM DRIVER
7248M: Jiri Pirko <jpirko@redhat.com>
7249L: netdev@vger.kernel.org
7250S: Supported
7251F: drivers/net/team/
7252F: include/linux/if_team.h
7253
Erik Gilling84b94142010-06-09 15:35:53 -07007254TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007255M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007256L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007257Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7258T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007259S: Supported
7260F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007261F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007262F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007263
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007264TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007265M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007266L: netdev@vger.kernel.org
7267S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007268F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007269
Alan Cox4e688522008-04-30 00:52:11 -07007270Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007271M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007272S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007273F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007274
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007275TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007276M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007277M: Max Filippov <jcmvbkbc@gmail.com>
7278L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007280F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007281
Zhang Ruid3fb6952012-11-15 08:58:27 +08007282THERMAL
7283M: Zhang Rui <rui.zhang@intel.com>
7284L: linux-pm@vger.kernel.org
7285T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7286S: Supported
7287F: drivers/thermal/
7288F: include/linux/thermal.h
7289
Alan Cox4e688522008-04-30 00:52:11 -07007290THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007291M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007292L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007293L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007294W: http://ibm-acpi.sourceforge.net
7295W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007296T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007298F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007299
Alex Dubov4020f2d2006-10-04 02:15:37 -07007300TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007301M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007303F: drivers/misc/tifm*
7304F: drivers/mmc/host/tifm_sd.c
7305F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007306
M R Swami Reddy152ad442012-04-02 20:02:31 +05307307TI LM49xxx FAMILY ASoC CODEC DRIVERS
7308M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307309M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307310L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7311S: Maintained
7312F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307313F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307314
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007315TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007316M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007317L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7318S: Maintained
7319F: sound/soc/codecs/twl4030*
7320
Luciano Coelho90921012011-11-20 21:40:41 +02007321TI WILINK WIRELESS DRIVERS
7322M: Luciano Coelho <coelho@ti.com>
7323L: linux-wireless@vger.kernel.org
7324W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7325W: http://wireless.kernel.org/en/users/Drivers/wl1251
7326T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7327S: Maintained
7328F: drivers/net/wireless/ti/
7329F: include/linux/wl12xx.h
7330
Per Lidene86eaa32006-01-12 16:45:18 +01007331TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007332M: Jon Maloy <jon.maloy@ericsson.com>
7333M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007334L: netdev@vger.kernel.org (core kernel code)
7335L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007336W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007338F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007339F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007340
Chris Metcalf867e3592010-05-28 23:09:12 -04007341TILE ARCHITECTURE
7342M: Chris Metcalf <cmetcalf@tilera.com>
7343W: http://www.tilera.com/scm/
7344S: Supported
7345F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007346F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007347F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007348F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007349
Linus Torvalds1da177e2005-04-16 15:20:36 -07007350TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007351M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007352L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007353W: http://sourceforge.net/projects/tlan/
7354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007355F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007356F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007357
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007358TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007359M: Kentaro Takeda <takedakn@nttdata.co.jp>
7360M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007361L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7362L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007363L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7364L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7365W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007366T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007368F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007369
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007370TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007371M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007372L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007373S: Maintained
7374F: drivers/platform/x86/topstar-laptop.c
7375
Linus Torvalds1da177e2005-04-16 15:20:36 -07007376TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05007377L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007378S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007379F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007380
7381TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007382M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007383L: tlinux-users@tce.toshiba-dme.co.jp
7384W: http://www.buzzard.org.uk/toshiba/
7385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007386F: drivers/char/toshiba.c
7387F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007388
Pierre Ossmand719f902009-03-24 21:06:09 +01007389TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007390M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007391M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007392L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007393S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007394F: drivers/mmc/host/tmio_mmc*
7395F: drivers/mmc/host/sh_mobile_sdhi.c
7396F: include/linux/mmc/tmio.h
7397F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007398
Hugh Dickins98f32602009-05-21 20:33:58 +01007399TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007400M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007401L: linux-mm@kvack.org
7402S: Maintained
7403F: include/linux/shmem_fs.h
7404F: mm/shmem.c
7405
Alan Cox4e688522008-04-30 00:52:11 -07007406TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007407M: Kent Yoder <key@linux.vnet.ibm.com>
7408M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007409W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007410M: Marcel Selhorst <tpmdd@selhorst.net>
7411M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007412W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007413L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007415F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007416
Joe Perchesd6f005a2009-10-26 16:49:40 -07007417TRACING
7418M: Steven Rostedt <rostedt@goodmis.org>
7419M: Frederic Weisbecker <fweisbec@gmail.com>
7420M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007421T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007422S: Maintained
7423F: Documentation/trace/ftrace.txt
7424F: arch/*/*/*/ftrace.h
7425F: arch/*/kernel/ftrace.c
7426F: include/*/ftrace.h
7427F: include/linux/trace*.h
7428F: include/trace/
7429F: kernel/trace/
7430
Linus Torvalds1da177e2005-04-16 15:20:36 -07007431TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007432M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007433T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007434S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007435K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007436
Alan Cox4e688522008-04-30 00:52:11 -07007437TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007438M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7439S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007440T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007441F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007442F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007443F: include/linux/serial_core.h
7444F: include/linux/serial.h
7445F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007446
Antti Palosaari91952bc2012-10-01 12:28:46 -03007447TUA9001 MEDIA DRIVER
7448M: Antti Palosaari <crope@iki.fi>
7449L: linux-media@vger.kernel.org
7450W: http://linuxtv.org/
7451W: http://palosaari.fi/linux/
7452Q: http://patchwork.linuxtv.org/project/linux-media/list/
7453T: git git://linuxtv.org/anttip/media_tree.git
7454S: Maintained
7455F: drivers/media/tuners/tua9001*
7456
Grant Grundler740db6d2008-02-17 11:53:49 -07007457TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007458M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007459L: netdev@vger.kernel.org
7460S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007461F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007462
7463TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00007464M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007465W: http://vtun.sourceforge.net/tun
7466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007467F: Documentation/networking/tuntap.txt
7468F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007469
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007470TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007471M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007473F: drivers/tc/
7474F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007475
Linus Torvalds1da177e2005-04-16 15:20:36 -07007476U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007477M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007478L: linux-scsi@vger.kernel.org
7479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007480F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007481
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007482UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007483M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007484M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007485L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007486T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007487W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007489F: Documentation/filesystems/ubifs.txt
7490F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007491
Alan Coxcc2020e2008-05-19 14:21:51 +01007492UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007493M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007494W: http://www.uclinux.org/
7495L: uclinux-dev@uclinux.org (subscribers-only)
7496S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007497F: arch/m68k/*/*_no.*
7498F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007499
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007500UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007501M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007502W: http://uclinux-h8.sourceforge.jp/
7503S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007504F: arch/h8300/
7505F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007506F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007507
Linus Torvalds1da177e2005-04-16 15:20:36 -07007508UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007509M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007511F: Documentation/filesystems/udf.txt
7512F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007513
Alan Coxcc2020e2008-05-19 14:21:51 +01007514UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007515M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007517F: Documentation/filesystems/ufs.txt
7518F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007519
David Herrmann0a09d3a2012-06-10 15:16:28 +02007520UHID USERSPACE HID IO DRIVER:
7521M: David Herrmann <dh.herrmann@googlemail.com>
7522L: linux-input@vger.kernel.org
7523S: Maintained
7524F: drivers/hid/uhid.c
7525F: include/linux/uhid.h
7526
David Vrabel18332a82008-09-17 16:34:44 +01007527ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007528L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007529S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007530F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007531F: include/linux/uwb.h
7532F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007533
GuanXuetaob31d8272011-01-16 00:35:49 +08007534UNICORE32 ARCHITECTURE:
7535M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7536W: http://mprc.pku.edu.cn/~guanxuetao/linux
7537S: Maintained
7538T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7539F: arch/unicore32/
7540
Tony Finchd8379ab2009-11-27 15:50:30 +00007541UNIFDEF
7542M: Tony Finch <dot@dotat.at>
7543W: http://dotat.at/prog/unifdef
7544S: Maintained
7545F: scripts/unifdef.c
7546
Linus Torvalds1da177e2005-04-16 15:20:36 -07007547UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007548M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007549W: http://www.kernel.dk
7550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007551F: Documentation/cdrom/
7552F: drivers/cdrom/cdrom.c
7553F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007554
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307555UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7556M: Vinayak Holikatti <vinholikatti@gmail.com>
7557M: Santosh Y <santoshsy@gmail.com>
7558L: linux-scsi@vger.kernel.org
7559S: Supported
7560F: Documentation/scsi/ufs.txt
7561F: drivers/scsi/ufs/
7562
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007563UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007564M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007565W: http://www.linux-mtd.infradead.org/
7566L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007567T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007568S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007569F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007570F: include/linux/mtd/ubi.h
7571F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007572
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007573UNSORTED BLOCK IMAGES (UBI) Fastmap
7574M: Richard Weinberger <richard@nod.at>
7575L: linux-mtd@lists.infradead.org
7576S: Maintained
7577F: drivers/mtd/ubi/fastmap.c
7578
Linus Torvalds1da177e2005-04-16 15:20:36 -07007579USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007580M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007581L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007583F: Documentation/usb/acm.txt
7584F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007585
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02007586USB AR5523 WIRELESS DRIVER
7587M: Pontus Fuchs <pontus.fuchs@gmail.com>
7588L: linux-wireless@vger.kernel.org
7589S: Maintained
7590F: drivers/net/wireless/ath/ar5523/
7591
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007592USB ATTACHED SCSI
7593M: Matthew Wilcox <willy@linux.intel.com>
7594M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7595L: linux-usb@vger.kernel.org
7596L: linux-scsi@vger.kernel.org
7597S: Supported
7598F: drivers/usb/storage/uas.c
7599
Linus Torvalds1da177e2005-04-16 15:20:36 -07007600USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07007601M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007602L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007603S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007604F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007605
Linus Torvalds1da177e2005-04-16 15:20:36 -07007606USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007607M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007608L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007610F: drivers/net/usb/cdc_*.c
7611F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007612
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007613USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007614M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007615L: linux-usb@vger.kernel.org
7616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007617F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007618
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007619USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007620M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007621L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007622W: http://www.linux-usb.org/usbnet
7623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007624F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007625
Alan Coxcc2020e2008-05-19 14:21:51 +01007626USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007627M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007628L: rio500-users@lists.sourceforge.net
7629W: http://rio500.sourceforge.net
7630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007631F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007632
Linus Torvalds1da177e2005-04-16 15:20:36 -07007633USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007634M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007635L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007637F: Documentation/usb/ehci.txt
7638F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007639
David Brownell69ae9e32006-11-14 02:03:31 -08007640USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007641M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007642L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007643W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007644T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007646F: drivers/usb/gadget/
7647F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007648
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007649USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007650M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007651L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007652T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007653S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007654F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007655F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007656
matt mooney857aab32011-06-17 15:50:46 -07007657USB/IP DRIVERS
7658M: Matt Mooney <mfm@muteddisk.com>
7659L: linux-usb@vger.kernel.org
7660S: Maintained
7661F: drivers/staging/usbip/
7662
Olav Kongas959eea22005-11-03 17:38:14 +02007663USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007664M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007665L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007667F: drivers/usb/host/isp116x*
7668F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007669
Linus Torvalds1da177e2005-04-16 15:20:36 -07007670USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007671M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007672L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007674F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007675
7676USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007677M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007678L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007679L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007680S: Maintained
7681W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007682F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007683
Clemens Ladischaf399172011-01-10 16:32:54 +01007684USB MIDI DRIVER
7685M: Clemens Ladisch <clemens@ladisch.de>
7686L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7687T: git git://git.alsa-project.org/alsa-kernel.git
7688S: Maintained
7689F: sound/usb/midi.*
7690
Linus Torvalds1da177e2005-04-16 15:20:36 -07007691USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007692M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007693L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007695F: Documentation/usb/ohci.txt
7696F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007697
Matthias Urlichsba460e42005-07-14 00:33:47 -07007698USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007699M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007700L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007702F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007703
Linus Torvalds1da177e2005-04-16 15:20:36 -07007704USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007705M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007706L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007707L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007708W: http://pegasus2.sourceforge.net/
7709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007710F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007711
Felipe Balbid3ad5582012-05-21 16:24:49 +03007712USB PHY LAYER
7713M: Felipe Balbi <balbi@ti.com>
7714L: linux-usb@vger.kernel.org
7715T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7716S: Maintained
7717F: drivers/usb/phy/
7718F: drivers/usb/otg/
7719
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007720USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007721M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007722L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007723S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007724F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007725
7726USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007727M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007728L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007729L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007730W: http://pegasus2.sourceforge.net/
7731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007732F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007733
Alan Cox4e688522008-04-30 00:52:11 -07007734USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007735M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007736L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007737S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007738F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007739
7740USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007741M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007742L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007743S: Maintained
7744W: http://geocities.com/i0xox0i
7745W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07007746F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07007747
Linus Torvalds1da177e2005-04-16 15:20:36 -07007748USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007749M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007750W: http://www.reiner-sct.de/support/treiber_cyberjack.php
7751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007752F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007753
7754USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007755M: Peter Berger <pberger@brimson.com>
7756M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007757L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007759F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007760
7761USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007762M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007763L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007764S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007765F: Documentation/usb/usb-serial.txt
7766F: drivers/usb/serial/generic.c
7767F: drivers/usb/serial/usb-serial.c
7768F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007769
Linus Torvalds1da177e2005-04-16 15:20:36 -07007770USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007771M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007772L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007773S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007774F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007775
7776USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007777M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007778L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007780F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007781
7782USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007783M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007784L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007785W: http://www.connecttech.com
7786S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007787F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007788
Steve Glendinningb3f0db12012-08-15 21:53:38 +00007789USB SMSC75XX ETHERNET DRIVER
7790M: Steve Glendinning <steve.glendinning@shawell.net>
7791L: netdev@vger.kernel.org
7792S: Maintained
7793F: drivers/net/usb/smsc75xx.*
7794
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007795USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007796M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007797L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007799F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007800
Luca Risoliaf423b9a2007-03-26 16:12:04 -03007801USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007802M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007803L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007804L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007805T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007806W: http://www.linux-projects.org
7807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007808F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007809F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007810
7811USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007812M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007813L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007814W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07007815T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007816S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007817F: Documentation/usb/
7818F: drivers/net/usb/
7819F: drivers/usb/
7820F: include/linux/usb.h
7821F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007822
7823USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007824M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007825L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007827F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007828
David Brownell69ae9e32006-11-14 02:03:31 -08007829USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02007830M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007831L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007832W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07007833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007834F: drivers/net/usb/usbnet.c
7835F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007836
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007837USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07007838M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03007839L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007840L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007841T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03007842W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007843S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007844F: drivers/media/usb/uvc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007845
Laurent Pinchart8282da42012-10-04 02:32:42 +02007846USB WEBCAM GADGET
7847M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7848L: linux-usb@vger.kernel.org
7849S: Maintained
7850F: drivers/usb/gadget/*uvc*.c
7851F: drivers/usb/gadget/webcam.c
7852
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007853USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07007854M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007855L: linux-wireless@vger.kernel.org
7856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007857F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007858
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007859USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08007860M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007861L: linux-usb@vger.kernel.org
7862S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08007863F: drivers/usb/host/xhci*
7864F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007865
Linus Torvalds1da177e2005-04-16 15:20:36 -07007866USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04007867L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007868W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04007869S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007870F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007871
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007872USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007873M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007874L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007875L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007876T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007877W: http://royale.zerezo.com/zr364xx/
7878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007879F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007880F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007881
Randy Dunlape7839f22008-10-12 16:11:45 -07007882USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07007883M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01007884M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007885L: user-mode-linux-devel@lists.sourceforge.net
7886L: user-mode-linux-user@lists.sourceforge.net
7887W: http://user-mode-linux.sourceforge.net
7888S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07007889F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07007890F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02007891F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07007892F: fs/hostfs/
7893F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007894
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007895USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07007896M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08007897M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007899F: Documentation/DocBook/uio-howto.tmpl
7900F: drivers/uio/
7901F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007902
Karel Zak256cccb2012-06-01 10:13:09 +02007903UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07007904M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02007905L: util-linux@vger.kernel.org
7906W: http://en.wikipedia.org/wiki/Util-linux
7907T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07007908S: Maintained
7909
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007910UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007911M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007912L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007913W: http://dev.gentoo.org/~spock/projects/uvesafb/
7914S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007915F: Documentation/fb/uvesafb.txt
7916F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007917
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007918VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007919M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007921F: Documentation/filesystems/vfat.txt
7922F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007923
Alex Williamsoncba33452012-07-31 08:16:22 -06007924VFIO DRIVER
7925M: Alex Williamson <alex.williamson@redhat.com>
7926L: kvm@vger.kernel.org
7927S: Maintained
7928F: Documentation/vfio.txt
7929F: drivers/vfio/
7930F: include/linux/vfio.h
7931
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007932VIDEOBUF2 FRAMEWORK
7933M: Pawel Osciak <pawel@osciak.com>
7934M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03007935M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007936L: linux-media@vger.kernel.org
7937S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007938F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007939F: include/media/videobuf2-*
7940
Amit Shah9a824462010-03-23 18:23:09 +05307941VIRTIO CONSOLE DRIVER
7942M: Amit Shah <amit.shah@redhat.com>
7943L: virtualization@lists.linux-foundation.org
7944S: Maintained
7945F: drivers/char/virtio_console.c
7946F: include/linux/virtio_console.h
7947
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10307948VIRTIO CORE, NET AND BLOCK DRIVERS
7949M: Rusty Russell <rusty@rustcorp.com.au>
7950M: "Michael S. Tsirkin" <mst@redhat.com>
7951L: virtualization@lists.linux-foundation.org
7952S: Maintained
7953F: drivers/virtio/
7954F: drivers/net/virtio_net.c
7955F: drivers/block/virtio_blk.c
7956F: include/linux/virtio_*.h
7957
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007958VIRTIO HOST (VHOST)
7959M: "Michael S. Tsirkin" <mst@redhat.com>
7960L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00007961L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007962L: netdev@vger.kernel.org
7963S: Maintained
7964F: drivers/vhost/
7965F: include/linux/vhost.h
7966
Linus Torvalds1da177e2005-04-16 15:20:36 -07007967VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007968M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007969S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007970F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007971
Harald Weltef0bf7f62009-06-17 20:22:39 +02007972VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08007973M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07007974M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02007975S: Maintained
7976F: drivers/mmc/host/via-sdmmc.c
7977
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007978VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007979M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007980L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007981S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007982F: include/linux/via-core.h
7983F: include/linux/via-gpio.h
7984F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07007985F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007986
Francois Romieu01f20732007-01-26 00:57:17 -08007987VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007988M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08007989L: netdev@vger.kernel.org
7990S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007991F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007992
Patrick McHardybe7f8272007-10-23 20:26:36 -07007993VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07007994M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07007995L: netdev@vger.kernel.org
7996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007997F: drivers/net/macvlan.c
7998F: include/linux/if_*vlan.h
7999F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008000
Florian Fainelli55e331c2009-06-16 15:33:53 -07008001VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008002M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008003L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008004S: Maintained
8005F: drivers/vlynq/vlynq.c
8006F: include/linux/vlynq.h
8007
Martyn Welch390beae2012-05-03 17:52:36 +01008008VME SUBSYSTEM
8009M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008010M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008011M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8012L: devel@driverdev.osuosl.org
8013S: Maintained
8014T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8015F: Documentation/vme_api.txt
8016F: drivers/staging/vme/
8017F: drivers/vme/
8018F: include/linux/vme*
8019
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008020VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008021M: Shreyas Bhatewara <sbhatewara@vmware.com>
8022M: "VMware, Inc." <pv-drivers@vmware.com>
8023L: netdev@vger.kernel.org
8024S: Maintained
8025F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008026
Alok Kataria851b1642009-10-13 14:51:05 -07008027VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008028M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008029M: VMware PV-Drivers <pv-drivers@vmware.com>
8030L: linux-scsi@vger.kernel.org
8031S: Maintained
8032F: drivers/scsi/vmw_pvscsi.c
8033F: drivers/scsi/vmw_pvscsi.h
8034
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008035VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008036M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008037M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008038W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008039W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008040T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008041S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008042F: drivers/regulator/
8043F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008044
Juerg Haefligerab413192006-09-24 20:54:04 +02008045VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008046M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008047L: lm-sensors@lm-sensors.org
8048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008049F: Documentation/hwmon/vt1211
8050F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008051
Roger Lucas1de9e372005-11-26 20:20:05 +01008052VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008053M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008054L: lm-sensors@lm-sensors.org
8055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008056F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008057
Tony Olech88095e72011-05-14 16:48:13 -04008058VUB300 USB to SDIO/SD/MMC bridge chip
8059M: Tony Olech <tony.olech@elandigitalsystems.com>
8060L: linux-mmc@vger.kernel.org
8061L: linux-usb@vger.kernel.org
8062S: Supported
8063F: drivers/mmc/host/vub300.c
8064
Linus Torvalds1da177e2005-04-16 15:20:36 -07008065W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008066M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008068F: Documentation/w1/
8069F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008070
Charles Spirakis13927072006-07-05 18:05:15 +02008071W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008072M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008073L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008075F: Documentation/hwmon/w83791d
8076F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008077
Rudolf Marek61db0112006-12-12 18:18:30 +01008078W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008079M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008080L: lm-sensors@lm-sensors.org
8081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008082F: Documentation/hwmon/w83793
8083F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008084
Jean Delvaree3760b42010-10-28 20:31:49 +02008085W83795 HARDWARE MONITORING DRIVER
8086M: Jean Delvare <khali@linux-fr.org>
8087L: lm-sensors@lm-sensors.org
8088S: Maintained
8089F: drivers/hwmon/w83795.c
8090
Linus Torvalds1da177e2005-04-16 15:20:36 -07008091W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008092M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008094F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008095
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008096WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008097M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008098L: linux-watchdog@vger.kernel.org
8099W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008100T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008102F: Documentation/watchdog/
8103F: drivers/watchdog/
8104F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008105
Linus Torvalds1da177e2005-04-16 15:20:36 -07008106WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008107M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008108L: linux-scsi@vger.kernel.org
8109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008110F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008111
David Herrmannb22e00f2011-09-06 13:50:40 +02008112WIIMOTE HID DRIVER
8113M: David Herrmann <dh.herrmann@googlemail.com>
8114L: linux-input@vger.kernel.org
8115S: Maintained
8116F: drivers/hid/hid-wiimote*
8117
David Härdemane258b802009-09-21 17:04:53 -07008118WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008119M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008120S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008121F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008122
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008123WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008124M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008125M: linux-wimax@intel.com
8126L: wimax@linuxwimax.org
8127S: Supported
8128W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008129F: Documentation/wimax/README.wimax
8130F: include/linux/wimax.h
8131F: include/linux/wimax/debug.h
8132F: include/net/wimax.h
8133F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008134
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008135WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008136M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008138F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008139
Linus Torvalds1da177e2005-04-16 15:20:36 -07008140WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008141M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008142L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008143W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008145F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008146
Mark Brownfebf1df2008-04-02 00:51:09 -04008147WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008148M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8149M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008150L: linux-input@vger.kernel.org
8151T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8152W: http://opensource.wolfsonmicro.com/node/7
8153S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008154F: drivers/input/touchscreen/*wm97*
8155F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008156
Mark Brown055bcbc2010-08-13 14:18:12 +01008157WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008158M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008159L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008160T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008161T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008162W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008163S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008164F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008165F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008166F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008167F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008168F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008169F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008170F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008171F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008172F: drivers/input/misc/wm831x-on.c
8173F: drivers/input/touchscreen/wm831x-ts.c
8174F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008175F: drivers/mfd/arizona*
8176F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008177F: drivers/power/wm83*.c
8178F: drivers/rtc/rtc-wm83*.c
8179F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008180F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008181F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008182F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008183F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008184F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008185F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008186F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008187F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008188F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008189F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008190
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008191WORKQUEUE
8192M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008193T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8194S: Maintained
8195F: include/linux/workqueue.h
8196F: kernel/workqueue.c
8197F: Documentation/workqueue.txt
8198
Linus Torvalds1da177e2005-04-16 15:20:36 -07008199X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008200M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008201L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008202S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008203F: Documentation/networking/x25*
8204F: include/net/x25*
8205F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008206
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008207X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008208M: Thomas Gleixner <tglx@linutronix.de>
8209M: Ingo Molnar <mingo@redhat.com>
8210M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008211M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008212T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008214F: Documentation/x86/
8215F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008216
Matthew Garrettd0944852010-02-11 10:40:13 -05008217X86 PLATFORM DRIVERS
8218M: Matthew Garrett <mjg@redhat.com>
8219L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008220T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008221S: Maintained
8222F: drivers/platform/x86
8223
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008224X86 MCE INFRASTRUCTURE
8225M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008226M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008227L: linux-edac@vger.kernel.org
8228S: Maintained
8229F: arch/x86/kernel/cpu/mcheck/*
8230
Ian Campbellc4468082011-04-27 15:26:46 -07008231XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008232M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008233M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008234L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8235L: virtualization@lists.linux-foundation.org
8236S: Supported
8237F: arch/x86/xen/
8238F: drivers/*/xen-*front.c
8239F: drivers/xen/
8240F: arch/x86/include/asm/xen/
8241F: include/xen/
8242
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008243XEN HYPERVISOR ARM
8244M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8245L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8246S: Supported
8247F: arch/arm/xen/
8248F: arch/arm/include/asm/xen/
8249
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008250XEN NETWORK BACKEND DRIVER
8251M: Ian Campbell <ian.campbell@citrix.com>
8252L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8253L: netdev@vger.kernel.org
8254S: Supported
8255F: drivers/net/xen-netback/*
8256
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008257XEN PCI SUBSYSTEM
8258M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008259L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008260S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008261F: arch/x86/pci/*xen*
8262F: drivers/pci/*xen*
8263
8264XEN SWIOTLB SUBSYSTEM
8265M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008266L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008267S: Supported
8268F: arch/x86/xen/*swiotlb*
8269F: drivers/xen/*swiotlb*
8270
Linus Torvalds1da177e2005-04-16 15:20:36 -07008271XFS FILESYSTEM
8272P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008273M: Ben Myers <bpm@sgi.com>
8274M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008275M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008276L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008277W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008278T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008279S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008280F: Documentation/filesystems/xfs.txt
8281F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008282
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008283XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008284M: Anirudha Sarangi <anirudh@xilinx.com>
8285M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008286S: Maintained
8287F: drivers/net/ethernet/xilinx/xilinx_axienet*
8288
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008289XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008290M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008291W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008293F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008294
Peter Korsgaard238b8722006-12-06 20:35:17 -08008295XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008296M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008297L: linux-serial@vger.kernel.org
8298S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008299F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008300
Linus Torvalds1da177e2005-04-16 15:20:36 -07008301YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008302M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008303L: linux-hams@vger.kernel.org
8304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008305F: drivers/net/hamradio/yam*
8306F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008307
Henkaf64a5e2005-10-12 15:02:56 +02008308YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008309M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008310L: usbb2k-api-dev@nongnu.org
8311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008312F: Documentation/input/yealink.txt
8313F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008314
Linus Torvalds1da177e2005-04-16 15:20:36 -07008315Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008316M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008317W: http://yaina.de/jreuter/
8318W: http://www.qsl.net/dl1bke/
8319L: linux-hams@vger.kernel.org
8320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008321F: Documentation/networking/z8530drv.txt
8322F: drivers/net/hamradio/*scc.c
8323F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008324
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008325ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008326M: Daniel Drake <dsd@gentoo.org>
8327M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008328W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008329L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008330L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008332F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008333
Linus Torvalds1da177e2005-04-16 15:20:36 -07008334ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008335L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008336L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008337W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008338T: Mercurial http://linuxtv.org/hg/v4l-dvb
8339S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008340F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008341
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008342ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008343M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008344S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008345F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008346
Linus Torvalds1da177e2005-04-16 15:20:36 -07008347THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008348M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008349L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008350Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008351T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008352S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008353F: *
8354F: */