blob: 8bda335db329557d8024bfb596ca19df83a01874 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93 X: Files and directories that are NOT maintained, same rules as F:
94 Files exclusions are tested before file matches.
95 Can be useful for excluding a specific subdirectory, for instance:
96 F: net/
97 X: net/ipv6/
98 matches all files in and below net excluding net/ipv6/
99 K: Keyword perl extended regex pattern to match content in a
100 patch or file. For instance:
101 K: of_get_profile
102 matches patches or files that contain "of_get_profile"
103 K: \b(printk|pr_(info|err))\b
104 matches patches or files that contain one or more of the words
105 printk, pr_info or pr_err
106 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108Note: For the hard of thinking, this list is meant to remain in alphabetical
109order. If you could add yourselves to it in alphabetical order that would be
110so much easier [Ed]
111
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700114 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163C505 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700117M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700118L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -0700120F: drivers/net/ethernet/i825xx/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Steffen Klasserta6d89912007-08-10 14:05:27 -07001223C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700123M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700124L: netdev@vger.kernel.org
125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700127F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700130M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700131L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700133F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
adam radfordc4de0ce2010-03-08 12:40:36 -08001353WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
136M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800138W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800140F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
14253C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700143M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144L: linux-scsi@vger.kernel.org
145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700146F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
1486PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700149M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150L: linux-hams@vger.kernel.org
151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700152F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700155M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700156M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700157L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700159F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
1618250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800162M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163L: linux-serial@vger.kernel.org
164W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700165S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700166T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800167F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700168F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
1708390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700171L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000172S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700173F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001759P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700176M: Eric Van Hensbergen <ericvh@gmail.com>
177M: Ron Minnich <rminnich@sandia.gov>
178M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100179L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500180W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800181Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800182T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700184F: Documentation/filesystems/9p.txt
185F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800186
Antti Palosaari91952bc2012-10-01 12:28:46 -0300187A8293 MEDIA DRIVER
188M: Antti Palosaari <crope@iki.fi>
189L: linux-media@vger.kernel.org
190W: http://linuxtv.org/
191W: http://palosaari.fi/linux/
192Q: http://patchwork.linuxtv.org/project/linux-media/list/
193T: git git://linuxtv.org/anttip/media_tree.git
194S: Maintained
195F: drivers/media/dvb-frontends/a8293*
196
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700197AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700198M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700199L: linux-scsi@vger.kernel.org
200W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700202F: Documentation/scsi/aacraid.txt
203F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100206M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207L: lm-sensors@lm-sensors.org
208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700209F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200210
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700212M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213L: lm-sensors@lm-sensors.org
214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700215F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700218M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219L: linux-acenic@sunsite.dk
220S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700221F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Peter Feuerere86435e2009-06-21 18:53:03 +0200223ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700224M: Peter Feuerer <peter@piie.net>
Matthew Garrettd09448532010-02-11 10:40:13 -0500225L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700226W: http://piie.net/?section=acerhdf
227S: Maintained
228F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200229
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230ACER WMI LAPTOP EXTRAS
Lee, Chun-Yi182ae552012-12-14 16:14:24 +0800231M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd09448532010-02-11 10:40:13 -0500232L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700234F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700237M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200238M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500239L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400240W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800241Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400242T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500243S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700244F: drivers/acpi/
245F: drivers/pnp/pnpacpi/
246F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700247F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500248
Len Brown8b59a452007-01-08 19:03:28 -0500249ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700250M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500251L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300252W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500253S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700254F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Len Brown8b59a452007-01-08 19:03:28 -0500256ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700257M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500258L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300259W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700261F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700262
Len Brown359acec2007-02-10 01:59:24 -0500263ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700264M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500265L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300266W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500269
Carlos Corbachobff431e2008-02-05 02:17:04 +0000270ACPI WMI DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -0500271L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100272S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700273F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000274
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100275AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700276M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200277W: http://wiki.parisc-linux.org/AD1889
278L: linux-parisc@vger.kernel.org
279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700280F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100281
Michael Hennerich527a1a82010-10-28 11:31:28 +0000282AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
283M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100284L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700285W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000286S: Supported
287F: drivers/misc/ad525x_dpot.c
288
289AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
290M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100291L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700292W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000293S: Supported
294F: drivers/regulator/ad5398.c
295
296AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
297M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100298L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700299W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000300S: Supported
301F: drivers/input/misc/ad714x.c
302
303AD7877 TOUCHSCREEN DRIVER
304M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100305L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700306W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000307S: Supported
308F: drivers/input/touchscreen/ad7877.c
309
310AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
311M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100312L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700313W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000314S: Supported
315F: drivers/input/touchscreen/ad7879.c
316
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700317ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
318M: Jiri Kosina <jkosina@suse.cz>
319S: Maintained
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700322M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200323L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700325F: Documentation/hwmon/adm1025
326F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Corentin Labbecae2caa2007-02-14 21:15:04 +0100328ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700329M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330L: lm-sensors@lm-sensors.org
331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700332F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100333
Michael Wucc0b88c2007-08-31 01:15:25 -0400334ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400335L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200336W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400337S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700338F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400339
Sakari Ailuse8e31622012-11-12 18:14:39 -0300340ADP1653 FLASH CONTROLLER DRIVER
341M: Sakari Ailus <sakari.ailus@iki.fi>
342L: linux-media@vger.kernel.org
343S: Maintained
344F: drivers/media/i2c/adp1653.c
345F: include/media/adp1653.h
346
Michael Hennerich527a1a82010-10-28 11:31:28 +0000347ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
348M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100349L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700350W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000351S: Supported
352F: drivers/mfd/adp5520.c
353F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700354F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800355F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000356F: drivers/input/keyboard/adp5520-keys.c
357
358ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
359M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100360L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700361W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000362S: Supported
363F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800364F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000365
366ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
367M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100368L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700369W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000370S: Supported
371F: drivers/video/backlight/adp8860_bl.c
372
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100373ADS1015 HARDWARE MONITOR DRIVER
374M: Dirk Eibach <eibach@gdsys.de>
375L: lm-sensors@lm-sensors.org
376S: Maintained
377F: Documentation/hwmon/ads1015
378F: drivers/hwmon/ads1015.c
379F: include/linux/i2c/ads1015.h
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700382M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700384F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Jean Delvareb058b852009-12-09 20:36:08 +0100386ADT7475 HARDWARE MONITOR DRIVER
387M: Jean Delvare <khali@linux-fr.org>
388L: lm-sensors@lm-sensors.org
389S: Maintained
390F: Documentation/hwmon/adt7475
391F: drivers/hwmon/adt7475.c
392
Michael Hennerich527a1a82010-10-28 11:31:28 +0000393ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
394M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100395L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700396W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000397S: Supported
398F: drivers/input/misc/adxl34x.c
399
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400400ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700401M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400402L: linux-scsi@vger.kernel.org
403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700404F: Documentation/scsi/advansys.txt
405F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700408M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700410F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Antti Palosaari91952bc2012-10-01 12:28:46 -0300412AF9013 MEDIA DRIVER
413M: Antti Palosaari <crope@iki.fi>
414L: linux-media@vger.kernel.org
415W: http://linuxtv.org/
416W: http://palosaari.fi/linux/
417Q: http://patchwork.linuxtv.org/project/linux-media/list/
418T: git git://linuxtv.org/anttip/media_tree.git
419S: Maintained
420F: drivers/media/dvb-frontends/af9013*
421
422AF9033 MEDIA DRIVER
423M: Antti Palosaari <crope@iki.fi>
424L: linux-media@vger.kernel.org
425W: http://linuxtv.org/
426W: http://palosaari.fi/linux/
427Q: http://patchwork.linuxtv.org/project/linux-media/list/
428T: git git://linuxtv.org/anttip/media_tree.git
429S: Maintained
430F: drivers/media/dvb-frontends/af9033*
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200433L: linux-fsdevel@vger.kernel.org
434S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700435F: Documentation/filesystems/affs.txt
436F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700438AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700439M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700440L: linux-afs@lists.infradead.org
441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700442F: fs/afs/
443F: include/net/af_rxrpc.h
444F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700447M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700448T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700450F: drivers/char/agp/
451F: include/linux/agp*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800452F: include/uapi/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700455M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456L: linux-scsi@vger.kernel.org
457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700458F: drivers/scsi/aha152x*
459F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Hannes Reinecke64624d42007-10-19 10:32:29 +0200461AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700462M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200463L: linux-scsi@vger.kernel.org
464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700465F: drivers/scsi/aic7xxx/
466F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200467
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700468AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700469M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700470L: linux-aio@kvack.org
471S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700472F: fs/aio.c
473F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700476M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700477L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478W: http://www.linux-usb.org/SpeedTouch/
479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700480F: drivers/usb/atm/speedtch.c
481F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Pierre Ossman272f1332007-05-14 21:25:26 +0200483ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700484M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700486F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200487
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000488ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700489M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100490L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700492F: Documentation/i2c/busses/i2c-ali1563
493F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700496M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700497M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500498M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700499S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700500L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700501F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Tobias Klauseradf92512011-02-09 10:58:29 +0100503ALTERA UART/JTAG UART SERIAL DRIVERS
504M: Tobias Klauser <tklauser@distanz.ch>
505L: linux-serial@vger.kernel.org
506L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
507S: Maintained
508F: drivers/tty/serial/altera_uart.c
509F: drivers/tty/serial/altera_jtaguart.c
510F: include/linux/altera_uart.h
511F: include/linux/altera_jtaguart.h
512
Andreas Herrmann512d1022011-05-25 20:43:31 +0200513AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100514M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200515L: lm-sensors@lm-sensors.org
516S: Maintained
517F: Documentation/hwmon/fam15h_power
518F: drivers/hwmon/fam15h_power.c
519
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700520AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700521M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700522L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700523S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700524F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700525
Jordan Crousef90b8112006-01-06 00:12:14 -0800526AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800527P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700528L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800529W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
530S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700531F: drivers/char/hw_random/geode-rng.c
532F: drivers/crypto/geode*
533F: drivers/video/geode/
534F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800535
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200536AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200537M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200538L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100539T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200540S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800541F: drivers/iommu/amd_iommu*.[ch]
542F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200543
Peter Orubae7f5b302008-07-28 18:44:11 +0200544AMD MICROCODE UPDATE SUPPORT
Andreas Herrmann943482d2012-10-29 18:51:38 +0100545M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700546L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700548F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200549
Stelian Pop284f42b2006-12-12 18:18:31 +0100550AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700551M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100552S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200553F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100554
Tom Tuckerf94b5332006-09-22 15:22:48 -0700555AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700556M: Tom Tucker <tom@opengridcomputing.com>
557M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700558L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700560F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700561
Michael Hennerich527a1a82010-10-28 11:31:28 +0000562ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200563M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100564L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000565L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700566W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000567S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100568F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200569F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000570F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000571F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100572F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000573
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400574ANALOG DEVICES INC ASOC DRIVERS
575L: uclinux-dist-devel@blackfin.uclinux.org
576L: alsa-devel@alsa-project.org (moderated for non-subscribers)
577W: http://blackfin.uclinux.org/
578S: Supported
579F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400580
Johannes Berg42269062006-07-25 16:15:50 +0200581AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700582M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000583L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700584L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700586F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200589M: Jiri Kosina <jkosina@suse.cz>
590S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700591F: arch/x86/kernel/apm_32.c
592F: include/linux/apm_bios.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800593F: include/uapi/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200594F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700596APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700597M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700598L: linux-input@vger.kernel.org
599S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700600F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700601
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700602APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200603M: Henrik Rydberg <rydberg@euromail.se>
604L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700605S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700606F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700609M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700611F: drivers/net/appletalk/
612F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Viresh Kumara4801672011-02-22 15:46:07 +0530614ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700615M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530616L: linux-ide@vger.kernel.org
617S: Maintained
618F: include/linux/pata_arasan_cf_data.h
619F: drivers/ata/pata_arasan_cf.c
620
Jaya Kumar1154ea72005-06-21 17:17:04 -0700621ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700622M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700624F: drivers/video/arcfb.c
625F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700628M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700630F: arch/arm/lib/floppydma.S
631F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Will Deacon6f965212011-07-01 14:38:53 +0100633ARM PMU PROFILING AND DEBUGGING
634M: Will Deacon <will.deacon@arm.com>
635S: Maintained
636F: arch/arm/kernel/perf_event*
637F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100638F: arch/arm/include/asm/pmu.h
639F: arch/arm/kernel/hw_breakpoint.c
640F: arch/arm/include/asm/hw_breakpoint.h
641
Russell Kingd4275352009-04-16 14:05:27 +0100642ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700643M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700644L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100645W: http://www.arm.linux.org.uk/
646S: Maintained
647F: arch/arm/
648
Stephen Boydd323c2432012-10-24 11:00:29 -0700649ARM SUB-ARCHITECTURES
650L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Zhang Yanfei56ca9d92013-01-11 14:32:04 -0800651S: Maintained
Stephen Boydd323c2432012-10-24 11:00:29 -0700652F: arch/arm/mach-*/
653F: arch/arm/plat-*/
654T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
655
Russell Kingcefbf4e2009-11-22 17:40:28 +0000656ARM PRIMECELL AACI PL041 DRIVER
657M: Russell King <linux@arm.linux.org.uk>
658S: Maintained
659F: sound/arm/aaci.*
660
661ARM PRIMECELL CLCD PL110 DRIVER
662M: Russell King <linux@arm.linux.org.uk>
663S: Maintained
664F: drivers/video/amba-clcd.*
665
666ARM PRIMECELL KMI PL050 DRIVER
667M: Russell King <linux@arm.linux.org.uk>
668S: Maintained
669F: drivers/input/serio/ambakmi.*
670F: include/linux/amba/kmi.h
671
Russell King2761f5c2007-05-24 06:56:08 +0200672ARM PRIMECELL MMCI PL180/1 DRIVER
Russell King08a5c9a2013-02-11 15:28:51 +0000673M: Russell King <linux@arm.linux.org.uk>
674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700675F: drivers/mmc/host/mmci.*
Russell King2f748aa2013-02-11 15:28:05 +0000676F: include/linux/amba/mmci.h
Russell King2761f5c2007-05-24 06:56:08 +0200677
Russell King1b4304e2013-02-11 15:26:27 +0000678ARM PRIMECELL UART PL010 AND PL011 DRIVERS
679M: Russell King <linux@arm.linux.org.uk>
680S: Maintained
681F: drivers/tty/serial/amba-pl01*.c
682F: include/linux/amba/serial.h
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800683
Russell Kingcefbf4e2009-11-22 17:40:28 +0000684ARM PRIMECELL BUS SUPPORT
685M: Russell King <linux@arm.linux.org.uk>
686S: Maintained
687F: drivers/amba/
688F: include/linux/amba/bus.h
689
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800690ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700691M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700692L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800693S: Maintained
694
Sergey Lapin9c784f92008-08-03 02:29:48 +0100695ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700696M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700697L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100698S: Maintained
699
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800700ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700701M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700702L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800703S: Maintained
704
Maxime Ripard1b106692012-11-15 21:51:26 +0100705ARM/Allwinner A1X SoC support
706M: Maxime Ripard <maxime.ripard@free-electrons.com>
707L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
708S: Maintained
709F: arch/arm/mach-sunxi/
710
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800711ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700712M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800713M: Nicolas Ferre <nicolas.ferre@atmel.com>
714M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700715L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200716W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800717W: http://www.linux4sam.org
718S: Supported
719F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100720
Rob Herring986cf2e2011-06-22 11:28:53 -0500721ARM/CALXEDA HIGHBANK ARCHITECTURE
722M: Rob Herring <rob.herring@calxeda.com>
723L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
724S: Maintained
725F: arch/arm/mach-highbank/
726
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300727ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
728M: Anton Vorontsov <avorontsov@mvista.com>
729S: Maintained
730F: arch/arm/mach-cns3xxx/
731T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
732
Alexander Shiyan386ab512012-11-17 17:57:24 +0400733ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
734M: Alexander Shiyan <shc_work@mail.ru>
735L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
736S: Odd Fixes
737F: arch/arm/mach-clps711x/
738
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800739ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100740M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000741M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700742L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800743S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100744F: arch/arm/mach-ep93xx/
745F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800746
747ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700748M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700749L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800750S: Maintained
751
Russell Kingd4275352009-04-16 14:05:27 +0100752ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700753M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700754L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700755S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100756F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700757F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100758
Mike Rapoportd48134e2008-08-20 09:03:26 +0100759ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700760M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700761L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100762S: Maintained
763
Hubert Feurstein94150092009-10-07 08:36:07 +0100764ARM/CONTEC MICRO9 MACHINE SUPPORT
765M: Hubert Feurstein <hubert.feurstein@contec.at>
766S: Maintained
767F: arch/arm/mach-ep93xx/micro9.c
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700770M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771S: Maintained
772
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200773ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100774M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700775L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100776T: git git://git.berlios.de/gemini-board
777S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300778F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200779
Barry Songa990cbd2011-07-12 21:44:10 +0800780ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
781M: Barry Song <baohua.song@csr.com>
782L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
783S: Maintained
784F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800785F: drivers/dma/sirf-dma.c
786F: drivers/i2c/busses/i2c-sirf.c
787F: drivers/pinctrl/pinctrl-sirf.c
788F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800789
Russell Kingd4275352009-04-16 14:05:27 +0100790ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700791M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700792L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100793W: http://www.arm.linux.org.uk/
794S: Maintained
795F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700796F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100797
Russell Kinga9da4f72008-07-12 21:42:04 +0100798ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700799M: Daniel Ribeiro <drwyrm@gmail.com>
800M: Stefan Schmidt <stefan@openezx.org>
801M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200802L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100803W: http://www.openezx.org/
804S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200805T: topgit git://git.openezx.org/openezx.git
806F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100807
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200808ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100809M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700810L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100811S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700812T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300813F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200814
Russell Kingd4275352009-04-16 14:05:27 +0100815ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700816M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700817L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100818W: http://www.arm.linux.org.uk/
819S: Maintained
820F: arch/arm/include/asm/hardware/dec21285.h
821F: arch/arm/mach-footbridge/
822
Sascha Hauer86183a52008-07-24 23:50:35 +0200823ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700824M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700825L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200826S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700827T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100828F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700829F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200830
Shawn Guo8bcb97652011-10-07 22:24:18 +0800831ARM/FREESCALE IMX6
832M: Shawn Guo <shawn.guo@linaro.org>
833L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
834S: Maintained
835T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
836F: arch/arm/mach-imx/*imx6*
837
Shawn Guoa9866a02011-10-21 11:53:34 +0800838ARM/FREESCALE MXS ARM ARCHITECTURE
839M: Shawn Guo <shawn.guo@linaro.org>
840L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
841S: Maintained
842T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
843F: arch/arm/mach-mxs/
844
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800845ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700846M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700847L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800848S: Maintained
849
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100850ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700851M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700852L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100853S: Maintained
854
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200855ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700856M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100857M: Paul Parsons <lost.distance@yahoo.com>
858L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200859S: Maintained
860F: arch/arm/mach-pxa/hx4700.c
861F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100862F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200863
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100864ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700865M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200866W: www.jlime.com
867S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700868T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
869F: arch/arm/mach-sa1100/jornada720.c
870F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100871
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200872ARM/IGEP MACHINE SUPPORT
873M: Enric Balletbo i Serra <eballetbo@gmail.com>
874M: Javier Martinez Canillas <javier@dowhile0.org>
875L: linux-omap@vger.kernel.org
876L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
877S: Maintained
878F: arch/arm/mach-omap2/board-igep0020.c
879
Marek Vasut403d2972010-05-22 00:29:39 +0200880ARM/INCOME PXA270 SUPPORT
881M: Marek Vasut <marek.vasut@gmail.com>
882L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
883S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700884F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200885
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800886ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700887M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700888M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700889L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700890S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100891
892ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700893M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700894L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700895S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800896
897ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700898M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700899M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700900L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700901S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800902
903ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700904M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700905M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700906L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700907S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800908
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800909ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700910M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700911L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800912S: Maintained
913
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200914ARM/INTEL IXP4XX ARM ARCHITECTURE
915M: Imre Kaloz <kaloz@openwrt.org>
916M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100917L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200918S: Maintained
919F: arch/arm/mach-ixp4xx/
920
Joe Perches838553c2010-10-26 14:22:59 -0700921ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100922M: Jonathan Cameron <jic23@cam.ac.uk>
923L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
924S: Maintained
925F: arch/arm/mach-pxa/stargate2.c
926F: drivers/pcmcia/pxa2xx_stargate2.c
927
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800928ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700929M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700930M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700931L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700932S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800933
934ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700935M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700936L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800937S: Maintained
938
939ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700940M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700941L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800942S: Maintained
943
Philipp Zabel3b8861712008-07-09 21:27:15 +0100944ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700945M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100946S: Maintained
947
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200948ARM/Marvell Armada 370 and Armada XP SOC support
949M: Jason Cooper <jason@lakedaemon.net>
950M: Andrew Lunn <andrew@lunn.ch>
951M: Gregory Clement <gregory.clement@free-electrons.com>
952L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
953S: Maintained
954F: arch/arm/mach-mvebu/
955
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400956ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
957M: Jason Cooper <jason@lakedaemon.net>
958M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700959L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400960S: Maintained
961F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400962F: arch/arm/mach-kirkwood/
963F: arch/arm/mach-mv78xx0/
964F: arch/arm/mach-orion5x/
965F: arch/arm/plat-orion/
966
Alexander Clouterd69ac132011-04-14 15:22:02 -0700967ARM/Orion SoC/Technologic Systems TS-78xx platform support
968M: Alexander Clouter <alex@digriz.org.uk>
969L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
970W: http://www.digriz.org.uk/ts78xx/kernel
971S: Maintained
972F: arch/arm/mach-orion5x/ts78xx-*
973
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000974ARM/MICREL KS8695 ARCHITECTURE
975M: Greg Ungerer <gerg@uclinux.org>
976L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
977F: arch/arm/mach-ks8695
978S: Odd Fixes
979
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200980ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700981M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700982L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200983F: arch/arm/mach-pxa/mioa701.c
984S: Maintained
985
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100986ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700987M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100988S: Maintained
989
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100990ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700991M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200992M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700993M: STEricsson <STEricsson_nomadik_linux@list.st.com>
994L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
995S: Maintained
996F: arch/arm/mach-nomadik/
997F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100998F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200999T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001000
Andy Green9d762952009-05-19 06:41:42 -03001001ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001002M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001003L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1004W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1005S: Supported
1006
Daniel Walker0c19d212009-12-07 16:53:51 -08001007ARM/QUALCOMM MSM MACHINE SUPPORT
1008M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001009M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001010M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001011L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001012F: arch/arm/mach-msm/
1013F: drivers/video/msm/
1014F: drivers/mmc/host/msm_sdcc.c
1015F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001016F: drivers/tty/serial/msm_serial.h
1017F: drivers/tty/serial/msm_serial.c
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001018F: drivers/*/pm8???-*
1019F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001020T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001021S: Maintained
1022
Dirk Opfer8459c152005-11-06 14:27:52 +00001023ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001024M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1025M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001026S: Maintained
1027
Marek Vasut5d783a22009-07-16 13:26:48 +02001028ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001029M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001030L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001031W: http://hackndev.com
1032S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001033F: arch/arm/mach-pxa/include/mach/palmtx.h
1034F: arch/arm/mach-pxa/palmtx.c
1035F: arch/arm/mach-pxa/include/mach/palmt5.h
1036F: arch/arm/mach-pxa/palmt5.c
1037F: arch/arm/mach-pxa/include/mach/palmld.h
1038F: arch/arm/mach-pxa/palmld.c
1039F: arch/arm/mach-pxa/include/mach/palmte2.h
1040F: arch/arm/mach-pxa/palmte2.c
1041F: arch/arm/mach-pxa/include/mach/palmtc.h
1042F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001043
Joe Perchesb57fe922009-12-14 18:00:52 -08001044ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001045M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001046L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001047W: http://hackndev.com
1048S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001049F: arch/arm/mach-pxa/include/mach/palmtreo.h
1050F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001051
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001052ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001053M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001054L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001055W: http://hackndev.com
1056S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001057F: arch/arm/mach-pxa/include/mach/palmz72.h
1058F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001061M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1063S: Maintained
1064
1065ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001066M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001067L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068W: http://www.arm.linux.org.uk/
1069S: Maintained
1070
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001071ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001072M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001073L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001074S: Maintained
1075
Russell Kingd4275352009-04-16 14:05:27 +01001076ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001077M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001078L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001079W: http://www.arm.linux.org.uk/
1080S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001081F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1082F: arch/arm/include/asm/hardware/ioc.h
1083F: arch/arm/include/asm/hardware/iomd.h
1084F: arch/arm/include/asm/hardware/memc.h
1085F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001086F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001087F: drivers/net/ethernet/i825xx/ether1*
1088F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001089F: drivers/scsi/arm/
1090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001092M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093W: http://www.shark-linux.de/shark.html
1094S: Maintained
1095
Ben Dooksb21477f2009-06-13 10:46:34 +01001096ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001097M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001098M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001099L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001100L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001101W: http://www.fluff.org/ben/linux/
1102S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001103F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001104F: arch/arm/plat-s3c24xx/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001105F: arch/arm/mach-s3c24*/
1106F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001107F: drivers/*/*s3c2410*
1108F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001109F: drivers/spi/spi-s3c*
1110F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001112ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001113M: Kukjin Kim <kgene.kim@samsung.com>
1114L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1115L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1116S: Maintained
1117F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001118F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001119
Kyungmin Park10ffa962011-03-04 17:36:26 -08001120ARM/SAMSUNG MOBILE MACHINE SUPPORT
1121M: Kyungmin Park <kyungmin.park@samsung.com>
1122L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1123S: Maintained
1124F: arch/arm/mach-s5pv210/mach-aquila.c
1125F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001126F: arch/arm/mach-exynos/mach-universal_c210.c
1127F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001128
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001129ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1130M: Kyungmin Park <kyungmin.park@samsung.com>
1131M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1132L: linux-arm-kernel@lists.infradead.org
1133L: linux-media@vger.kernel.org
1134S: Maintained
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001135F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001136F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001137
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001138ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1139M: Kyungmin Park <kyungmin.park@samsung.com>
1140M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001141M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001142L: linux-arm-kernel@lists.infradead.org
1143L: linux-media@vger.kernel.org
1144S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001145F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001146F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001147
1148ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1149M: Kyungmin Park <kyungmin.park@samsung.com>
1150M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1151L: linux-arm-kernel@lists.infradead.org
1152L: linux-media@vger.kernel.org
1153S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001154F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001155
Paul Mundtd48d38e2010-02-08 12:50:24 +09001156ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001157M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001158M: Magnus Damm <magnus.damm@gmail.com>
1159L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001160W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001161Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001162T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001163S: Supported
1164F: arch/arm/mach-shmobile/
1165F: drivers/sh/
1166
Dinh Nguyen66314222012-07-18 16:07:18 -06001167ARM/SOCFPGA ARCHITECTURE
1168M: Dinh Nguyen <dinguyen@altera.com>
1169S: Maintained
1170F: arch/arm/mach-socfpga/
1171
1172ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1173M: Dinh Nguyen <dinguyen@altera.com>
1174S: Maintained
1175F: drivers/clk/socfpga/
1176
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001177ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001178M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001179L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001180S: Maintained
1181
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001182ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001183M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001184L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1185S: Maintained
1186
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001187ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001188M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001189L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001190S: Maintained
1191
wanzongshun98ad6e32009-02-13 06:04:32 +01001192ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001193M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001194L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001195W: http://www.mcuos.com
1196S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001197F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001198F: drivers/input/keyboard/w90p910_keypad.c
1199F: drivers/input/touchscreen/w90p910_ts.c
1200F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001201F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001202F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001203F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001204F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001205F: drivers/usb/host/ehci-w90x900.c
1206F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001207
Linus Walleij54274d72010-04-04 10:58:03 +01001208ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001209M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001210L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1211S: Supported
1212F: arch/arm/mach-u300/
1213F: drivers/i2c/busses/i2c-stu300.c
1214F: drivers/rtc/rtc-coh901331.c
1215F: drivers/watchdog/coh901327_wdt.c
1216F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001217F: drivers/mfd/ab3100*
1218F: drivers/rtc/rtc-ab3100.c
1219F: drivers/rtc/rtc-coh901331.c
1220T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001221
Linus Walleij87572882010-12-22 09:18:29 +01001222ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001223M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001224M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001225L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1226S: Maintained
1227F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001228F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001229F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001230F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001231F: drivers/mfd/abx500*
1232F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001233F: drivers/mfd/dbx500*
1234F: drivers/mfd/db8500*
1235F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001236F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001237F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001238T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001239
Russell Kingd4275352009-04-16 14:05:27 +01001240ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001241M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001242L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001243W: http://www.arm.linux.org.uk/
1244S: Maintained
1245F: arch/arm/vfp/
1246
Marek Vasute66b6d82010-03-26 06:51:32 +01001247ARM/VOIPAC PXA270 SUPPORT
1248M: Marek Vasut <marek.vasut@gmail.com>
1249L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1250S: Maintained
1251F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001252F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001253
Tony Prisk04529fe2012-07-24 04:19:37 +12001254ARM/VT8500 ARM ARCHITECTURE
1255M: Tony Prisk <linux@prisktech.co.nz>
1256L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1257S: Maintained
1258F: arch/arm/mach-vt8500/
1259F: drivers/video/vt8500lcdfb.*
1260F: drivers/video/wm8505fb*
1261F: drivers/video/wmt_ge_rops.*
1262F: drivers/tty/serial/vt8500_serial.c
Cesar Eduardo Barros7beefe12013-01-04 15:35:18 -08001263F: drivers/rtc/rtc-vt8500.c
Tony Prisk3a96dff2012-11-18 15:33:06 +13001264F: drivers/mmc/host/wmt-sdmmc.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001265
Marek Vasute66b6d82010-03-26 06:51:32 +01001266ARM/ZIPIT Z2 SUPPORT
1267M: Marek Vasut <marek.vasut@gmail.com>
1268L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1269S: Maintained
1270F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001271F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001272
Catalin Marinas38074222012-03-05 11:49:34 +00001273ARM64 PORT (AARCH64 ARCHITECTURE)
1274M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001275M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001276L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1277S: Maintained
1278F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001279F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001280
George Josephd58de032010-03-05 22:17:25 +01001281ASC7621 HARDWARE MONITOR DRIVER
1282M: George Joseph <george.joseph@fairview5.com>
1283L: lm-sensors@lm-sensors.org
1284S: Maintained
1285F: Documentation/hwmon/asc7621
1286F: drivers/hwmon/asc7621.c
1287
Corentin Charyb229ece2011-02-26 10:20:40 +01001288ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001289M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05001291L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001292W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001294F: drivers/platform/x86/asus*.c
1295F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001297ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001298M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001299L: lm-sensors@lm-sensors.org
1300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001301F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001302
Andrew Morton953a6472008-11-06 12:53:28 -08001303ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001304M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001305W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001307F: Documentation/crypto/async-tx-api.txt
1308F: crypto/async_tx/
1309F: drivers/dma/
1310F: include/linux/dmaengine.h
1311F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001312
Wolfram Sanga1867d32009-09-18 22:45:51 +02001313AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001314M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001315L: linux-i2c@vger.kernel.org
1316S: Maintained
1317F: drivers/misc/eeprom/at24.c
1318F: include/linux/i2c/at24.h
1319
Randy Dunlape7839f22008-10-12 16:11:45 -07001320ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001321M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001322W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001324F: Documentation/aoe/
1325F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Joe Perches9a10a872010-12-01 09:37:55 -08001327ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001328M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001329L: linux-wireless@vger.kernel.org
1330S: Supported
1331F: drivers/net/wireless/ath/*
1332
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001333ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001334M: Jiri Slaby <jirislaby@gmail.com>
1335M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001336M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001337L: linux-wireless@vger.kernel.org
1338L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001339W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001340S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001341F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001342
Kalle Valo12e62d62011-09-13 10:21:25 +03001343ATHEROS ATH6KL WIRELESS DRIVER
1344M: Kalle Valo <kvalo@qca.qualcomm.com>
1345L: linux-wireless@vger.kernel.org
1346W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1347T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1348S: Supported
1349F: drivers/net/wireless/ath/ath6kl/
1350
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001351ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001352M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1353M: Jouni Malinen <jouni@qca.qualcomm.com>
1354M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1355M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001356L: linux-wireless@vger.kernel.org
1357L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001358W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001359S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001360F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001361
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001362WILOCITY WIL6210 WIRELESS DRIVER
1363M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1364L: linux-wireless@vger.kernel.org
1365L: wil6210@qca.qualcomm.com
1366S: Supported
1367W: http://wireless.kernel.org/en/users/Drivers/wil6210
1368F: drivers/net/wireless/ath/wil6210/
1369
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001370CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1371M: Christian Lamparter <chunkeey@googlemail.com>
1372L: linux-wireless@vger.kernel.org
1373W: http://wireless.kernel.org/en/users/Drivers/carl9170
1374S: Maintained
1375F: drivers/net/wireless/ath/carl9170/
1376
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001377ATK0110 HWMON DRIVER
1378M: Luca Tettamanti <kronos.it@gmail.com>
1379L: lm-sensors@lm-sensors.org
1380S: Maintained
1381F: drivers/hwmon/asus_atk0110.c
1382
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001383ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001384M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001386F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001387
Chris Snook7ae115b2008-09-09 03:26:57 -04001388ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001389M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001390M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001391L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001392W: http://sourceforge.net/projects/atl1
1393W: http://atl1.sourceforge.net
1394S: Maintained
Jeff Kirsher2b133ad62011-05-20 06:55:16 -07001395F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001398M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001399L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001400L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401W: http://linux-atm.sourceforge.net
1402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001403F: drivers/atm/
1404F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001405F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001407ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001408M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001409S: Maintained
1410F: drivers/mmc/host/atmel-mci.c
1411F: drivers/mmc/host/atmel-mci-regs.h
1412
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001413ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001414M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001415S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001416F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001417
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001418ATMEL DMA DRIVER
1419M: Nicolas Ferre <nicolas.ferre@atmel.com>
1420L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1421S: Supported
1422F: drivers/dma/at_hdmac.c
1423F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001424F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001425
Josh Wu15515542012-03-23 17:56:29 +08001426ATMEL ISI DRIVER
1427M: Josh Wu <josh.wu@atmel.com>
1428L: linux-media@vger.kernel.org
1429S: Supported
Cesar Eduardo Barrosf2294c2d2013-01-04 15:35:21 -08001430F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001431F: include/media/atmel-isi.h
1432
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001433ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001434M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001435L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001437F: drivers/video/atmel_lcdfb.c
1438F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001439
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001440ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001441M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001442S: Supported
Jeff Kirsher9f2f381f2011-06-18 01:52:36 -07001443F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001444
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001445ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001446M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001447S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001448F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001449
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001450ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1451M: Nicolas Ferre <nicolas.ferre@atmel.com>
1452L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1453S: Supported
1454F: drivers/misc/atmel_tclib.c
1455F: drivers/clocksource/tcb_clksrc.c
1456
Josh Wuff2675d2012-03-23 17:56:55 +08001457ATMEL TSADCC DRIVER
1458M: Josh Wu <josh.wu@atmel.com>
1459L: linux-input@vger.kernel.org
1460S: Supported
1461F: drivers/input/touchscreen/atmel_tsadcc.c
1462
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001463ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001464M: Nicolas Ferre <nicolas.ferre@atmel.com>
1465L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001466S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001467F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001470M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001471L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472W: http://www.thekelleys.org.uk/atmel
1473W: http://atmelwlandriver.sourceforge.net/
1474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001475F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Chris Wrighta92b7b82005-07-07 18:12:23 -07001477AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001478M: Al Viro <viro@zeniv.linux.org.uk>
1479M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001480L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001481W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001482T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001484F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001485F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001486F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001487
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001488AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001489M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001490W: http://miguelojeda.es/auxdisplay.htm
1491W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001493F: drivers/auxdisplay/
1494F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001495
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001496AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001497M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1498M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001499W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08001500W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001501W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001503F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001504
1505AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001506M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1507M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001509F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001512M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001514W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001516F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07001517F: include/net/ax25.h
1518F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001520AZ6007 DVB DRIVER
1521M: Mauro Carvalho Chehab <mchehab@redhat.com>
1522L: linux-media@vger.kernel.org
1523W: http://linuxtv.org
1524T: git git://linuxtv.org/media_tree.git
1525S: Maintained
1526F: drivers/media/usb/dvb-usb-v2/az6007.c
1527
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001528B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001529M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001530L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001531L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001532W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001534F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001535
1536B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001537M: Larry Finger <Larry.Finger@lwfinger.net>
1538M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001539L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001540L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001541W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001543F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001544
Richard Purdie300abeb2007-02-07 22:21:07 +00001545BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001546M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001548F: drivers/video/backlight/
1549F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001550
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001551BATMAN ADVANCED
1552M: Marek Lindner <lindner_marek@yahoo.de>
1553M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001554M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001555L: b.a.t.m.a.n@lists.open-mesh.org
1556W: http://www.open-mesh.org/
1557S: Maintained
1558F: net/batman-adv/
1559
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001560BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001561M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001562L: linux-hams@vger.kernel.org
1563W: http://www.baycom.org/~tom/ham/ham.html
1564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001565F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001566
1567BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001568S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001569F: Documentation/filesystems/befs.txt
1570F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001571
1572BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001573M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001575F: Documentation/filesystems/bfs.txt
1576F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001577F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001578
Bryan Wu1394f032007-05-06 14:50:22 -07001579BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001580M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001581L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001582W: http://blackfin.uclinux.org
1583S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001584F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001585
Bryan Wue190d6b2007-07-17 14:43:44 +08001586BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001587L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001588W: http://blackfin.uclinux.org
1589S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001590F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001591
Mike Frysinger566da5b2007-06-11 15:31:30 +08001592BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001593M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001594L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001595W: http://blackfin.uclinux.org
1596S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001597F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001598
Mike Frysinger936ed492010-03-10 15:20:38 -08001599BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001600M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001601L: uclinux-dist-devel@blackfin.uclinux.org
1602W: http://blackfin.uclinux.org
1603S: Supported
1604F: drivers/mmc/host/bfin_sdh.c
1605
Bryan Wu1394f032007-05-06 14:50:22 -07001606BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001607M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001608L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001609W: http://blackfin.uclinux.org
1610S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001611F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001612
Bryan Wu1e6d3202007-07-15 02:50:02 +08001613BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001614M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001615L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001616W: http://blackfin.uclinux.org
1617S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001618F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001619
Bryan Wud24ecfc2007-05-01 23:26:32 +02001620BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001621M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001622L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001623W: http://blackfin.uclinux.org/
1624S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001625F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001626
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001627BLINKM RGB LED DRIVER
1628M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1629S: Maintained
1630F: drivers/leds/leds-blinkm.c
1631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001633M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001634T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001636F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
Joern Engel2b54aae2008-02-06 01:38:02 -08001638BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001639M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001640L: linux-mtd@lists.infradead.org
1641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001642F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001643
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001644BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001645M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001646M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001647M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001648L: linux-bluetooth@vger.kernel.org
1649W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001650T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1651T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001653F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001654
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001656M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001657M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001658M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001659L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001660W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001661T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1662T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001664F: net/bluetooth/
1665F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001668M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001669M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001670L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001671W: http://sourceforge.net/projects/bonding/
1672S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001673F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001674F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
Gary Zambrano39105892006-06-22 17:26:20 -07001676BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001677M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001678L: netdev@vger.kernel.org
1679S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001680F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001681
Michael Chan948c51e2006-06-04 02:51:39 -07001682BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001683M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001684L: netdev@vger.kernel.org
1685S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001686F: drivers/net/ethernet/broadcom/bnx2.*
1687F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001688
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001689BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001690M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001691L: netdev@vger.kernel.org
1692S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001693F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001694
Stephen Warrenf680f252012-09-15 00:18:54 -06001695BROADCOM BCM2835 ARM ARCHICTURE
1696M: Stephen Warren <swarren@wwwdotorg.org>
1697L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1698T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1699S: Maintained
1700F: arch/arm/mach-bcm2835/
1701F: arch/arm/boot/dts/bcm2835*
1702F: arch/arm/configs/bcm2835_defconfig
1703F: drivers/*/*bcm2835*
1704
Michael Chan948c51e2006-06-04 02:51:39 -07001705BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001706M: Matt Carlson <mcarlson@broadcom.com>
1707M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001708L: netdev@vger.kernel.org
1709S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001710F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001711
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001712BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1713M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001714M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001715M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001716M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001717L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001718L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001719S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001720F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001721
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001722BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1723M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1724L: linux-scsi@vger.kernel.org
1725S: Supported
1726F: drivers/scsi/bnx2fc/
1727
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001728BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1729M: Rafał Miłecki <zajec5@gmail.com>
1730L: linux-wireless@vger.kernel.org
1731S: Maintained
1732F: drivers/bcma/
1733F: include/linux/bcma/
1734
Jing Huang7725ccf2009-09-23 17:46:15 -07001735BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001736M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001737L: linux-scsi@vger.kernel.org
1738S: Supported
1739F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001740
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001741BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1742M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001743L: netdev@vger.kernel.org
1744S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001745F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001746
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001747BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001748M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001749L: linux-scsi@vger.kernel.org
1750S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001751F: block/bsg.c
1752F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001753F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001754
Clemens Ladischaf399172011-01-10 16:32:54 +01001755BT87X AUDIO DRIVER
1756M: Clemens Ladisch <clemens@ladisch.de>
1757L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1758T: git git://git.alsa-project.org/alsa-kernel.git
1759S: Maintained
1760F: Documentation/sound/alsa/Bt87x.txt
1761F: sound/pci/bt87x.c
1762
Michael Bueschff1d5c22008-07-25 01:46:10 -07001763BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001764M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001765W: http://bu3sch.de/btgpio.php
1766S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001767F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001768
Joe Percheseb1eb042009-01-21 10:49:16 -05001769BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001770M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001771L: linux-btrfs@vger.kernel.org
1772W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001773Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001774T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001776F: Documentation/filesystems/btrfs.txt
1777F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001780M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001781L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001782W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001783T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001784S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001785F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001786F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Clemens Ladischaf399172011-01-10 16:32:54 +01001788C-MEDIA CMI8788 DRIVER
1789M: Clemens Ladisch <clemens@ladisch.de>
1790L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1791T: git git://git.alsa-project.org/alsa-kernel.git
1792S: Maintained
1793F: sound/pci/oxygen/
1794
Mark Salter21413552011-10-04 11:21:42 -04001795C6X ARCHITECTURE
1796M: Mark Salter <msalter@redhat.com>
1797M: Aurelien Jacquiot <a-jacquiot@ti.com>
1798L: linux-c6x-dev@linux-c6x.org
1799W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1800S: Maintained
1801F: arch/c6x/
1802
David Howellsa5432f5a2009-04-20 15:46:45 +01001803CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001804M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01001805L: linux-cachefs@redhat.com
1806S: Supported
1807F: Documentation/filesystems/caching/cachefiles.txt
1808F: fs/cachefiles/
1809
Jonathan Corbet77d51402007-03-22 19:44:17 -03001810CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001811M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001812L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001813T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001815F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001816F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001817
Joe Perches201b6ba2010-09-07 20:33:24 +00001818CAIF NETWORK LAYER
1819M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1820L: netdev@vger.kernel.org
1821S: Supported
1822F: Documentation/networking/caif/
1823F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001824F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00001825F: include/net/caif/
1826F: net/caif/
1827
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001828CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001829M: Muli Ben-Yehuda <muli@il.ibm.com>
1830M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001831L: discuss@x86-64.org
1832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001833F: arch/x86/kernel/pci-calgary_64.c
1834F: arch/x86/kernel/tce_64.c
1835F: arch/x86/include/asm/calgary.h
1836F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001837
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001838CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001839M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001840L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001841W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001842T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001843S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001844F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001845F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001846F: include/uapi/linux/can.h
1847F: include/uapi/linux/can/bcm.h
1848F: include/uapi/linux/can/raw.h
1849F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001850
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001851CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001852M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001853M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001854L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001855W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001856T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001857S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001858F: drivers/net/can/
1859F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001860F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001861F: include/uapi/linux/can/error.h
1862F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001863
James Morris95d16c72012-03-16 12:05:48 +11001864CAPABILITIES
1865M: Serge Hallyn <serge.hallyn@canonical.com>
1866L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001867S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001868F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001869F: include/uapi/linux/capability.h
James Morris95d16c72012-03-16 12:05:48 +11001870F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001871F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001872F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001873
Arnd Bergmannb8154542008-05-16 11:10:59 +02001874CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001875M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001876L: linuxppc-dev@lists.ozlabs.org
1877L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001878W: http://www.ibm.com/developerworks/power/cell/
1879S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001880F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001881F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001882F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07001883F: arch/powerpc/oprofile/*cell*
1884F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001885
Sage Weil9030aaf2009-10-06 11:31:15 -07001886CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001887M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001888L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001889W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001890T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001891S: Supported
1892F: Documentation/filesystems/ceph.txt
1893F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001894F: net/ceph
1895F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001896F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001897
David Vrabel18332a82008-09-17 16:34:44 +01001898CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001899L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001900S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001901F: Documentation/usb/WUSB-Design-overview.txt
1902F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001903F: drivers/usb/host/hwa-hc.c
1904F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001905F: drivers/usb/wusbcore/
1906F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001907
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001908CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001909M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001910W: http://miguelojeda.es/auxdisplay.htm
1911W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001913F: drivers/auxdisplay/cfag12864b.c
1914F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001915
1916CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001917M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001918W: http://miguelojeda.es/auxdisplay.htm
1919W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001921F: drivers/auxdisplay/cfag12864bfb.c
1922F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001923
Johannes Berg704232c2007-04-23 12:20:05 -07001924CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001925M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001926L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001927W: http://wireless.kernel.org/
1928T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1929T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001930S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001931F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07001932F: include/net/cfg80211.h
1933F: net/wireless/*
1934X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001935
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001936CHAR and MISC DRIVERS
1937M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001938M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001939T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001940S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001941F: drivers/char/*
1942F: drivers/misc/*
1943
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001944CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001945M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001946S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001947F: scripts/checkpatch.pl
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001948
Harry Weif8407f262011-02-25 14:44:15 -08001949CHINESE DOCUMENTATION
1950M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08001951L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08001952L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1953S: Maintained
1954F: Documentation/zh_CN/
1955
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001956CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1957M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1958L: linux-usb@vger.kernel.org
1959S: Maintained
1960F: drivers/usb/chipidea/
1961
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001962CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001963M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001964M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001965M: Neel Patel <neepatel@cisco.com>
1966M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001967S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001968F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001969
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001970CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001971M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001972L: netdev@vger.kernel.org
1973S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001974F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001975
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001976CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001977M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001978L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001980F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001981
Timur Tabid9e9d822008-04-24 08:45:26 +10001982CIRRUS LOGIC CS4270 SOUND DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06001983M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07001984L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabic4ef9bc2013-01-15 14:19:45 -06001985S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07001986F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001987
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001988CLEANCACHE API
1989M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1990L: linux-kernel@vger.kernel.org
1991S: Maintained
1992F: mm/cleancache.c
1993F: include/linux/cleancache.h
1994
Russell Kingd4275352009-04-16 14:05:27 +01001995CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001996M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001997S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001998F: include/linux/clk.h
1999
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002000CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002001M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002002M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
2003M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002004L: linux-scsi@vger.kernel.org
2005S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002006F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002007
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002008CMPC ACPI DRIVER
2009M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2010M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd09448532010-02-11 10:40:13 -05002011L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002012S: Supported
2013F: drivers/platform/x86/classmate-laptop.c
2014
Nicolas Palix74425ee2010-06-06 17:15:01 +02002015COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002016M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002017M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002018M: Nicolas Palix <nicolas.palix@imag.fr>
2019L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002020W: http://coccinelle.lip6.fr/
2021S: Supported
2022F: scripts/coccinelle/
2023F: scripts/coccicheck
2024
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002026M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027M: coda@cs.cmu.edu
2028L: codalist@coda.cs.cmu.edu
2029W: http://www.coda.cs.cmu.edu/
2030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002031F: Documentation/filesystems/coda.txt
2032F: fs/coda/
2033F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002034F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
Mike Turquette7704add2012-05-02 18:37:45 -07002036COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002037M: Mike Turquette <mturquette@linaro.org>
2038L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2039T: git git://git.linaro.org/people/mturquette/linux.git
2040S: Maintained
2041F: drivers/clk/clk.c
2042F: drivers/clk/clk-*
2043F: include/linux/clk-pr*
2044
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002045COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002046M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002047L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002048L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002049W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002050Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002051T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002052S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002053F: Documentation/filesystems/cifs.txt
2054F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002055
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002057M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002058L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002060F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
2062COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002063M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002064L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002066F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
2068COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002069M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002070L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002072F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002074COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002075M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05002076L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002078F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002079
Simon Arlott949be0f2007-03-06 02:47:46 -08002080CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002081M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002082L: accessrunner-general@lists.sourceforge.net
2083W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002085F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002086
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002087CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002088M: Joel Becker <jlbec@evilplan.org>
2089T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002090S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002091F: fs/configfs/
2092F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002093
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002094CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002095M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002096L: netdev@vger.kernel.org
2097S: Maintained
2098F: drivers/connector/
2099
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002100CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002101M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002102M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002103L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002104L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002105T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002107F: include/linux/cgroup*
2108F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002109F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002110
Rudolf Marekbebe4672007-05-08 17:22:02 +02002111CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002112M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002113L: lm-sensors@lm-sensors.org
2114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002115F: Documentation/hwmon/coretemp
2116F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002117
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002119M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120W: http://www.fi.muni.cz/~kas/cosa/
2121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002122F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Florian Fainelli4371ee32009-06-01 02:43:17 -07002124CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002125M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002126L: netdev@vger.kernel.org
2127S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002128F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002131M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002132L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002133L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002135F: drivers/cpufreq/
2136F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
2138CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002139M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002141F: arch/x86/kernel/cpuid.c
2142F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002144CPU POWER MONITORING SUBSYSTEM
2145M: Dominik Brodowski <linux@dominikbrodowski.net>
2146M: Thomas Renninger <trenn@suse.de>
2147S: Maintained
2148F: tools/power/cpupower
2149
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002150CPUSETS
Li Zefanf47b89c2013-01-11 17:29:17 +08002151M: Li Zefan <lizefan@huawei.com>
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002152W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002153W: http://oss.sgi.com/projects/cpusets/
Li Zefanf47b89c2013-01-11 17:29:17 +08002154S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002155F: Documentation/cgroups/cpusets.txt
2156F: include/linux/cpuset.h
2157F: kernel/cpuset.c
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002158
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002160W: http://sourceforge.net/projects/cramfs/
2161S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002162F: Documentation/filesystems/cramfs.txt
2163F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
2165CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002166M: Mikael Starvik <starvik@axis.com>
2167M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002168L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169W: http://developer.axis.com
2170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002171F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002172F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
2174CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002175M: Herbert Xu <herbert@gondor.apana.org.au>
2176M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002178T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002180F: Documentation/crypto/
2181F: arch/*/crypto/
2182F: crypto/
2183F: drivers/crypto/
2184F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Neil Horman5b07bd52009-02-05 16:03:04 +11002186CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002187M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002188L: linux-crypto@vger.kernel.org
2189S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002190F: crypto/ansi_cprng.c
2191F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002192
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002193CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002194M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002195S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002196F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002197
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002198CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002199M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002200L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002201L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002202T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002203W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002204W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002206F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002207F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002208F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002209
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002210CX88 VIDEO4LINUX DRIVER
2211M: Mauro Carvalho Chehab <mchehab@redhat.com>
2212L: linux-media@vger.kernel.org
2213W: http://linuxtv.org
2214T: git git://linuxtv.org/media_tree.git
2215S: Odd fixes
2216F: Documentation/video4linux/cx88/
2217F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002218
Antti Palosaari91952bc2012-10-01 12:28:46 -03002219CXD2820R MEDIA DRIVER
2220M: Antti Palosaari <crope@iki.fi>
2221L: linux-media@vger.kernel.org
2222W: http://linuxtv.org/
2223W: http://palosaari.fi/linux/
2224Q: http://patchwork.linuxtv.org/project/linux-media/list/
2225T: git git://linuxtv.org/anttip/media_tree.git
2226S: Maintained
2227F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002228
Steve Wisee5ec3782008-05-20 14:06:33 -07002229CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002230M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002231L: netdev@vger.kernel.org
2232W: http://www.chelsio.com
2233S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002234F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002235
2236CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002237M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002238L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002239W: http://www.openfabrics.org
2240S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002241F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002242
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002243CXGB4 ETHERNET DRIVER (CXGB4)
2244M: Dimitris Michailidis <dm@chelsio.com>
2245L: netdev@vger.kernel.org
2246W: http://www.chelsio.com
2247S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002248F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002249
2250CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2251M: Steve Wise <swise@chelsio.com>
2252L: linux-rdma@vger.kernel.org
2253W: http://www.openfabrics.org
2254S: Supported
2255F: drivers/infiniband/hw/cxgb4/
2256
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002257CXGB4VF ETHERNET DRIVER (CXGB4VF)
2258M: Casey Leedom <leedom@chelsio.com>
2259L: netdev@vger.kernel.org
2260W: http://www.chelsio.com
2261S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002262F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002263
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002264STMMAC ETHERNET DRIVER
2265M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2266L: netdev@vger.kernel.org
2267W: http://www.stlinux.com
2268S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002269F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002270
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002272M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002273L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274W: http://www.arm.linux.org.uk/
2275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002276F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002277
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002279M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002280W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002282F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
2284CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002286S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002287F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002288F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002289F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
2291CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002293S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002294F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002296CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002297M: Javier Martinez Canillas <javier@dowhile0.org>
2298L: linux-input@vger.kernel.org
2299S: Maintained
2300F: drivers/input/touchscreen/cyttsp*
2301F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002302
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002304M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305W: http://yaina.de/jreuter/
2306W: http://www.qsl.net/dl1bke/
2307L: linux-hams@vger.kernel.org
2308S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002309F: net/ax25/af_ax25.c
2310F: net/ax25/ax25_dev.c
2311F: net/ax25/ax25_ds_*
2312F: net/ax25/ax25_in.c
2313F: net/ax25/ax25_out.c
2314F: net/ax25/ax25_timer.c
2315F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002317DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002318L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002319S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002320F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002321F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002322
2323DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002324M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002325W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002326M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002328F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002329
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002331M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002332M: Ali Akcaagac <aliakc@web.de>
2333M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002335L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336L: http://lists.twibble.org/mailman/listinfo/dc395x/
2337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002338F: Documentation/scsi/dc395x.txt
2339F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002341DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002342M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002343L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002344W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002346F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002347F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07002348F: include/linux/tfrc.h
2349F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002350
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352W: http://linux-decnet.sourceforge.net
2353L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002354S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002355F: Documentation/networking/decnet.txt
2356F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
2358DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002359M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002361F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002363DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002364M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05002365L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002367F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002368
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002370M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371W: http://www.debian.org/~dz/i8k/
2372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002373F: drivers/char/i8k.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002374F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375
Doug Warzecha90563ec2005-09-06 15:17:15 -07002376DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002377M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002379F: Documentation/dcdbas.txt
2380F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002381
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002382DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002383M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002384S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002385F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002386
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002387DESIGNWARE USB3 DRD IP DRIVER
2388M: Felipe Balbi <balbi@ti.com>
2389L: linux-usb@vger.kernel.org
2390L: linux-omap@vger.kernel.org
2391T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2392S: Maintained
2393F: drivers/usb/dwc3/
2394
Kyungmin Park89d07762012-01-10 15:09:09 -08002395DEVICE FREQUENCY (DEVFREQ)
2396M: MyungJoo Ham <myungjoo.ham@samsung.com>
2397M: Kyungmin Park <kyungmin.park@samsung.com>
2398L: linux-kernel@vger.kernel.org
2399S: Maintained
2400F: drivers/devfreq/
2401
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002403M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405S: Maintained
2406
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002407DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002408M: Alasdair Kergon <agk@redhat.com>
2409M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002410L: dm-devel@redhat.com
2411W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002412Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002413T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002415F: Documentation/device-mapper/
2416F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002417F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002418F: include/linux/device-mapper.h
2419F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002420
Guenter Roeck335d7c52011-01-26 11:45:49 -08002421DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002422M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002423L: linux-i2c@vger.kernel.org
2424S: Maintained
2425F: drivers/i2c/busses/i2c-diolan-u2c.c
2426
Randy Dunlape7839f22008-10-12 16:11:45 -07002427DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002428M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002430F: Documentation/filesystems/dnotify.txt
2431F: fs/notify/dnotify/
2432F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
2434DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002435M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2437W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2438W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2439S: Maintained
2440
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002441DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002442M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002444F: Documentation/filesystems/quota.txt
2445F: fs/quota/
2446F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002447F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
Bernie Thompson702686a2012-03-01 13:52:13 -08002449DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2450M: Bernie Thompson <bernie@plugable.com>
2451L: linux-fbdev@vger.kernel.org
2452S: Maintained
2453W: http://plugable.com/category/projects/udlfb/
2454F: drivers/video/udlfb.c
2455F: include/video/udlfb.h
2456F: Documentation/fb/udlfb.txt
2457
Randy Dunlape7839f22008-10-12 16:11:45 -07002458DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002459M: Christine Caulfield <ccaulfie@redhat.com>
2460M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002461L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002462W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002463T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002464S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002465F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002466
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302467DMA BUFFER SHARING FRAMEWORK
2468M: Sumit Semwal <sumit.semwal@linaro.org>
2469S: Maintained
2470L: linux-media@vger.kernel.org
2471L: dri-devel@lists.freedesktop.org
2472L: linaro-mm-sig@lists.linaro.org
2473F: drivers/base/dma-buf*
2474F: include/linux/dma-buf*
2475F: Documentation/dma-buf-sharing.txt
2476T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2477
Dan Williamsb3e5f262007-08-07 10:26:35 -07002478DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002479M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002480M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002481S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002482F: drivers/dma/
2483F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302484T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2485T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002486
Juerg Haefligerb8250372007-06-09 10:11:16 -04002487DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002488M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002489L: lm-sensors@lm-sensors.org
2490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002491F: Documentation/hwmon/dme1737
2492F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002493
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002494DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002495M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002496L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002497S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002498F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002499
Joe Perches7d2c86b2009-04-07 20:59:01 -07002500DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002501M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002502L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002503T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002505F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002506
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002508M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509L: blinux-list@redhat.com
2510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002511F: drivers/char/dtlk.c
2512F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002514DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002515M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002516L: linux-scsi@vger.kernel.org
2517W: http://www.adaptec.com/
2518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002519F: drivers/scsi/dpt*
2520F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002521
Philipp Reisnerb411b362009-09-25 16:07:19 -07002522DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002523P: Philipp Reisner
2524P: Lars Ellenberg
2525M: drbd-dev@lists.linbit.com
2526L: drbd-user@lists.linbit.com
2527W: http://www.drbd.org
2528T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2529T: git git://git.drbd.org/drbd-8.3.git
2530S: Supported
2531F: drivers/block/drbd/
2532F: lib/lru_cache.c
2533F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002534
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002535DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002536M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002537T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002539F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002540F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002541F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002542F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002543F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002544F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002545F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
2547DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002548M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002549L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002550T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002552F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002553F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002554F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
Chris Wilson8daf7472010-09-28 14:07:26 +01002556INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002557M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002558L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002559L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002560T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002561S: Supported
2562F: drivers/gpu/drm/i915
2563F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002564F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01002565
Kyungmin Park398a6d42011-11-02 11:33:16 +09002566DRM DRIVERS FOR EXYNOS
2567M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002568M: Joonyoung Shim <jy0922.shim@samsung.com>
2569M: Seung-Woo Kim <sw0312.kim@samsung.com>
2570M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002571L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002572T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002573S: Supported
2574F: drivers/gpu/drm/exynos
2575F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002576F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09002577
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002578DRM DRIVERS FOR NVIDIA TEGRA
2579M: Thierry Reding <thierry.reding@avionic-design.de>
2580L: dri-devel@lists.freedesktop.org
2581L: linux-tegra@vger.kernel.org
2582T: git git://gitorious.org/thierryreding/linux.git
2583S: Maintained
2584F: drivers/gpu/drm/tegra/
2585F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2586
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002588M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002589L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002591F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
Antti Palosaari91952bc2012-10-01 12:28:46 -03002593DVB_USB_AF9015 MEDIA DRIVER
2594M: Antti Palosaari <crope@iki.fi>
2595L: linux-media@vger.kernel.org
2596W: http://linuxtv.org/
2597W: http://palosaari.fi/linux/
2598Q: http://patchwork.linuxtv.org/project/linux-media/list/
2599T: git git://linuxtv.org/anttip/media_tree.git
2600S: Maintained
2601F: drivers/media/usb/dvb-usb-v2/af9015*
2602
2603DVB_USB_AF9035 MEDIA DRIVER
2604M: Antti Palosaari <crope@iki.fi>
2605L: linux-media@vger.kernel.org
2606W: http://linuxtv.org/
2607W: http://palosaari.fi/linux/
2608Q: http://patchwork.linuxtv.org/project/linux-media/list/
2609T: git git://linuxtv.org/anttip/media_tree.git
2610S: Maintained
2611F: drivers/media/usb/dvb-usb-v2/af9035*
2612
2613DVB_USB_ANYSEE MEDIA DRIVER
2614M: Antti Palosaari <crope@iki.fi>
2615L: linux-media@vger.kernel.org
2616W: http://linuxtv.org/
2617W: http://palosaari.fi/linux/
2618Q: http://patchwork.linuxtv.org/project/linux-media/list/
2619T: git git://linuxtv.org/anttip/media_tree.git
2620S: Maintained
2621F: drivers/media/usb/dvb-usb-v2/anysee*
2622
2623DVB_USB_AU6610 MEDIA DRIVER
2624M: Antti Palosaari <crope@iki.fi>
2625L: linux-media@vger.kernel.org
2626W: http://linuxtv.org/
2627W: http://palosaari.fi/linux/
2628Q: http://patchwork.linuxtv.org/project/linux-media/list/
2629T: git git://linuxtv.org/anttip/media_tree.git
2630S: Maintained
2631F: drivers/media/usb/dvb-usb-v2/au6610*
2632
2633DVB_USB_CE6230 MEDIA DRIVER
2634M: Antti Palosaari <crope@iki.fi>
2635L: linux-media@vger.kernel.org
2636W: http://linuxtv.org/
2637W: http://palosaari.fi/linux/
2638Q: http://patchwork.linuxtv.org/project/linux-media/list/
2639T: git git://linuxtv.org/anttip/media_tree.git
2640S: Maintained
2641F: drivers/media/usb/dvb-usb-v2/ce6230*
2642
Michael Krufkyd099dea2012-10-02 00:56:20 -03002643DVB_USB_CXUSB MEDIA DRIVER
2644M: Michael Krufky <mkrufky@linuxtv.org>
2645L: linux-media@vger.kernel.org
2646W: http://linuxtv.org/
2647W: http://github.com/mkrufky
2648Q: http://patchwork.linuxtv.org/project/linux-media/list/
2649T: git git://linuxtv.org/media_tree.git
2650S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08002651F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002652
Antti Palosaari91952bc2012-10-01 12:28:46 -03002653DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2654M: Antti Palosaari <crope@iki.fi>
2655L: linux-media@vger.kernel.org
2656W: http://linuxtv.org/
2657W: http://palosaari.fi/linux/
2658Q: http://patchwork.linuxtv.org/project/linux-media/list/
2659T: git git://linuxtv.org/anttip/media_tree.git
2660S: Maintained
2661F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2662
2663DVB_USB_EC168 MEDIA DRIVER
2664M: Antti Palosaari <crope@iki.fi>
2665L: linux-media@vger.kernel.org
2666W: http://linuxtv.org/
2667W: http://palosaari.fi/linux/
2668Q: http://patchwork.linuxtv.org/project/linux-media/list/
2669T: git git://linuxtv.org/anttip/media_tree.git
2670S: Maintained
2671F: drivers/media/usb/dvb-usb-v2/ec168*
2672
Michael Krufky8856f5f2012-10-02 00:55:50 -03002673DVB_USB_MXL111SF MEDIA DRIVER
2674M: Michael Krufky <mkrufky@linuxtv.org>
2675L: linux-media@vger.kernel.org
2676W: http://linuxtv.org/
2677W: http://github.com/mkrufky
2678Q: http://patchwork.linuxtv.org/project/linux-media/list/
2679T: git git://linuxtv.org/mkrufky/mxl111sf.git
2680S: Maintained
2681F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2682
Antti Palosaari91952bc2012-10-01 12:28:46 -03002683DVB_USB_RTL28XXU MEDIA DRIVER
2684M: Antti Palosaari <crope@iki.fi>
2685L: linux-media@vger.kernel.org
2686W: http://linuxtv.org/
2687W: http://palosaari.fi/linux/
2688Q: http://patchwork.linuxtv.org/project/linux-media/list/
2689T: git git://linuxtv.org/anttip/media_tree.git
2690S: Maintained
2691F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2692
2693DVB_USB_V2 MEDIA DRIVER
2694M: Antti Palosaari <crope@iki.fi>
2695L: linux-media@vger.kernel.org
2696W: http://linuxtv.org/
2697W: http://palosaari.fi/linux/
2698Q: http://patchwork.linuxtv.org/project/linux-media/list/
2699T: git git://linuxtv.org/anttip/media_tree.git
2700S: Maintained
2701F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2702F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2703
Jason Baronac0ac382011-08-11 14:36:43 -04002704DYNAMIC DEBUG
2705M: Jason Baron <jbaron@redhat.com>
2706S: Maintained
2707F: lib/dynamic_debug.c
2708F: include/linux/dynamic_debug.h
2709
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002710DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002711M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002712S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002713F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002714
Antti Palosaari91952bc2012-10-01 12:28:46 -03002715E4000 MEDIA DRIVER
2716M: Antti Palosaari <crope@iki.fi>
2717L: linux-media@vger.kernel.org
2718W: http://linuxtv.org/
2719W: http://palosaari.fi/linux/
2720Q: http://patchwork.linuxtv.org/project/linux-media/list/
2721T: git git://linuxtv.org/anttip/media_tree.git
2722S: Maintained
2723F: drivers/media/tuners/e4000*
2724
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002726M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002727L: linux-eata@i-connect.net
2728L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002730F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731
2732EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002733M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734L: linux-scsi@vger.kernel.org
2735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002736F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737
2738EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002739M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002740L: linux-eata@i-connect.net
2741L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002743F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744
2745EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002746M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002747L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748W: http://ebtables.sourceforge.net/
2749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002750F: include/linux/netfilter_bridge/ebt_*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002751F: include/uapi/linux/netfilter_bridge/ebt_*.h
Joe Perches679655d2009-04-07 20:44:32 -07002752F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Antti Palosaari91952bc2012-10-01 12:28:46 -03002754EC100 MEDIA DRIVER
2755M: Antti Palosaari <crope@iki.fi>
2756L: linux-media@vger.kernel.org
2757W: http://linuxtv.org/
2758W: http://palosaari.fi/linux/
2759Q: http://patchwork.linuxtv.org/project/linux-media/list/
2760T: git git://linuxtv.org/anttip/media_tree.git
2761S: Maintained
2762F: drivers/media/dvb-frontends/ec100*
2763
Michael Halcrow237fead2006-10-04 02:16:22 -07002764ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002765M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002766M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002767L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002768W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002769S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002770F: Documentation/filesystems/ecryptfs.txt
2771F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002772
Alan Coxda9bb1d2006-01-18 17:44:13 -08002773EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002774M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002775L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002776W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002777S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002778F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002779F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002780F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002781
Borislav Petkovc476c232009-05-20 20:31:58 +02002782EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002783M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002784M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002785L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002786W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002787S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002788F: drivers/edac/amd64_edac*
2789
Ralf Baechlef65aad42012-10-17 00:39:09 +02002790EDAC-CAVIUM
2791M: Ralf Baechle <ralf@linux-mips.org>
2792M: David Daney <david.daney@cavium.com>
2793L: linux-edac@vger.kernel.org
2794L: linux-mips@linux-mips.org
2795W: bluesmoke.sourceforge.net
2796S: Supported
2797F: drivers/edac/octeon_edac*
2798
Dave Peterson0e438e32006-03-26 01:38:55 -08002799EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002800M: Mark Gross <mark.gross@intel.com>
2801M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002802L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002803W: bluesmoke.sourceforge.net
2804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002805F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002806
2807EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002808M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002809L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002810W: bluesmoke.sourceforge.net
2811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002812F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002813
Douglas Thompson6bc78402007-07-19 01:50:12 -07002814EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002815M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002816L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002817W: bluesmoke.sourceforge.net
2818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002819F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002820
2821EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002822M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002823L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002824W: bluesmoke.sourceforge.net
2825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002826F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002827
2828EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002829M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002830L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002831W: bluesmoke.sourceforge.net
2832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002833F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002834
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002835EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002836M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002837L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002838W: bluesmoke.sourceforge.net
2839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002840F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002841
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002842EDAC-I7300
2843M: Mauro Carvalho Chehab <mchehab@redhat.com>
2844L: linux-edac@vger.kernel.org
2845W: bluesmoke.sourceforge.net
2846S: Maintained
2847F: drivers/edac/i7300_edac.c
2848
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002849EDAC-I7CORE
2850M: Mauro Carvalho Chehab <mchehab@redhat.com>
2851L: linux-edac@vger.kernel.org
2852W: bluesmoke.sourceforge.net
2853S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002854F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002855
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002856EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002857M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302858M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002859L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002860W: bluesmoke.sourceforge.net
2861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002862F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002863
2864EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002865M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002866L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002867W: bluesmoke.sourceforge.net
2868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002869F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002870
Dave Peterson0e438e32006-03-26 01:38:55 -08002871EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002872M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002873L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002874W: bluesmoke.sourceforge.net
2875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002876F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002877
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002878EDAC-SBRIDGE
2879M: Mauro Carvalho Chehab <mchehab@redhat.com>
2880L: linux-edac@vger.kernel.org
2881W: bluesmoke.sourceforge.net
2882S: Maintained
2883F: drivers/edac/sb_edac.c
2884
Clemens Ladischaf399172011-01-10 16:32:54 +01002885EDIROL UA-101/UA-1000 DRIVER
2886M: Clemens Ladisch <clemens@ladisch.de>
2887L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2888T: git git://git.alsa-project.org/alsa-kernel.git
2889S: Maintained
2890F: sound/usb/misc/ua101.c
2891
Matt Fleming1f7df952012-10-03 10:04:02 +01002892EXTENSIBLE FIRMWARE INTERFACE (EFI)
2893M: Matt Fleming <matt.fleming@intel.com>
2894L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002895T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002896S: Maintained
2897F: Documentation/x86/efi-stub.txt
2898F: arch/ia64/kernel/efi.c
2899F: arch/x86/boot/compressed/eboot.[ch]
2900F: arch/x86/include/asm/efi.h
2901F: arch/x86/platform/efi/*
2902F: drivers/firmware/efivars.c
2903F: include/linux/efi*.h
2904
Peter Jones85a00d92010-09-22 13:05:04 -07002905EFIFB FRAMEBUFFER DRIVER
2906L: linux-fbdev@vger.kernel.org
2907M: Peter Jones <pjones@redhat.com>
2908S: Maintained
2909F: drivers/video/efifb.c
2910
Josh Triplett0bee8d22006-07-30 03:03:58 -07002911EFS FILESYSTEM
2912W: http://aeschi.ch.eu.org/efs/
2913S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002914F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002915
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002916EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002917M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2918M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002919L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002920S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002921F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002922
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002923EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002924M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002925L: netdev@vger.kernel.org
2926S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002927F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002928
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02002929EM28XX VIDEO4LINUX DRIVER
2930M: Mauro Carvalho Chehab <mchehab@redhat.com>
2931L: linux-media@vger.kernel.org
2932W: http://linuxtv.org
2933T: git git://linuxtv.org/media_tree.git
2934S: Maintained
2935F: drivers/media/usb/em28xx/
2936
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002937EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002938M: Paul Gortmaker <paul.gortmaker@windriver.com>
2939M: Matt Mackall <mpm@selenic.com>
2940M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002941L: linux-embedded@vger.kernel.org
2942S: Maintained
2943
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002944EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002945M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002946L: linux-scsi@vger.kernel.org
2947W: http://sourceforge.net/projects/lpfcxxxx
2948S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002949F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002950
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002951ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002952M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002953S: Maintained
2954F: drivers/misc/cb710/
2955F: drivers/mmc/host/cb710-mmc.*
2956F: include/linux/cb710.h
2957
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002958ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2959M: Maxim Levitsky <maximlevitsky@gmail.com>
2960S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002961F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002962
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002963EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002964M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002965S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002966T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002967F: drivers/video/s1d13xxxfb.c
2968F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002969
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002971M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002972L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002974F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
2976ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08002977M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07002978L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002979L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002980W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002982F: include/linux/netfilter_bridge/
2983F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002986M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002987L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002989F: Documentation/filesystems/ext2.txt
2990F: fs/ext2/
2991F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
2993EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002994M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002995M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002996M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002997L: linux-ext4@vger.kernel.org
2998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002999F: Documentation/filesystems/ext3.txt
3000F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08003001
3002EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003003M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003004M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003005L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003006W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003007Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003009F: Documentation/filesystems/ext4.txt
3010F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011
Mimi Zoharc5532b02011-08-17 18:52:24 -04003012Extended Verification Module (EVM)
3013M: Mimi Zohar <zohar@us.ibm.com>
3014S: Supported
3015F: security/integrity/evm/
3016
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003017EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3018M: MyungJoo Ham <myungjoo.ham@samsung.com>
3019M: Chanwoo Choi <cw00.choi@samsung.com>
3020L: linux-kernel@vger.kernel.org
3021S: Maintained
3022F: drivers/extcon/
3023F: Documentation/extcon/
3024
Jingoo Han0a799512012-02-06 11:30:39 +09003025EXYNOS DP DRIVER
3026M: Jingoo Han <jg1.han@samsung.com>
3027L: linux-fbdev@vger.kernel.org
3028S: Maintained
3029F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003030F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003031
Donghwa Lee33ad3912012-03-06 11:44:58 +09003032EXYNOS MIPI DISPLAY DRIVERS
3033M: Inki Dae <inki.dae@samsung.com>
3034M: Donghwa Lee <dh09.lee@samsung.com>
3035M: Kyungmin Park <kyungmin.park@samsung.com>
3036L: linux-fbdev@vger.kernel.org
3037S: Maintained
3038F: drivers/video/exynos/exynos_mipi*
3039F: include/video/exynos_mipi*
3040
Jean Delvaree53004e2006-01-09 23:26:14 +01003041F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003042M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003043L: lm-sensors@lm-sensors.org
3044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003045F: Documentation/hwmon/f71805f
3046F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003047
Michael Büscheea977e2012-04-02 12:14:32 -03003048FC0011 TUNER DRIVER
3049M: Michael Buesch <m@bues.ch>
3050L: linux-media@vger.kernel.org
3051S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003052F: drivers/media/tuners/fc0011.h
3053F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003054
Antti Palosaari91952bc2012-10-01 12:28:46 -03003055FC2580 MEDIA DRIVER
3056M: Antti Palosaari <crope@iki.fi>
3057L: linux-media@vger.kernel.org
3058W: http://linuxtv.org/
3059W: http://palosaari.fi/linux/
3060Q: http://patchwork.linuxtv.org/project/linux-media/list/
3061T: git git://linuxtv.org/anttip/media_tree.git
3062S: Maintained
3063F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064
Eric Paris88b2dbd2010-08-18 12:25:50 -04003065FANOTIFY
3066M: Eric Paris <eparis@redhat.com>
3067S: Maintained
3068F: fs/notify/fanotify/
3069F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003070F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04003071
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003073M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074W: http://www.farsite.co.uk/
3075S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003076F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077
Akinobu Mitac5408b82007-04-23 14:41:20 -07003078FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003079M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003080S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003081F: Documentation/fault-injection/
3082F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003083
Robert Lovecae727d2010-02-16 12:16:00 -08003084FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3085M: Robert Love <robert.w.love@intel.com>
3086L: devel@open-fcoe.org
3087W: www.Open-FCoE.org
3088S: Supported
3089F: drivers/scsi/libfc/
3090F: drivers/scsi/fcoe/
3091F: include/scsi/fc/
3092F: include/scsi/libfc.h
3093F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003094F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08003095
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003096FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003097M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003098L: linux-fsdevel@vger.kernel.org
3099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003100F: include/linux/fcntl.h
3101F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003102F: include/uapi/linux/fcntl.h
3103F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07003104F: fs/fcntl.c
3105F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003106
3107FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003108M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003109L: linux-fsdevel@vger.kernel.org
3110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003111F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003112
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003113FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003114M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003115L: lm-sensors@lm-sensors.org
3116S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003117F: drivers/hwmon/f75375s.c
3118F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003119
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003120FIREWIRE AUDIO DRIVERS
3121M: Clemens Ladisch <clemens@ladisch.de>
3122L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3123T: git git://git.alsa-project.org/alsa-kernel.git
3124S: Maintained
3125F: sound/firewire/
3126
Stefan Richtereb86ec52012-11-03 09:25:20 +01003127FIREWIRE MEDIA DRIVERS (firedtv)
3128M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3129L: linux-media@vger.kernel.org
3130L: linux1394-devel@lists.sourceforge.net
3131T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3132S: Maintained
3133F: drivers/media/firewire/
3134
Chris Boota511ce32012-04-14 17:50:35 -07003135FIREWIRE SBP-2 TARGET
3136M: Chris Boot <bootc@bootc.net>
3137L: linux-scsi@vger.kernel.org
3138L: target-devel@vger.kernel.org
3139L: linux1394-devel@lists.sourceforge.net
3140T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3141S: Maintained
3142F: drivers/target/sbp/
3143
Joe Perches7d2c86b2009-04-07 20:59:01 -07003144FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003145M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003146L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003147W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003148T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003150F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003151F: include/linux/firewire.h
3152F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003153F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003154
3155FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003156M: Ming Lei <ming.lei@canonical.com>
3157L: linux-kernel@vger.kernel.org
3158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003159F: Documentation/firmware_class/
3160F: drivers/base/firmware*.c
3161F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003162
Jiri Kosina8206f662012-05-18 13:52:29 +02003163FLOPPY DRIVER
3164M: Jiri Kosina <jkosina@suse.cz>
3165T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3166S: Odd fixes
3167F: drivers/block/floppy.c
3168
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003169FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003170M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003171W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003173F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003174
3175FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003176L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003177S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003178F: drivers/net/wan/dlci.c
3179F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003180
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003182M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003183L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003185Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003186T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003188F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003189F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003190F: drivers/video/
3191F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003192F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003193F: include/uapi/video/
3194F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195
Timur Tabia57c1882012-10-16 17:33:42 -05003196FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003197M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05003198L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003199S: Maintained
Timur Tabia57c1882012-10-16 17:33:42 -05003200F: drivers/video/fsl-diu-fb.*
3201
Zhang Wei173acc72008-03-01 07:42:48 -07003202FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003203M: Li Yang <leoli@freescale.com>
3204M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003205L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003207F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003208
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003209FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003210M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003211L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003212L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003214F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003215
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003216FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003217M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003218L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003219L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003220S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003221F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003222F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003223
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003224FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003225M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3226M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003227L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003228L: netdev@vger.kernel.org
3229S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003230F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003231F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003232
Timur Tabid9e9d822008-04-24 08:45:26 +10003233FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003234L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003235S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003236F: arch/powerpc/sysdev/qe_lib/
3237F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003238
Joe Perchesb55ef9292009-10-26 16:49:46 -07003239FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003240M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003241L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003242L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003243S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003244F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003245
Li Yangbeaf53b2007-05-25 13:54:02 +08003246FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003247M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003248L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003249L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003250S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003251F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003252
Timur Tabid9e9d822008-04-24 08:45:26 +10003253FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003254M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003255L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003256S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003257F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003258
3259FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003260M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07003261L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003262L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003263S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07003264F: sound/soc/fsl/fsl*
3265F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003266
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003268M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003271F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272
Pavel Machek71038f52009-01-15 13:51:02 -08003273FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003274M: Pavel Machek <pavel@ucw.cz>
3275M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003276L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003277S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003278F: Documentation/power/freezing-of-tasks.txt
3279F: include/linux/freezer.h
3280F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003281
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003282FRONTSWAP API
3283M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3284L: linux-kernel@vger.kernel.org
3285S: Maintained
3286F: mm/frontswap.c
3287F: include/linux/frontswap.h
3288
David Howellsa5432f5a2009-04-20 15:46:45 +01003289FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003290M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01003291L: linux-cachefs@redhat.com
3292S: Supported
3293F: Documentation/filesystems/caching/
3294F: fs/fscache/
3295F: include/linux/fscache*.h
3296
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003297F2FS FILE SYSTEM
3298M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3299L: linux-f2fs-devel@lists.sourceforge.net
3300W: http://en.wikipedia.org/wiki/F2FS
3301T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3302S: Maintained
3303F: Documentation/filesystems/f2fs.txt
3304F: fs/f2fs/
3305F: include/linux/f2fs_fs.h
3306
David Howells5ab7ffe2007-04-10 15:10:45 +01003307FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003308M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003310F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311
Jonathan Woithe20b93732008-06-11 10:14:56 +09303312FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303313M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd09448532010-02-11 10:40:13 -05003314L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003316F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303317
Heungjun Kim4da621b62011-11-11 08:05:33 -03003318FUJITSU M-5MO LS CAMERA ISP DRIVER
3319M: Kyungmin Park <kyungmin.park@samsung.com>
3320M: Heungjun Kim <riverful.kim@samsung.com>
3321L: linux-media@vger.kernel.org
3322S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003323F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b62011-11-11 08:05:33 -03003324F: include/media/m5mols.h
3325
Robert Gerlach2d24c492012-01-18 14:26:22 +01003326FUJITSU TABLET EXTRAS
3327M: Robert Gerlach <khnz@gmx.de>
3328L: platform-driver-x86@vger.kernel.org
3329S: Maintained
3330F: drivers/platform/x86/fujitsu-tablet.c
3331
Miklos Szeredi04578f12005-09-09 13:10:22 -07003332FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003333M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003334L: fuse-devel@lists.sourceforge.net
3335W: http://fuse.sourceforge.net/
3336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003337F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003338F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003339
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003341M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003343S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003344F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345
3346GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003347M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348L: linux-scsi@vger.kernel.org
3349W: http://www.icp-vortex.com/
3350S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003351F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003353GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003354M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003355S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003356F: drivers/i2c/busses/i2c-gpio.c
3357F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003358
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003359GENERIC GPIO I2C MULTIPLEXER DRIVER
3360M: Peter Korsgaard <peter.korsgaard@barco.com>
3361L: linux-i2c@vger.kernel.org
3362S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003363F: drivers/i2c/muxes/i2c-mux-gpio.c
3364F: include/linux/i2c-mux-gpio.h
3365F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003366
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003367GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003368M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003371F: drivers/net/wan/c101.c
3372F: drivers/net/wan/hd6457*
3373F: drivers/net/wan/hdlc*
3374F: drivers/net/wan/n2.c
3375F: drivers/net/wan/pc300too.c
3376F: drivers/net/wan/pci200syn.c
3377F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003379GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003380M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003381L: linux-arch@vger.kernel.org
3382T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3383S: Maintained
3384F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003385F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003386
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003387GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003388M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003389L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003390S: Supported
3391F: drivers/uio/uio_pci_generic.c
3392
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003393GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003394M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003395L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003396W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003397T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3398T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003399S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003400F: Documentation/filesystems/gfs2*.txt
3401F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003402F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003403
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003404GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003405M: Hansjoerg Lipp <hjlipp@web.de>
3406M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003407L: gigaset307x-common@lists.sourceforge.net
3408W: http://gigaset307x.sourceforge.net/
3409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003410F: Documentation/isdn/README.gigaset
3411F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003412F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003413
Grant Likelya0dc00b2011-02-12 01:48:14 -07003414GPIO SUBSYSTEM
3415M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003416M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003417S: Maintained
3418T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003419F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003420F: drivers/gpio/
3421F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003422F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003423
Harry Wei71a6d0a2011-05-11 15:13:33 -07003424GRE DEMULTIPLEXER DRIVER
3425M: Dmitry Kozlov <xeb@mail.ru>
3426L: netdev@vger.kernel.org
3427S: Maintained
3428F: net/ipv4/gre.c
3429F: include/net/gre.h
3430
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003431GRETH 10/100/1G Ethernet MAC device driver
3432M: Kristoffer Glembo <kristoffer@gaisler.com>
3433L: netdev@vger.kernel.org
3434S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003435F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003436
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003437GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003438M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003439L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003440T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003441S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003442F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003443
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003444GSPCA GL860 SUBDRIVER
3445M: Olivier Lorin <o.lorin@laposte.net>
3446L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003447T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003448S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003449F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003450
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003451GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003452M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003453L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003454T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003455S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003456F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003457
3458GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003459M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003460L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003461T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003462S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003463F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003464
Brian Johnson261982f2009-07-19 15:58:56 -03003465GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003466M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003467L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003468T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003469S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003470F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003471
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003472GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003473M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003474L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003475T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003476S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003477F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003478
3479GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003480M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003481L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003482T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003483S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003484F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003485
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003486STK1160 USB VIDEO CAPTURE DRIVER
3487M: Ezequiel Garcia <elezegarcia@gmail.com>
3488L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003489T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003490S: Maintained
3491F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003492
Harry Wei71a6d0a2011-05-11 15:13:33 -07003493HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3494M: Frank Seidel <frank@f-seidel.de>
3495L: platform-driver-x86@vger.kernel.org
3496W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3497S: Maintained
3498F: drivers/platform/x86/hdaps.c
3499
3500HWPOISON MEMORY FAILURE HANDLING
3501M: Andi Kleen <andi@firstfloor.org>
3502L: linux-mm@kvack.org
3503T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3504S: Maintained
3505F: mm/memory-failure.c
3506F: mm/hwpoison-inject.c
3507
3508HYPERVISOR VIRTUAL CONSOLE DRIVER
3509L: linuxppc-dev@lists.ozlabs.org
3510S: Odd Fixes
3511F: drivers/tty/hvc/
3512
Michael Buesch844dd052006-06-26 00:24:59 -07003513HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003514M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003515M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003516L: lm-sensors@lm-sensors.org
3517W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003518T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003519T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003520S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003521F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003522F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003523F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003524
3525HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003526M: Matt Mackall <mpm@selenic.com>
3527M: Herbert Xu <herbert@gondor.apana.org.au>
3528S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003529F: Documentation/hw_random.txt
3530F: drivers/char/hw_random/
3531F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003532
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003533HARDWARE SPINLOCK CORE
3534M: Ohad Ben-Cohen <ohad@wizery.com>
3535S: Maintained
3536F: Documentation/hwspinlock.txt
3537F: drivers/hwspinlock/hwspinlock_*
3538F: include/linux/hwspinlock.h
3539
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003541L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003543F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544
Antti Palosaari91952bc2012-10-01 12:28:46 -03003545HD29L2 MEDIA DRIVER
3546M: Antti Palosaari <crope@iki.fi>
3547L: linux-media@vger.kernel.org
3548W: http://linuxtv.org/
3549W: http://palosaari.fi/linux/
3550Q: http://patchwork.linuxtv.org/project/linux-media/list/
3551T: git git://linuxtv.org/anttip/media_tree.git
3552S: Maintained
3553F: drivers/media/dvb-frontends/hd29l2*
3554
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003555HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003556M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003557L: iss_storagedev@hp.com
3558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003559F: Documentation/blockdev/cpqarray.txt
3560F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003561
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003562HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003563M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003564L: iss_storagedev@hp.com
3565S: Supported
3566F: Documentation/scsi/hpsa.txt
3567F: drivers/scsi/hpsa*.[ch]
3568F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003569F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003570
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003571HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003572M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003573L: iss_storagedev@hp.com
3574S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003575F: Documentation/blockdev/cciss.txt
3576F: drivers/block/cciss*
3577F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003578F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003579
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003581L: linux-fsdevel@vger.kernel.org
3582S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003583F: Documentation/filesystems/hfs.txt
3584F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585
3586HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003587M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588L: linux-nvidia@lists.surfsouth.com
3589W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003591F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003593HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003594M: Pavel Machek <pavel@ucw.cz>
3595M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003596L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003597S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003598F: arch/x86/power/
3599F: drivers/base/power/
3600F: kernel/power/
3601F: include/linux/suspend.h
3602F: include/linux/freezer.h
3603F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003604F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003605
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003606HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003607M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003608L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003609T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003611F: drivers/hid/
3612F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003613F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003614
Ingo Molnar38bed542007-02-22 09:09:34 +01003615HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003616M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003617T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003619F: Documentation/timers/
3620F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003621F: kernel/time/clockevents.c
3622F: kernel/time/tick*.*
3623F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003624F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003625F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003626
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003629S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003630F: drivers/net/hamradio/dmascc.c
3631F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003633HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003634M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003635W: http://www.highpoint-tech.com
3636S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003637F: Documentation/scsi/hptiop.txt
3638F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003639
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003641M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642L: linux-hippi@sunsite.dk
3643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003644F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003645F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003646F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003647F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648
Jouni Malinenff1d2762005-05-12 22:54:16 -04003649HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003650M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003651L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003652L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003653W: http://hostap.epitest.fi/
3654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003655F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003656
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003657HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05003658L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003659S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003660F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003661
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003662HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003663M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003664S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003665F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003666
Joe Perches7d2c86b2009-04-07 20:59:01 -07003667HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003668M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003670F: Documentation/timers/hpet.txt
3671F: drivers/char/hpet.c
3672F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003673F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003674
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003675HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003676M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003678F: arch/x86/kernel/hpet.c
3679F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003680
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003682M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003685F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686
Joe Perches7d2c86b2009-04-07 20:59:01 -07003687HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003688M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003689W: http://www.pharscape.org
3690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003691F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003692
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003693HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003694M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003695L: linux-input@vger.kernel.org
3696S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003697F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003698
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003700M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003702F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003704Hyper-V CORE AND DRIVERS
3705M: K. Y. Srinivasan <kys@microsoft.com>
3706M: Haiyang Zhang <haiyangz@microsoft.com>
3707L: devel@linuxdriverproject.org
3708S: Maintained
3709F: drivers/hv/
3710F: drivers/hid/hid-hyperv.c
3711F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003712
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003713I2C OVER PARALLEL PORT
3714M: Jean Delvare <khali@linux-fr.org>
3715L: linux-i2c@vger.kernel.org
3716S: Maintained
3717F: Documentation/i2c/busses/i2c-parport
3718F: Documentation/i2c/busses/i2c-parport-light
3719F: drivers/i2c/busses/i2c-parport.c
3720F: drivers/i2c/busses/i2c-parport-light.c
3721
3722I2C/SMBUS CONTROLLER DRIVERS FOR PC
3723M: Jean Delvare <khali@linux-fr.org>
3724L: linux-i2c@vger.kernel.org
3725S: Maintained
3726F: Documentation/i2c/busses/i2c-ali1535
3727F: Documentation/i2c/busses/i2c-ali1563
3728F: Documentation/i2c/busses/i2c-ali15x3
3729F: Documentation/i2c/busses/i2c-amd756
3730F: Documentation/i2c/busses/i2c-amd8111
3731F: Documentation/i2c/busses/i2c-i801
3732F: Documentation/i2c/busses/i2c-nforce2
3733F: Documentation/i2c/busses/i2c-piix4
3734F: Documentation/i2c/busses/i2c-sis5595
3735F: Documentation/i2c/busses/i2c-sis630
3736F: Documentation/i2c/busses/i2c-sis96x
3737F: Documentation/i2c/busses/i2c-via
3738F: Documentation/i2c/busses/i2c-viapro
3739F: drivers/i2c/busses/i2c-ali1535.c
3740F: drivers/i2c/busses/i2c-ali1563.c
3741F: drivers/i2c/busses/i2c-ali15x3.c
3742F: drivers/i2c/busses/i2c-amd756.c
3743F: drivers/i2c/busses/i2c-amd756-s4882.c
3744F: drivers/i2c/busses/i2c-amd8111.c
3745F: drivers/i2c/busses/i2c-i801.c
3746F: drivers/i2c/busses/i2c-isch.c
3747F: drivers/i2c/busses/i2c-nforce2.c
3748F: drivers/i2c/busses/i2c-nforce2-s4985.c
3749F: drivers/i2c/busses/i2c-piix4.c
3750F: drivers/i2c/busses/i2c-sis5595.c
3751F: drivers/i2c/busses/i2c-sis630.c
3752F: drivers/i2c/busses/i2c-sis96x.c
3753F: drivers/i2c/busses/i2c-via.c
3754F: drivers/i2c/busses/i2c-viapro.c
3755
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003756I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003757M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003758L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003759S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003760F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003761
Jean Delvare5b543962005-08-15 19:51:02 +02003762I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01003763M: Wolfram Sang <wsa@the-dreams.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003764M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003765L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003766W: http://i2c.wiki.kernel.org/
Wolfram Sang14d77c42013-02-08 20:54:40 +01003767T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003769F: Documentation/i2c/
3770F: drivers/i2c/
3771F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003772F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003773F: include/uapi/linux/i2c.h
3774F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003776I2C-TAOS-EVM DRIVER
3777M: Jean Delvare <khali@linux-fr.org>
3778L: linux-i2c@vger.kernel.org
3779S: Maintained
3780F: Documentation/i2c/busses/i2c-taos-evm
3781F: drivers/i2c/busses/i2c-taos-evm.c
3782
Till Harbaume8c76ee2007-05-01 23:26:35 +02003783I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003784M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003785L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003786W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003788F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003789
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003791M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003793F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794
3795i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003796M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003797T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798S: Maintained
3799
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003801M: Tony Luck <tony.luck@intel.com>
3802M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003804T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003806F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807
Kent Yoder956c2032012-09-07 04:17:01 +08003808IBM Power in-Nest Crypto Acceleration
3809M: Kent Yoder <key@linux.vnet.ibm.com>
3810L: linux-crypto@vger.kernel.org
3811S: Supported
3812F: drivers/crypto/nx/
3813
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003814IBM Power 842 compression accelerator
3815M: Robert Jennings <rcj@linux.vnet.ibm.com>
3816S: Supported
3817F: drivers/crypto/nx/nx-842.c
3818F: include/linux/nx842.h
3819
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003821M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003823F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824
Santiago Leon9d348af2010-09-03 18:29:53 +00003825IBM Power Virtual Ethernet Device Driver
3826M: Santiago Leon <santil@linux.vnet.ibm.com>
3827L: netdev@vger.kernel.org
3828S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003829F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003830
Robert Jennings4b7652c2012-07-31 12:34:36 -05003831IBM Power Virtual SCSI/FC Device Drivers
3832M: Robert Jennings <rcj@linux.vnet.ibm.com>
3833L: linux-scsi@vger.kernel.org
3834S: Supported
3835F: drivers/scsi/ibmvscsi/
3836X: drivers/scsi/ibmvscsi/ibmvstgt.c
3837
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838IBM ServeRAID RAID DRIVER
3839P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003840M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003842S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003843F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003845ICH LPC AND GPIO DRIVER
3846M: Peter Tyser <ptyser@xes-inc.com>
3847S: Maintained
3848F: drivers/mfd/lpc_ich.c
3849F: drivers/gpio/gpio-ich.c
3850
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003851IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003852M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003854Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003855T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003857F: Documentation/ide/
3858F: drivers/ide/
3859F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860
Ike Panhc6cb8c132011-08-25 22:28:45 +08003861IDEAPAD LAPTOP EXTRAS DRIVER
3862M: Ike Panhc <ike.pan@canonical.com>
3863L: platform-driver-x86@vger.kernel.org
3864W: http://launchpad.net/ideapad-laptop
3865S: Maintained
3866F: drivers/platform/x86/ideapad-laptop.c
3867
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003868IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003869M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003870L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003872F: Documentation/cdrom/ide-cd
3873F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
Andy Henroid27471fd2008-10-09 11:45:22 -07003875IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003876M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003877L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003878S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003879F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003880
Sergey Lapin02cf2282009-06-08 12:18:50 +00003881IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003882M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003883M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003884L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003885W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003886T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003887S: Maintained
3888F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003889F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08003890F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003891
Sean Young40ad4a32012-11-19 10:32:53 -03003892IGUANAWORKS USB IR TRANSCEIVER
3893M: Sean Young <sean@mess.org>
3894L: linux-media@vger.kernel.org
3895S: Maintained
3896F: drivers/media/rc/iguanair.c
3897
Ameya Palande9545f862012-01-10 09:00:58 -08003898IIO SUBSYSTEM AND DRIVERS
3899M: Jonathan Cameron <jic23@cam.ac.uk>
3900L: linux-iio@vger.kernel.org
3901S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003902F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003903F: drivers/staging/iio/
3904
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003905IKANOS/ADI EAGLE ADSL USB DRIVER
3906M: Matthieu Castet <castet.matthieu@free.fr>
3907M: Stanislaw Gruszka <stf_xl@wp.pl>
3908S: Maintained
3909F: drivers/usb/atm/ueagle-atm.c
3910
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01003911INDUSTRY PACK SUBSYSTEM (IPACK)
3912M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
3913M: Jens Taprogge <jens.taprogge@taprogge.org>
3914M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3915L: industrypack-devel@lists.sourceforge.net
3916W: http://industrypack.sourceforge.net
3917S: Maintained
3918F: drivers/ipack/
3919
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003920INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003921M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003922S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003923F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003924
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003926L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003927S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003928F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929
3930INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003931M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003932M: Sean Hefty <sean.hefty@intel.com>
3933M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003934L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003935W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003936Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003937T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003939F: Documentation/infiniband/
3940F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003941F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942
Robert Lovec9f04f52005-07-15 12:21:07 -04003943INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003944M: John McCutchan <john@johnmccutchan.com>
3945M: Robert Love <rlove@rlove.org>
3946M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003948F: Documentation/filesystems/inotify.txt
3949F: fs/notify/inotify/
3950F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003951F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003952
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003953INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003954M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3955M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003956L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003957Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003958T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003960F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003961F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003962F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003963F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003964
Henrik Rydberg3267a872010-06-24 19:10:40 -07003965INPUT MULTITOUCH (MT) PROTOCOL
3966M: Henrik Rydberg <rydberg@euromail.se>
3967L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003968T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003969S: Maintained
3970F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003971F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003972K: \b(ABS|SYN)_MT_
3973
Dave Jiang4ac13e12011-07-29 17:16:55 -07003974INTEL C600 SERIES SAS CONTROLLER DRIVER
3975M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003976M: Lukasz Dorau <lukasz.dorau@intel.com>
3977M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003978M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003979L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003980T: git git://git.code.sf.net/p/intel-sas/isci
3981S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003982F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07003983
Len Brown26717172010-03-08 14:07:30 -05003984INTEL IDLE DRIVER
3985M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003986L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003987T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003988S: Supported
3989F: drivers/idle/intel_idle.c
3990
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003991INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003992M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003993L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003995F: Documentation/fb/intelfb.txt
3996F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003997
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003999M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004000L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004002F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304004INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004005M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05004006L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304007W: http://www.lesswatts.org/projects/acpi/
4008S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004009F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304010
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004012M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004014F: arch/x86/kernel/microcode_core.c
4015F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004017INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004018M: Dan Williams <djbw@fb.com>
4019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004020F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004021
David Woodhouse6c8909b2008-10-18 16:12:17 +01004022INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004023M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004024L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004025T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004026S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004027F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004028F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004029
Dan Williamsb3e5f262007-08-07 10:26:35 -07004030INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004031M: Dan Williams <djbw@fb.com>
4032S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004033F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004034
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004035INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004036M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004038F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4039F: arch/arm/mach-ixp4xx/include/mach/npe.h
4040F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4041F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004042F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004043F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004044
Michael Buesch844dd052006-06-26 00:24:59 -07004045INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004046M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004048F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004049
Jeff Kirsher0d164402010-10-05 01:15:17 +00004050INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004051M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4052M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4053M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004054M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4055M: Don Skidmore <donald.c.skidmore@intel.com>
4056M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004057M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004058M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004059M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004060M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004061L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004062W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004063W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004064T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4065T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004067F: Documentation/networking/e100.txt
4068F: Documentation/networking/e1000.txt
4069F: Documentation/networking/e1000e.txt
4070F: Documentation/networking/igb.txt
4071F: Documentation/networking/igbvf.txt
4072F: Documentation/networking/ixgb.txt
4073F: Documentation/networking/ixgbe.txt
4074F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004075F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004077INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4078M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004079L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004081F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004082F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004083F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004084
Shane Wang4bd96a72010-03-10 14:36:10 +08004085INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004086M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4087M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004088M: Shane Wang <shane.wang@intel.com>
4089L: tboot-devel@lists.sourceforge.net
4090W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004091T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004092S: Supported
4093F: Documentation/intel_txt.txt
4094F: include/linux/tboot.h
4095F: arch/x86/kernel/tboot.c
4096
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004097INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004098M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004099M: linux-wimax@intel.com
4100L: wimax@linuxwimax.org
4101S: Supported
4102W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004103F: Documentation/wimax/README.i2400m
4104F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004105F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004106
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004107INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4108M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004109L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004110S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004111F: drivers/net/wireless/iwlegacy/
4112
Zhu Yib481de92007-09-25 17:54:57 -07004113INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004114M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004115M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004116M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004117L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004118W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07004119T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004120S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004121F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004122
Tomas Winklerde8fe022012-05-09 16:39:02 +03004123INTEL MANAGEMENT ENGINE (mei)
4124M: Tomas Winkler <tomas.winkler@intel.com>
4125L: linux-kernel@vger.kernel.org
4126S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004127F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004128F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a12013-01-04 15:35:36 -08004129F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004130
Ralf Baechlecb109a02007-08-30 23:56:30 -07004131IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004132M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133L: linux-mips@linux-mips.org
4134S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004135F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136
Ralf Baechlecb109a02007-08-30 23:56:30 -07004137IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004138M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004139L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004140S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004141F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004142
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004143IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004144M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004146F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147
Francois Romieu1202d6f2007-09-17 17:13:55 -07004148IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004149M: Francois Romieu <romieu@fr.zoreil.com>
4150M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004151L: netdev@vger.kernel.org
4152S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004153F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004154
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004155IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004156M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004157L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004159F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004160
Corey Minyard4409ebe2006-04-20 02:43:12 -07004161IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004162M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004163L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004164W: http://openipmi.sourceforge.net/
4165S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004166F: Documentation/IPMI.txt
4167F: drivers/char/ipmi/
4168F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004169F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004170
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004171IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004172M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004173L: linux-scsi@vger.kernel.org
4174W: http://www.adaptec.com/
4175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004176F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004177
4178IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004179M: Wensong Zhang <wensong@linux-vs.org>
4180M: Simon Horman <horms@verge.net.au>
4181M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004182L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004183L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004185F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004186F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004187F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004188F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189
Randy Dunlape7839f22008-10-12 16:11:45 -07004190IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004191M: Jiri Kosina <jkosina@suse.cz>
4192M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004193S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004194F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004195
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004196IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004197M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004198L: netdev@vger.kernel.org
4199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004200F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004201F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004202F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004203
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004205M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004206L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004207L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004209S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004210T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004211F: Documentation/networking/irda.txt
4212F: drivers/net/irda/
4213F: include/net/irda/
4214F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004216IRQ SUBSYSTEM
4217M: Thomas Gleixner <tglx@linutronix.de>
4218S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004219T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004220F: kernel/irq/
4221
Grant Likely7ab3a832012-02-14 14:06:47 -07004222IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4223M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4224M: Grant Likely <grant.likely@secretlab.ca>
4225T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4226S: Maintained
4227F: Documentation/IRQ-domain.txt
4228F: include/linux/irqdomain.h
4229F: kernel/irq/irqdomain.c
4230
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004231ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004232M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004234F: Documentation/isapnp.txt
4235F: drivers/pnp/isapnp/
4236F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004237
Harry Wei71a6d0a2011-05-11 15:13:33 -07004238iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4239M: Peter Jones <pjones@redhat.com>
4240M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4241S: Maintained
4242F: drivers/firmware/iscsi_ibft*
4243
Mike Christie14816b1e2007-11-28 16:22:06 -08004244ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004245M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004246L: open-iscsi@googlegroups.com
4247W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004248T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004250F: drivers/scsi/*iscsi*
4251F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004252
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004254M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004255L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004256L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004258T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004260F: Documentation/isdn/
4261F: drivers/isdn/
4262F: include/linux/isdn.h
4263F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004264F: include/uapi/linux/isdn.h
4265F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266
4267ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004268M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004269L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270W: http://www.melware.de
4271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004272F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273
Jean Delvared6248702010-03-05 22:17:20 +01004274IT87 HARDWARE MONITORING DRIVER
4275M: Jean Delvare <khali@linux-fr.org>
4276L: lm-sensors@lm-sensors.org
4277S: Maintained
4278F: Documentation/hwmon/it87
4279F: drivers/hwmon/it87.c
4280
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004281IT913X MEDIA DRIVER
4282M: Malcolm Priestley <tvboxspy@gmail.com>
4283L: linux-media@vger.kernel.org
4284W: http://linuxtv.org/
4285Q: http://patchwork.linuxtv.org/project/linux-media/list/
4286S: Maintained
4287F: drivers/media/usb/dvb-usb-v2/it913x*
4288
4289IT913X FE MEDIA DRIVER
4290M: Malcolm Priestley <tvboxspy@gmail.com>
4291L: linux-media@vger.kernel.org
4292W: http://linuxtv.org/
4293Q: http://patchwork.linuxtv.org/project/linux-media/list/
4294S: Maintained
4295F: drivers/media/dvb-frontends/it913x-fe*
4296
Hans Verkuil91821ff2007-12-02 09:35:33 -03004297IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004298M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004299L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004300L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004301T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004302W: http://www.ivtvdriver.org
4303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004304F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004305F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004306F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004307
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004308IX2505V MEDIA DRIVER
4309M: Malcolm Priestley <tvboxspy@gmail.com>
4310L: linux-media@vger.kernel.org
4311W: http://linuxtv.org/
4312Q: http://patchwork.linuxtv.org/project/linux-media/list/
4313S: Maintained
4314F: drivers/media/dvb-frontends/ix2505v*
4315
Guenter Roeck4453d732010-08-09 17:21:08 -07004316JC42.4 TEMPERATURE SENSOR DRIVER
4317M: Guenter Roeck <linux@roeck-us.net>
4318L: lm-sensors@lm-sensors.org
4319S: Maintained
4320F: drivers/hwmon/jc42.c
4321F: Documentation/hwmon/jc42
4322
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004323JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004324M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004325L: jfs-discussion@lists.sourceforge.net
4326W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004327T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004329F: Documentation/filesystems/jfs.txt
4330F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004331
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004332JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004333M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004334L: netdev@vger.kernel.org
4335S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004336F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004337
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004339M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004340L: linux-mtd@lists.infradead.org
4341W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004343F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004344F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345
Josh Triplettde456d32006-07-30 03:04:00 -07004346JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004347M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004348M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004349L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004350S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004351F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004352F: include/linux/jbd.h
4353
4354JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4355M: "Theodore Ts'o" <tytso@mit.edu>
4356L: linux-ext4@vger.kernel.org
4357S: Maintained
4358F: fs/jbd2/
4359F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004360
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004361JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004362M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004363L: linux-serial@vger.kernel.org
4364S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004365F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004366
Clemens Ladischaf399172011-01-10 16:32:54 +01004367K10TEMP HARDWARE MONITORING DRIVER
4368M: Clemens Ladisch <clemens@ladisch.de>
4369L: lm-sensors@lm-sensors.org
4370S: Maintained
4371F: Documentation/hwmon/k10temp
4372F: drivers/hwmon/k10temp.c
4373
Rudolf Marek4660cb32006-10-08 22:01:26 +02004374K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004375M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004376L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004378F: Documentation/hwmon/k8temp
4379F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380
4381KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004382M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004383L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004384S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004385F: Documentation/kbuild/kconfig-language.txt
4386F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387
Vivek Goyalea6c2082006-05-20 14:59:55 -07004388KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004389M: Vivek Goyal <vgoyal@redhat.com>
4390M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004391L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004392W: http://lse.sourceforge.net/kdump/
4393S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004394F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004395
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004397M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004398L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004400F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401
Michal Marek70fb7ba2010-01-29 14:22:43 +01004402KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004403M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004404T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4405T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004406L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004408F: Documentation/kbuild/
4409F: Makefile
4410F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004411F: scripts/basic/
4412F: scripts/mk*
4413F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414
4415KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004416L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004417W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004418S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004420KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004421M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004422L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423W: http://nfs.sourceforge.net/
NeilBrown98fac23f2007-01-26 00:56:57 -08004424S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004425F: fs/nfsd/
4426F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004427F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004428F: fs/lockd/
4429F: fs/nfs_common/
4430F: net/sunrpc/
4431F: include/linux/lockd/
4432F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004433F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434
Avi Kivity426d62e2006-12-13 00:34:03 -08004435KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004436M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004437M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004438L: kvm@vger.kernel.org
4439W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004440S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004441F: Documentation/*/kvm.txt
4442F: arch/*/kvm/
4443F: arch/*/include/asm/kvm*
4444F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004445F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004446F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004447
Joerg Roedelad8003d2008-09-10 20:01:07 +02004448KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004449M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004450L: kvm@vger.kernel.org
4451W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004453F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004454F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004455
Hollis Blanchard513014b2008-04-16 23:28:08 -05004456KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004457M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004458L: kvm-ppc@vger.kernel.org
4459W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004460T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004461S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004462F: arch/powerpc/include/asm/kvm*
4463F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004464
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004465KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004466M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004467L: kvm-ia64@vger.kernel.org
4468W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004469S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004470F: Documentation/ia64/kvm.txt
4471F: arch/ia64/include/asm/kvm*
4472F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004473
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004474KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004475M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004476M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004477M: linux390@de.ibm.com
4478L: linux-s390@vger.kernel.org
4479W: http://www.ibm.com/developerworks/linux/linux390/
4480S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004481F: Documentation/s390/kvm.txt
4482F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004483F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004484F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004485
Christoffer Dalla7494742013-01-20 18:42:26 -05004486KERNEL VIRTUAL MACHINE (KVM) FOR ARM
4487M: Christoffer Dall <cdall@cs.columbia.edu>
4488L: kvmarm@lists.cs.columbia.edu
4489W: http://systems.cs.columbia.edu/projects/kvm-arm
4490S: Maintained
4491F: arch/arm/include/uapi/asm/kvm*
4492F: arch/arm/include/asm/kvm*
4493F: arch/arm/kvm/
4494
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004495KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004496M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004497W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004498L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004500F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004501F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004502F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004503
David Howellse9714612010-03-29 23:42:09 +01004504KEYS/KEYRINGS:
4505M: David Howells <dhowells@redhat.com>
4506L: keyrings@linux-nfs.org
4507S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004508F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004509F: include/linux/key.h
4510F: include/linux/key-type.h
4511F: include/keys/
4512F: security/keys/
4513
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004514KEYS-TRUSTED
4515M: David Safford <safford@watson.ibm.com>
4516M: Mimi Zohar <zohar@us.ibm.com>
4517L: linux-security-module@vger.kernel.org
4518L: keyrings@linux-nfs.org
4519S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004520F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004521F: include/keys/trusted-type.h
4522F: security/keys/trusted.c
4523F: security/keys/trusted.h
4524
4525KEYS-ENCRYPTED
4526M: Mimi Zohar <zohar@us.ibm.com>
4527M: David Safford <safford@watson.ibm.com>
4528L: linux-security-module@vger.kernel.org
4529L: keyrings@linux-nfs.org
4530S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004531F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004532F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004533F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004534
Jason Wessel5b778da2010-05-20 21:04:28 -05004535KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004536M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004537W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004538L: kgdb-bugreport@lists.sourceforge.net
4539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004540F: Documentation/DocBook/kgdb.tmpl
4541F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004542F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004543F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004544F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004545F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004546
Pekka Enberg456db8c2008-04-28 22:47:29 +03004547KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004548M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004549M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004550S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004551F: Documentation/kmemcheck.txt
4552F: arch/x86/include/asm/kmemcheck.h
4553F: arch/x86/mm/kmemcheck/
4554F: include/linux/kmemcheck.h
4555F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004556
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004557KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004558M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004559S: Maintained
4560F: Documentation/kmemleak.txt
4561F: include/linux/kmemleak.h
4562F: mm/kmemleak.c
4563F: mm/kmemleak-test.c
4564
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004565KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004566M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4567M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4568M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004569M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004571F: Documentation/kprobes.txt
4572F: include/linux/kprobes.h
4573F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004574
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004575KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004576M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004577W: http://miguelojeda.es/auxdisplay.htm
4578W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004580F: Documentation/auxdisplay/ks0108
4581F: drivers/auxdisplay/ks0108.c
4582F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004583
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004586S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004587F: Documentation/networking/lapb-module.txt
4588F: include/*/lapb.h
4589F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590
4591LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004592M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593L: linux-scsi@vger.kernel.org
4594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004595F: Documentation/scsi/53c700.txt
4596F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597
Richard Purdie263de9b2006-05-15 09:44:16 -07004598LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004599M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004600M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004601L: linux-leds@vger.kernel.org
4602T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004604F: drivers/leds/
4605F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004606
Jean Delvareb0461a42011-06-15 15:08:46 -07004607LEGACY EEPROM DRIVER
4608M: Jean Delvare <khali@linux-fr.org>
4609S: Maintained
4610F: Documentation/misc-devices/eeprom
4611F: drivers/misc/eeprom/eeprom.c
4612
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004614M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615L: legousb-devel@lists.sourceforge.net
4616W: http://legousb.sourceforge.net/
4617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004618F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619
Michael Krufky055616a2012-10-02 00:56:06 -03004620LG2160 MEDIA DRIVER
4621M: Michael Krufky <mkrufky@linuxtv.org>
4622L: linux-media@vger.kernel.org
4623W: http://linuxtv.org/
4624W: http://github.com/mkrufky
4625Q: http://patchwork.linuxtv.org/project/linux-media/list/
4626T: git git://linuxtv.org/mkrufky/tuners.git
4627S: Maintained
4628F: drivers/media/dvb-frontends/lg2160.*
4629
Michael Krufky6f0e7722012-10-02 00:56:00 -03004630LGDT3305 MEDIA DRIVER
4631M: Michael Krufky <mkrufky@linuxtv.org>
4632L: linux-media@vger.kernel.org
4633W: http://linuxtv.org/
4634W: http://github.com/mkrufky
4635Q: http://patchwork.linuxtv.org/project/linux-media/list/
4636T: git git://linuxtv.org/mkrufky/tuners.git
4637S: Maintained
4638F: drivers/media/dvb-frontends/lgdt3305.*
4639
Rusty Russell568a17f2007-10-25 14:12:24 +10004640LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004641M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004642L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004643W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004644S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004645F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004646F: arch/x86/lguest/
4647F: drivers/lguest/
4648F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004649F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004650
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004652M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653W: http://www.ibm.com/linux/ltc/projects/ppc
4654S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004655F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004657LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004658M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4659M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004661L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004662Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004663T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004665F: Documentation/powerpc/
4666F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667
4668LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004669M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004671L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004673F: arch/powerpc/platforms/powermac/
4674F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675
Grant Likely77a76362008-07-12 12:11:43 -06004676LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004677M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004678L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004679T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004681F: arch/powerpc/platforms/512x/
4682F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683
4684LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004685M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004686M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004688L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004689T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004691F: arch/powerpc/platforms/40x/
4692F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693
Grant Likely260c02a2007-10-02 12:15:34 +10004694LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004695M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004696W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004697L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004698T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004700F: arch/powerpc/*/*virtex*
4701F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702
Tom Rinie93adf12005-07-26 12:49:53 -07004703LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004704M: Vitaly Bordug <vitb@kernel.crashing.org>
4705M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004706W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004707L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004708S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004709F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004710
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004712M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004713W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004714L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004715S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004716F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004717F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718
Olof Johanssonab06ff32006-09-06 14:44:54 -05004719LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004720M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004721L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004722S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004723F: arch/powerpc/platforms/pasemi/
4724F: drivers/*/*pasemi*
4725F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004726
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004728M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004729L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730S: Supported
4731
Harry Weia23ce6d2011-02-11 16:52:20 +01004732LIS3LV02D ACCELEROMETER DRIVER
4733M: Eric Piel <eric.piel@tremplin-utc.net>
4734S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004735F: Documentation/misc-devices/lis3lv02d
4736F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004737F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004738
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004739LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004740M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004742F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004743F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07004744F: include/net/llc*
4745F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004746
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004747LM73 HARDWARE MONITOR DRIVER
4748M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4749L: lm-sensors@lm-sensors.org
4750S: Maintained
4751F: drivers/hwmon/lm73.c
4752
Jean Delvare156e2d12011-07-25 21:46:11 +02004753LM78 HARDWARE MONITOR DRIVER
4754M: Jean Delvare <khali@linux-fr.org>
4755L: lm-sensors@lm-sensors.org
4756S: Maintained
4757F: Documentation/hwmon/lm78
4758F: drivers/hwmon/lm78.c
4759
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004761M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004762L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004764F: Documentation/hwmon/lm83
4765F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766
4767LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004768M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004769L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004771F: Documentation/hwmon/lm90
4772F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004774LME2510 MEDIA DRIVER
4775M: Malcolm Priestley <tvboxspy@gmail.com>
4776L: linux-media@vger.kernel.org
4777W: http://linuxtv.org/
4778Q: http://patchwork.linuxtv.org/project/linux-media/list/
4779S: Maintained
4780F: drivers/media/usb/dvb-usb-v2/lmedm04*
4781
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004782LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004783M: Peter Zijlstra <peterz@infradead.org>
4784M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004785T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004787F: Documentation/lockdep*.txt
4788F: Documentation/lockstat.txt
4789F: include/linux/lockdep.h
4790F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004791
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004792LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004793M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004794L: linux-ntfs-dev@lists.sourceforge.net
4795W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004797F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004798F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799
Joern Engelef6ada32009-11-20 22:17:12 +01004800LogFS
4801M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304802M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004803L: logfs@logfs.org
4804W: logfs.org
4805S: Maintained
4806F: fs/logfs/
4807
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004808LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304809M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
4810M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004811M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004812L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004813L: linux-scsi@vger.kernel.org
4814W: http://www.lsilogic.com/support
4815S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004816F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304817F: drivers/scsi/mpt2sas/
4818F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004819
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004821M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822L: linux-scsi@vger.kernel.org
4823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004824F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825
Guenter Roecke5f5c992010-06-25 11:59:54 -07004826LTC4261 HARDWARE MONITOR DRIVER
4827M: Guenter Roeck <linux@roeck-us.net>
4828L: lm-sensors@lm-sensors.org
4829S: Maintained
4830F: Documentation/hwmon/ltc4261
4831F: drivers/hwmon/ltc4261.c
4832
Mike Frysinger81365c32008-10-29 14:01:12 -07004833LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004834M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004835M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004836M: Cyril Hrubis <chrubis@suse.cz>
4837M: Caspar Zhang <caspar@casparzhang.com>
4838M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004839L: ltp-list@lists.sourceforge.net (subscribers-only)
4840W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004841T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004842T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004843S: Maintained
4844
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004845M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004846M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004847L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004848L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4849W: http://www.linux-m32r.org/
4850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004851F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004852
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004854M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855L: linux-m68k@lists.linux-m68k.org
4856W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004857T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004859F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004860F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861
4862M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004863M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004865L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004867F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868
4869M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004870M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871W: http://www.tazenda.demon.co.uk/phil/linux-hp
4872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004873F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004875M88RS2000 MEDIA DRIVER
4876M: Malcolm Priestley <tvboxspy@gmail.com>
4877L: linux-media@vger.kernel.org
4878W: http://linuxtv.org/
4879Q: http://patchwork.linuxtv.org/project/linux-media/list/
4880S: Maintained
4881F: drivers/media/dvb-frontends/m88rs2000*
4882
Jiri Benc64a327a2007-05-05 11:47:08 -07004883MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004884M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004885L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004886W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004887T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4888T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004890F: Documentation/networking/mac80211-injection.txt
4891F: include/net/mac80211.h
4892F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004893
Stefano Brivio1036d862007-12-23 04:46:27 +01004894MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004895M: Stefano Brivio <stefano.brivio@polimi.it>
4896M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004897L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004898W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004899T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4900T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004902F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004903
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004904MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004905M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004906L: netdev@vger.kernel.org
4907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004908F: drivers/net/macvlan.c
4909F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004910
Michael Kerriskfaf16682005-07-31 22:34:47 -07004911MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004912M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004913W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004914L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004915S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004916
stephen hemminger44c14c12012-04-02 12:59:47 +00004917MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4918M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08004919M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00004920L: netdev@vger.kernel.org
4921S: Maintained
4922F: drivers/net/ethernet/marvell/sk*
4923
Stefano Brivio74cda162007-11-19 20:27:46 +01004924MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004925M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004926L: libertas-dev@lists.infradead.org
4927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004928F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004929
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004930MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004931M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004932L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004933S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004934F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004935F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02004937MARVELL MVNETA ETHERNET DRIVER
4938M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4939L: netdev@vger.kernel.org
4940S: Maintained
4941F: drivers/net/ethernet/marvell/mvneta.*
4942
Bing Zhaofcad5842011-07-13 13:11:58 -07004943MARVELL MWIFIEX WIRELESS DRIVER
4944M: Bing Zhao <bzhao@marvell.com>
4945L: linux-wireless@vger.kernel.org
4946S: Maintained
4947F: drivers/net/wireless/mwifiex/
4948
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004949MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004950M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004951L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004952S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004953F: drivers/net/wireless/mwl8k.c
4954
Pierre Ossman2a695672009-03-16 19:52:26 +01004955MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004956M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004957S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004958F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004959
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004961L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004962S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004963F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004964F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965
Guenter Roeckca462082012-06-01 23:28:23 -07004966MAX16065 HARDWARE MONITOR DRIVER
4967M: Guenter Roeck <linux@roeck-us.net>
4968L: lm-sensors@lm-sensors.org
4969S: Maintained
4970F: Documentation/hwmon/max16065
4971F: drivers/hwmon/max16065.c
4972
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004973MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004974M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004975L: lm-sensors@lm-sensors.org
4976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004977F: Documentation/hwmon/max6650
4978F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004979
Joe Perches127c49a2009-04-08 08:34:04 -07004980MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004981M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07004982P: LinuxTV.org Project
4983L: linux-media@vger.kernel.org
4984W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004985Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004986T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07004987S: Maintained
4988F: Documentation/dvb/
4989F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004990F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004991F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004992F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004993F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02004994F: include/uapi/linux/dvb/
4995F: include/uapi/linux/videodev2.h
4996F: include/uapi/linux/media.h
4997F: include/uapi/linux/v4l2-*
4998F: include/uapi/linux/meye.h
4999F: include/uapi/linux/ivtv*
5000F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005001
5002MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005003M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005004L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005005W: http://megaraid.lsilogic.com
5006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005007F: Documentation/scsi/megaraid.txt
5008F: drivers/scsi/megaraid.*
5009F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005010
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005011MELLANOX ETHERNET DRIVER (mlx4_en)
5012M: Amir Vadai <amirv@mellanox.com>
5013L: netdev@vger.kernel.org
5014S: Supported
5015W: http://www.mellanox.com
5016Q: http://patchwork.ozlabs.org/project/netdev/list/
5017F: drivers/net/ethernet/mellanox/mlx4/en_*
5018
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005019MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021W: http://www.linux-mm.org
5022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005023F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08005024F: include/linux/gfp.h
5025F: include/linux/mmzone.h
5026F: include/linux/memory_hotplug.h
5027F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07005028F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005029
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005030MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005031M: Johannes Weiner <hannes@cmpxchg.org>
5032M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005033M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005034M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005035L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005036L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005038F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005039F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005040
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005042M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005044W: http://www.linux-mtd.infradead.org/
5045Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08005046T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005048F: drivers/mtd/
5049F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005050F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051
Michal Simekc6375b02009-03-27 14:25:52 +01005052MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005053M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005054L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005055W: http://www.monstr.eu/fdt/
5056T: git git://git.monstr.eu/linux-2.6-microblaze.git
5057S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005058F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059
5060MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005061M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005063F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064
5065MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005066M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005068W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005069T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005070Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005071S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005072F: Documentation/mips/
5073F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005076M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005078F: include/linux/module.h
5079F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080
5081MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005083S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005084F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005085F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005086F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087
Jiri Slabyb9705b62008-04-30 00:53:48 -07005088MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005089M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005091F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005092F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005093
Alexey Klimov889b2f82012-11-16 17:43:59 -03005094MR800 AVERMEDIA USB FM RADIO DRIVER
5095M: Alexey Klimov <klimov.linux@gmail.com>
5096L: linux-media@vger.kernel.org
5097T: git git://linuxtv.org/media_tree.git
5098S: Maintained
5099F: drivers/media/radio/radio-mr800.c
5100
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005101MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005102M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05005103L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005105F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005106
Anisse Astier0f1006b2009-12-17 11:28:49 +01005107MSI WMI SUPPORT
5108M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd09448532010-02-11 10:40:13 -05005109L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005110S: Supported
5111F: drivers/platform/x86/msi-wmi.c
5112
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005113MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005114M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005115T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005116S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005117F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005118
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005119MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005120M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005121L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005122T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005124F: drivers/mmc/
5125F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005126F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005127
David Brownell15a05802007-08-08 09:12:54 -07005128MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005129S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005130F: drivers/mmc/host/mmc_spi.c
5131F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005132
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005134M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005136F: Documentation/sound/oss/MultiSound
5137F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138
Jiri Slabyd7354102006-12-08 02:38:35 -08005139MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005140S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005141F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005142F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005143
Felipe Balbi550a7372008-07-24 12:27:36 +03005144MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005145M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005146L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005147T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005149F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005150
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005151MXL5007T MEDIA DRIVER
5152M: Michael Krufky <mkrufky@linuxtv.org>
5153L: linux-media@vger.kernel.org
5154W: http://linuxtv.org/
5155W: http://github.com/mkrufky
5156Q: http://patchwork.linuxtv.org/project/linux-media/list/
5157T: git git://linuxtv.org/mkrufky/tuners.git
5158S: Maintained
5159F: drivers/media/tuners/mxl5007t.*
5160
Brice Goglin2d3cf582008-05-17 12:45:36 +02005161MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005162M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005163L: netdev@vger.kernel.org
5164W: http://www.myri.com/scs/download-Myri10GE.html
5165S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005166F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005167
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005169S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005170F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171
Daniel Mack23dc05a2011-05-18 11:28:38 +02005172NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5173M: Daniel Mack <zonque@gmail.com>
5174S: Maintained
5175L: alsa-devel@alsa-project.org
5176W: http://www.native-instruments.com
5177F: sound/usb/caiaq/
5178
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005180M: Petr Vandrovec <petr@vandrovec.name>
5181S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005182F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183
5184NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005185M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186L: linux-scsi@vger.kernel.org
5187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005188F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005190NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005191M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005192L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005193W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005194S: Supported
5195F: drivers/infiniband/hw/nes/
5196
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005197NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005198M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005199L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005201F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005202
Jon Masonb2f5a052010-07-15 08:47:27 +00005203NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005204M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005205L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005206S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005207F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005208F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005209F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005210
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212P: Harald Welte
5213P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005214M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005215M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005216L: netfilter-devel@vger.kernel.org
5217L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005218L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219W: http://www.netfilter.org/
5220W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005221T: git git://1984.lsi.us.es/nf
5222T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005224F: include/linux/netfilter*
5225F: include/linux/netfilter/
5226F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005227F: include/uapi/linux/netfilter*
5228F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005229F: net/*/netfilter.c
5230F: net/*/netfilter/
5231F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232
Paul Moore4cc67732006-09-25 15:57:13 -07005233NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005234M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005235W: http://netlabel.sf.net
5236L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005237S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005238F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005239F: include/net/netlabel.h
5240F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005241
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005243M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005245W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005247F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005248F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005249F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005250
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005251NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005252M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005254F: Documentation/blockdev/nbd.txt
5255F: drivers/block/nbd.c
5256F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005257F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258
Neil Horman6e436502009-10-05 03:56:55 +00005259NETWORK DROP MONITOR
5260M: Neil Horman <nhorman@tuxdriver.com>
5261L: netdev@vger.kernel.org
5262S: Maintained
5263W: https://fedorahosted.org/dropwatch/
5264F: net/core/drop_monitor.c
5265
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005267M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005268L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005269W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005270Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005271T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5272T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005274F: net/
5275F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005276F: include/linux/in.h
5277F: include/linux/net.h
5278F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005279F: include/uapi/linux/in.h
5280F: include/uapi/linux/net.h
5281F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282
5283NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005284M: "David S. Miller" <davem@davemloft.net>
5285M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005286M: James Morris <jmorris@namei.org>
5287M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5288M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005289L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005290T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005292F: net/ipv4/
5293F: net/ipv6/
5294F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005295F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296
David S. Miller73b76562012-10-16 14:08:40 -04005297NETWORKING [IPSEC]
5298M: Steffen Klassert <steffen.klassert@secunet.com>
5299M: Herbert Xu <herbert@gondor.apana.org.au>
5300M: "David S. Miller" <davem@davemloft.net>
5301L: netdev@vger.kernel.org
5302T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5303S: Maintained
5304F: net/xfrm/
5305F: net/key/
5306F: net/ipv4/xfrm*
5307F: net/ipv6/xfrm*
5308F: include/uapi/linux/xfrm.h
5309F: include/net/xfrm.h
5310
James Morris10e2ff12007-08-25 14:41:28 -07005311NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005312M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005313L: netdev@vger.kernel.org
5314S: Maintained
5315
John W. Linville29f8f632006-01-18 14:52:48 -08005316NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005317M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005318L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005319Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005320T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005321S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005322F: net/mac80211/
5323F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005324F: net/wireless/
5325F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005326F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005327F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005328F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005329F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005330
Joe Perches788873a2009-04-16 09:38:45 +00005331NETWORKING DRIVERS
5332L: netdev@vger.kernel.org
5333W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005334Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005335T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5336T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005337S: Odd Fixes
5338F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005339F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005340F: include/linux/netdevice.h
5341F: include/linux/arcdevice.h
5342F: include/linux/etherdevice.h
5343F: include/linux/fcdevice.h
5344F: include/linux/fddidevice.h
5345F: include/linux/hippidevice.h
5346F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005347F: include/uapi/linux/if_*
5348F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005349
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005350NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005351M: Sony Chacko <sony.chacko@qlogic.com>
5352M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005353L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005354W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005355S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005356F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005357
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005358NFC SUBSYSTEM
5359M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5360M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5361M: Samuel Ortiz <sameo@linux.intel.com>
5362L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005363L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005364S: Maintained
5365F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005366F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005367F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005368F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005369F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005371NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005372M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005373L: linux-nfs@vger.kernel.org
5374W: http://client.linux-nfs.org
5375T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005377F: fs/lockd/
5378F: fs/nfs/
5379F: fs/nfs_common/
5380F: net/sunrpc/
5381F: include/linux/lockd/
5382F: include/linux/nfs*
5383F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005384F: include/uapi/linux/nfs*
5385F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005387NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005388M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005389L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005390W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005391T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005392S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005393F: Documentation/filesystems/nilfs2.txt
5394F: fs/nilfs2/
5395F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005396
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005398M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005401F: Documentation/scsi/NinjaSCSI.txt
5402F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005403
5404NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005405M: GOTO Masanori <gotom@debian.or.jp>
5406M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005409F: Documentation/scsi/NinjaSCSI.txt
5410F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005413M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005415W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005416T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005417S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005418F: Documentation/filesystems/ntfs.txt
5419F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005421NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005422M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005423L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005425F: drivers/video/riva/
5426F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427
Tony Lindgrenf5525782009-05-28 13:23:53 -07005428OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005429M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005430L: linux-omap@vger.kernel.org
5431W: http://www.muru.com/linux/omap/
5432W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005433Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005434T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005435S: Maintained
Felipe Contreras4e04d5a32009-09-21 17:04:25 -07005436F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005437F: drivers/i2c/busses/i2c-omap.c
5438F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005439
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005440OMAP DEVICE TREE SUPPORT
5441M: Benoît Cousson <b-cousson@ti.com>
5442M: Tony Lindgren <tony@atomide.com>
5443L: linux-omap@vger.kernel.org
5444L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5445S: Maintained
5446F: arch/arm/boot/dts/*omap*
5447F: arch/arm/boot/dts/*am3*
5448
Tony Lindgrenf5525782009-05-28 13:23:53 -07005449OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005450M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005451L: linux-omap@vger.kernel.org
5452S: Maintained
5453F: arch/arm/*omap*/*clock*
5454
5455OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005456M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005457L: linux-omap@vger.kernel.org
5458S: Maintained
5459F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005460F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005461
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005462OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5463M: Rajendra Nayak <rnayak@ti.com>
5464M: Paul Walmsley <paul@pwsan.com>
5465L: linux-omap@vger.kernel.org
5466S: Maintained
5467F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5468F: arch/arm/mach-omap2/powerdomain44xx.c
5469F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5470F: arch/arm/mach-omap2/clockdomain44xx.c
5471
Tony Lindgrenf5525782009-05-28 13:23:53 -07005472OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005473M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005474M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005475L: alsa-devel@alsa-project.org (subscribers-only)
5476L: linux-omap@vger.kernel.org
5477S: Maintained
5478F: sound/soc/omap/
5479
5480OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005481M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005482L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005483L: linux-omap@vger.kernel.org
5484S: Maintained
5485F: drivers/video/omap/
5486
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005487OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005488M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005489L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005490L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005491S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005492F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005493F: Documentation/arm/OMAP/DSS
5494
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005495OMAP HARDWARE SPINLOCK SUPPORT
5496M: Ohad Ben-Cohen <ohad@wizery.com>
5497L: linux-omap@vger.kernel.org
5498S: Maintained
5499F: drivers/hwspinlock/omap_hwspinlock.c
5500F: arch/arm/mach-omap2/hwspinlock.c
5501
Tony Lindgrenf5525782009-05-28 13:23:53 -07005502OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005503M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005504L: linux-omap@vger.kernel.org
5505S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005506F: drivers/mmc/host/omap.c
5507
5508OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305509M: Venkatraman S <svenkatr@ti.com>
5510L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005511L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305512S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005513F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005514
5515OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005516M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005517S: Maintained
5518F: drivers/char/hw_random/omap-rng.c
5519
Paul Walmsleyf400c822010-12-06 19:08:54 -07005520OMAP HWMOD SUPPORT
5521M: Benoît Cousson <b-cousson@ti.com>
5522M: Paul Walmsley <paul@pwsan.com>
5523L: linux-omap@vger.kernel.org
5524S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005525F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005526
5527OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5528M: Benoît Cousson <b-cousson@ti.com>
5529L: linux-omap@vger.kernel.org
5530S: Maintained
5531F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5532
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005533OMAP IMAGE SIGNAL PROCESSOR (ISP)
5534M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5535L: linux-media@vger.kernel.org
5536S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005537F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005538
Tony Lindgrenf5525782009-05-28 13:23:53 -07005539OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005540M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005541L: linux-usb@vger.kernel.org
5542L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005543T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005544S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005545F: drivers/usb/*/*omap*
5546F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005547
Kevin Hilman6d994712012-07-16 10:05:07 -07005548OMAP GPIO DRIVER
5549M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5550M: Kevin Hilman <khilman@ti.com>
5551L: linux-omap@vger.kernel.org
5552S: Maintained
5553F: drivers/gpio/gpio-omap.c
5554
Bob Copeland0ad122d2008-07-25 19:45:18 -07005555OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005556M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005557L: linux-karma-devel@lists.sourceforge.net
5558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005559F: Documentation/filesystems/omfs.txt
5560F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005561
Harald Weltec1986ee2005-11-13 16:06:29 -08005562OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005563M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005565F: drivers/char/pcmcia/cm4000_cs.c
5566F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005567F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005568
Harald Welte77c44ab2005-11-13 16:06:26 -08005569OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005570M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005572F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005573
Jonathan Corbet77d51402007-03-22 19:44:17 -03005574OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005575M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005576L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005577T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005578S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005579F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005580
Thomas Gleixner431bca72007-05-02 09:31:35 +02005581ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005582M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005583L: linux-mtd@lists.infradead.org
5584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005585F: drivers/mtd/onenand/
5586F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005587
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005589M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590L: osst-users@lists.sourceforge.net
5591L: linux-scsi@vger.kernel.org
5592S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005593F: drivers/scsi/osst*
5594F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005596OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005597M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005598L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005599S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005600F: Documentation/i2c/busses/i2c-ocores
5601F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005602
Grant Likely860c44c2009-10-26 16:49:49 -07005603OPEN FIRMWARE AND FLATTENED DEVICE TREE
5604M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005605M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005606L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005607W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005608T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005609S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005610F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005611F: drivers/of
5612F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005613F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005614K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005615K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005616
Jonas Bonn19f9d392011-06-04 22:00:38 +03005617OPENRISC ARCHITECTURE
5618M: Jonas Bonn <jonas@southpole.se>
5619W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005620L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005621S: Maintained
5622T: git git://openrisc.net/~jonas/linux
5623F: arch/openrisc
5624
Jesse Grossccb13522011-10-25 19:26:31 -07005625OPENVSWITCH
5626M: Jesse Gross <jesse@nicira.com>
5627L: dev@openvswitch.org
5628W: http://openvswitch.org
5629T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5630S: Maintained
5631F: net/openvswitch/
5632
Clemens Ladischaf399172011-01-10 16:32:54 +01005633OPL4 DRIVER
5634M: Clemens Ladisch <clemens@ladisch.de>
5635L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5636T: git git://git.alsa-project.org/alsa-kernel.git
5637S: Maintained
5638F: sound/drivers/opl4/
5639
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005641M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642L: oprofile-list@lists.sf.net
5643S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005644F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005645F: arch/*/oprofile/
5646F: drivers/oprofile/
5647F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005649ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005650M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005651M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005652L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5653W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005654T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005655S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005656F: Documentation/filesystems/ocfs2.txt
5657F: Documentation/filesystems/dlmfs.txt
5658F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005659
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005661L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005662W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005663W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005664S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005665F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005666
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005667OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005668M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005669M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005670L: osd-dev@open-osd.org
5671W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005672T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005673S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005674F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005675F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005676F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005677
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005678P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005679M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005680L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005681W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005683F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005684
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005685PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005686M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005687L: netdev@vger.kernel.org
5688S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005689F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005690
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005691PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005692M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005693L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005695F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005696
Steffen Klassert48fc2672010-08-13 10:10:46 -04005697PADATA PARALLEL EXECUTION MECHANISM
5698M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005699L: linux-crypto@vger.kernel.org
5700S: Maintained
5701F: kernel/padata.c
5702F: include/linux/padata.h
5703F: Documentation/padata.txt
5704
Harald Welte709ee532008-09-23 17:46:57 +02005705PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005706M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05005707L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005709F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005710
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005711PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005712M: David Howells <dhowells@redhat.com>
5713M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005714L: linux-am33-list@redhat.com (moderated for non-subscribers)
5715W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005717F: Documentation/mn10300/
5718F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005719
Linus Torvalds1da177e2005-04-16 15:20:36 -07005720PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005721L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005722S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005723F: drivers/parport/
5724F: include/linux/parport*.h
5725F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005726F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005727
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005728PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005729M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005730M: Chris Wright <chrisw@sous-sol.org>
5731M: Alok Kataria <akataria@vmware.com>
5732M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005733L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005734S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005735F: Documentation/ia64/paravirt_ops.txt
5736F: arch/*/kernel/paravirt*
5737F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005738
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005740M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005741L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742W: http://www.torque.net/linux-pp.html
5743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005744F: Documentation/blockdev/paride.txt
5745F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746
5747PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005748M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005749M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005750L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005752Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005753T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005755F: arch/parisc/
5756F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757
Jim Cromie1662d322006-10-06 00:43:59 -07005758PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005759M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005760L: lm-sensors@lm-sensors.org
5761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005762F: Documentation/hwmon/pc87360
5763F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005764
5765PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005766M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005768F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005769
Jean Delvare1ad107f2010-08-14 21:09:00 +02005770PC87427 HARDWARE MONITORING DRIVER
5771M: Jean Delvare <khali@linux-fr.org>
5772L: lm-sensors@lm-sensors.org
5773S: Maintained
5774F: Documentation/hwmon/pc87427
5775F: drivers/hwmon/pc87427.c
5776
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005777PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005778M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005779S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005780F: drivers/leds/leds-pca9532.c
5781F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005782
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005783PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005784M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005785L: linux-i2c@vger.kernel.org
5786S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005787F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005788
Khalid Aziz3971dae2012-04-12 12:49:13 -07005789PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005790M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005791S: Maintained
5792F: drivers/firmware/pcdp.*
5793
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005794PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005795M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005796L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005797S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005798F: Documentation/PCI/pci-error-recovery.txt
5799F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005800
Linus Torvalds1da177e2005-04-16 15:20:36 -07005801PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005802M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005803L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005804Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005805T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005806S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005807F: Documentation/PCI/
5808F: drivers/pci/
5809F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005812P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005813L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005814W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005815T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005817F: Documentation/pcmcia/
5818F: drivers/pcmcia/
5819F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005820
5821PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005822M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005823L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005824S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005825F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826
Steffen Klassert48fc2672010-08-13 10:10:46 -04005827PCRYPT PARALLEL CRYPTO ENGINE
5828M: Steffen Klassert <steffen.klassert@secunet.com>
5829L: linux-crypto@vger.kernel.org
5830S: Maintained
5831F: crypto/pcrypt.c
5832F: include/crypto/pcrypt.h
5833
Tejun Heoe72df0b2010-12-10 17:02:49 +01005834PER-CPU MEMORY ALLOCATOR
5835M: Tejun Heo <tj@kernel.org>
5836M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005837T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5838S: Maintained
5839F: include/linux/percpu*.h
5840F: mm/percpu*.c
5841F: arch/*/include/asm/percpu.h
5842
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005843PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005844M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005846F: include/linux/delayacct.h
5847F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005848
Ingo Molnar57c0c152009-09-21 12:20:38 +02005849PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005850M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5851M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005852M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005853M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005854T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005855S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005856F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005857F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005858F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005859F: arch/*/kernel/perf_event*.c
5860F: arch/*/kernel/*/perf_event*.c
5861F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005862F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02005863F: arch/*/kernel/perf_callchain.c
5864F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005865
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005866PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005867M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005868L: linux-abi-devel@lists.sourceforge.net
5869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005870F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005871F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005872
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005873PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005874M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005875S: Supported
5876F: Documentation/networking/phonet.txt
5877F: include/linux/phonet.h
5878F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005879F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005880F: net/phonet/
5881
Linus Torvalds1da177e2005-04-16 15:20:36 -07005882PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005883M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005884L: linux-mtd@lists.infradead.org
5885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005886F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887
Bruno Prémontefdbb102012-07-30 21:39:03 +02005888PICOLCD HID DRIVER
5889M: Bruno Prémont <bonbons@linux-vserver.org>
5890L: linux-input@vger.kernel.org
5891S: Maintained
5892F: drivers/hid/hid-picolcd*
5893
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005894PICOXCELL SUPPORT
5895M: Jamie Iles <jamie@jamieiles.com>
5896L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5897T: git git://github.com/jamieiles/linux-2.6-ji.git
5898S: Supported
5899F: arch/arm/mach-picoxcell
5900F: drivers/*/picoxcell*
5901F: drivers/*/*/picoxcell*
5902
Linus Walleij2744e8a2011-05-02 20:50:54 +02005903PIN CONTROL SUBSYSTEM
5904M: Linus Walleij <linus.walleij@linaro.org>
5905S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005906F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005907F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005908
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02005909PIN CONTROLLER - ATMEL AT91
5910M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
5911L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5912S: Maintained
5913F: drivers/pinctrl/pinctrl-at91.c
5914
Viresh Kumardeda8282012-03-28 22:27:07 +05305915PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005916M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305917L: spear-devel@list.st.com
5918L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5919W: http://www.st.com/spear
5920S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005921F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305922
Peter Osterlund249a6772005-09-27 21:45:30 -07005923PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005924M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005926F: drivers/block/pktcdvd.c
5927F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005928F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005929
GuanXuetaob31d8272011-01-16 00:35:49 +08005930PKUNITY SOC DRIVERS
5931M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5932W: http://mprc.pku.edu.cn/~guanxuetao/linux
5933S: Maintained
5934T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5935F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005936F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005937F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005938F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005939
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005940PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005941M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005942L: lm-sensors@lm-sensors.org
5943W: http://www.lm-sensors.org/
5944W: http://www.roeck-us.net/linux/drivers/
5945T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5946S: Maintained
5947F: Documentation/hwmon/pmbus
5948F: drivers/hwmon/pmbus/
5949F: include/linux/i2c/pmbus.h
5950
Anil Ravindranath89a36812009-08-25 17:35:18 -07005951PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005952M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005953L: linux-scsi@vger.kernel.org
5954W: http://www.pmc-sierra.com/
5955S: Supported
5956F: drivers/scsi/pmcraid.*
5957
jack wangdbf9bfe2009-10-14 16:19:21 +08005958PMC SIERRA PM8001 DRIVER
5959M: jack_wang@usish.com
5960M: lindar_liu@usish.com
5961L: linux-scsi@vger.kernel.org
5962S: Supported
5963F: drivers/scsi/pm8001/
5964
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005966M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005967T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005969F: fs/timerfd.c
5970F: include/linux/timer*
5971F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972
Anton Vorontsov3be86142007-07-15 04:43:36 +04005973POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005974M: Anton Vorontsov <cbou@mail.ru>
5975M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005976T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005978F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005979F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005980
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005982M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005983M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005985F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005986
Vitaly Wool999445d2007-01-04 13:07:03 +01005987PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005988M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005989L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005991F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005992
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005994M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005995L: linux-ppp@vger.kernel.org
5996S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005997F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998
5999PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006000M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006002F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006003F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004
6005PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006006M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006008F: drivers/net/ppp/pppoe.c
6009F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006010
James Chapmana6d23702007-06-27 15:53:17 -07006011PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006012M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006013S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006014F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006015F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006016F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006017
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006018PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006019M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006020W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6021L: linuxpps@ml.enneenne.com (subscribers-only)
6022S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006023F: Documentation/pps/
6024F: drivers/pps/
6025F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006026
Harry Wei71a6d0a2011-05-11 15:13:33 -07006027PPTP DRIVER
6028M: Dmitry Kozlov <xeb@mail.ru>
6029L: netdev@vger.kernel.org
6030S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006031F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006032W: http://sourceforge.net/projects/accel-pptp
6033
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006035M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006036L: kpreempt-tech@lists.sourceforge.net
6037W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6038S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006039F: Documentation/preempt-locking.txt
6040F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041
6042PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006043M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006044L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006045W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006046S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006047F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006049PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006050M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006051L: linux-ide@vger.kernel.org
6052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006053F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006054
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006055PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006056M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006057L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006058L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006059S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006060F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006061
Geoff Levandf58a9d12006-11-23 00:46:51 +01006062PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006063M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006064L: linuxppc-dev@lists.ozlabs.org
6065L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006067F: arch/powerpc/boot/ps3*
6068F: arch/powerpc/include/asm/lv1call.h
6069F: arch/powerpc/include/asm/ps3*.h
6070F: arch/powerpc/platforms/ps3/
6071F: drivers/*/ps3*
6072F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006073F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006074F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006075F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006076
Jim Pariscffb4add2009-01-06 11:32:10 +00006077PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006078M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006079L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006080S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006081F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006082
Anton Vorontsov8defe592012-08-03 18:07:20 -07006083PSTORE FILESYSTEM
6084M: Anton Vorontsov <cbouatmailru@gmail.com>
6085M: Colin Cross <ccross@android.com>
6086M: Kees Cook <keescook@chromium.org>
6087M: Tony Luck <tony.luck@intel.com>
6088S: Maintained
6089T: git git://git.infradead.org/users/cbou/linux-pstore.git
6090F: fs/pstore/
6091F: include/linux/pstore*
6092F: drivers/firmware/efivars.c
6093F: drivers/acpi/apei/erst.c
6094
Richard Cochran7fbc4152012-03-10 01:55:53 +00006095PTP HARDWARE CLOCK SUPPORT
6096M: Richard Cochran <richardcochran@gmail.com>
6097S: Maintained
6098W: http://linuxptp.sourceforge.net/
6099F: Documentation/ABI/testing/sysfs-ptp
6100F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006101F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006102F: drivers/net/phy/dp83640*
6103F: drivers/ptp/*
6104F: include/linux/ptp_cl*
6105
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006106PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006107M: Roland McGrath <roland@redhat.com>
6108M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006109S: Maintained
6110F: include/asm-generic/syscall.h
6111F: include/linux/ptrace.h
6112F: include/linux/regset.h
6113F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006114F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006115F: kernel/ptrace.c
6116
Michael Krufky83202042006-07-03 00:24:18 -07006117PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006118M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006119L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006120L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006121W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006122T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006124F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006125F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006126
Hans de Goede39532e62012-11-04 17:05:59 -03006127PWC WEBCAM DRIVER
6128M: Hans de Goede <hdegoede@redhat.com>
6129L: linux-media@vger.kernel.org
6130T: git git://linuxtv.org/media_tree.git
6131S: Maintained
6132F: drivers/media/usb/pwc/*
6133
Thierry Reding200efed2012-03-27 13:16:18 +02006134PWM SUBSYSTEM
6135M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006136L: linux-kernel@vger.kernel.org
6137S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006138W: http://gitorious.org/linux-pwm
6139T: git git://gitorious.org/linux-pwm/linux-pwm.git
6140F: Documentation/pwm.txt
6141F: Documentation/devicetree/bindings/pwm/
6142F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006143F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006144F: drivers/video/backlight/pwm_bl.c
6145F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006146
Eric Miao30ec2612008-06-12 15:21:41 -07006147PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006148M: Eric Miao <eric.y.miao@gmail.com>
6149M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006150M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006151L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006152T: git git://github.com/hzhuang1/linux.git
6153T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006155F: arch/arm/mach-pxa/
6156F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006157F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006158F: drivers/usb/gadget/pxa2*
6159F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006160F: sound/arm/pxa*
6161F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006162
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006163MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006164M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006165M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006166L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006167T: git git://github.com/hzhuang1/linux.git
6168T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006169S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006170F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006171
Pierre Ossman272f1332007-05-14 21:25:26 +02006172PXA MMCI DRIVER
6173S: Orphan
6174
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006175PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006176M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006177L: rtc-linux@googlegroups.com
6178S: Maintained
6179
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006180QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006181M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006182L: linux-rdma@vger.kernel.org
6183S: Supported
6184F: drivers/infiniband/hw/qib/
6185
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006186QLOGIC QLA1280 SCSI DRIVER
6187M: Michael Reed <mdr@sgi.com>
6188L: linux-scsi@vger.kernel.org
6189S: Maintained
6190F: drivers/scsi/qla1280.[ch]
6191
Linus Torvalds1da177e2005-04-16 15:20:36 -07006192QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006193M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006194M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006195L: linux-scsi@vger.kernel.org
6196S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006197F: Documentation/scsi/LICENSE.qla2xxx
6198F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199
Ravi Anand883c98f2010-04-28 11:45:49 +05306200QLOGIC QLA4XXX iSCSI DRIVER
6201M: Ravi Anand <ravi.anand@qlogic.com>
6202M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6203M: iscsi-driver@qlogic.com
6204L: linux-scsi@vger.kernel.org
6205S: Supported
6206F: drivers/scsi/qla4xxx/
6207
Ron Mercer5a4faa872006-07-25 00:40:21 -07006208QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006209M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006210M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006211M: linux-driver@qlogic.com
6212L: netdev@vger.kernel.org
6213S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006214F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006215F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006216
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006217QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006218M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006219M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006220M: linux-driver@qlogic.com
6221L: netdev@vger.kernel.org
6222S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006223F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006224
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006225QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006226M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006227M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006228M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006229L: netdev@vger.kernel.org
6230S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006231F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006232
Linus Torvalds1da177e2005-04-16 15:20:36 -07006233QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006234M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006235W: http://www.alarsen.net/linux/qnx4fs/
6236S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006237F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006238F: include/uapi/linux/qnx4_fs.h
6239F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240
Antti Palosaari91952bc2012-10-01 12:28:46 -03006241QT1010 MEDIA DRIVER
6242M: Antti Palosaari <crope@iki.fi>
6243L: linux-media@vger.kernel.org
6244W: http://linuxtv.org/
6245W: http://palosaari.fi/linux/
6246Q: http://patchwork.linuxtv.org/project/linux-media/list/
6247T: git git://linuxtv.org/anttip/media_tree.git
6248S: Maintained
6249F: drivers/media/tuners/qt1010*
6250
Richard Kuo4f4567c2011-10-31 18:56:38 -05006251QUALCOMM HEXAGON ARCHITECTURE
6252M: Richard Kuo <rkuo@codeaurora.org>
6253L: linux-hexagon@vger.kernel.org
6254S: Supported
6255F: arch/hexagon/
6256
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006257RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006258M: Yehuda Sadeh <yehuda@inktank.com>
6259M: Sage Weil <sage@inktank.com>
6260M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006261M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006262W: http://ceph.com/
6263T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006264S: Supported
6265F: drivers/block/rbd.c
6266F: drivers/block/rbd_types.h
6267
Linus Torvalds1da177e2005-04-16 15:20:36 -07006268RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006269M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006270L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006272F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006273F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006274
Hans de Goedec6c9b342012-11-04 17:03:58 -03006275RADIOSHARK RADIO DRIVER
6276M: Hans de Goede <hdegoede@redhat.com>
6277L: linux-media@vger.kernel.org
6278T: git git://linuxtv.org/media_tree.git
6279S: Maintained
6280F: drivers/media/radio/radio-shark.c
6281
6282RADIOSHARK2 RADIO DRIVER
6283M: Hans de Goede <hdegoede@redhat.com>
6284L: linux-media@vger.kernel.org
6285T: git git://linuxtv.org/media_tree.git
6286S: Maintained
6287F: drivers/media/radio/radio-shark2.c
6288F: drivers/media/radio/radio-tea5777.c
6289
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006291M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006292L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006294F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295
Randy Dunlape7839f22008-10-12 16:11:45 -07006296RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006297P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006298M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006299M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006300M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006301L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006302L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006303W: http://rt2x00.serialmonkey.com/
6304S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006305T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006306F: drivers/net/wireless/rt2x00/
6307
Nick Piggin9db55792008-02-08 04:19:49 -08006308RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006309M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006311F: Documentation/blockdev/ramdisk.txt
6312F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006313
Matt Mackall9e95ce22005-04-16 15:25:56 -07006314RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006315M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006317F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006318
Matt Porter394b7012005-11-07 01:00:15 -08006319RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006320M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006321M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006323F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006324
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006325RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006326L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006327S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006328F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006329
6330RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006331M: Josh Triplett <josh@freedesktop.org>
6332M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006333S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006334T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006335F: Documentation/RCU/torture.txt
6336F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006337
Florian Fainellic1f766b2008-02-06 22:39:44 +01006338RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006339M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006340S: Maintained
6341
Florian Fainellidb17f3952007-12-19 11:30:30 +01006342RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006343M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f3952007-12-19 11:30:30 +01006344L: netdev@vger.kernel.org
6345S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006346F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f3952007-12-19 11:30:30 +01006347
Andy Grovera09ed662009-02-24 15:30:41 +00006348RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006349M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006350L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006351S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006352F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006353
Josh Triplett595182b2006-10-04 02:17:21 -07006354READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006355M: Dipankar Sarma <dipankar@in.ibm.com>
6356M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006357W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006358S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006359T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006360F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006361X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006362F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006363F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006364X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006365
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006366REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006367M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo764654932006-12-10 02:19:06 -08006368L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006369Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006371F: Documentation/rtc.txt
6372F: drivers/rtc/
6373F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006374F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006375
Linus Torvalds1da177e2005-04-16 15:20:36 -07006376REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006377L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006378S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006379F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006380
Mark Brownb83a3132011-05-11 19:59:58 +02006381REGISTER MAP ABSTRACTION
6382M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6383T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6384S: Supported
6385F: drivers/base/regmap/
6386F: include/linux/regmap.h
6387
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006388REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6389M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006390T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006391S: Maintained
6392F: drivers/remoteproc/
6393F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006394F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006395
Ivo van Doorne08976452008-04-12 19:23:55 +02006396RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006397M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006398L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006399W: http://wireless.kernel.org/
6400T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6401T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006402S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006403F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006404F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006405
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006406RICOH SMARTMEDIA/XD DRIVER
6407M: Maxim Levitsky <maximlevitsky@gmail.com>
6408S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006409F: drivers/mtd/nand/r852.c
6410F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006411
Maxim Levitsky92634122011-03-25 01:56:59 -07006412RICOH R5C592 MEMORYSTICK DRIVER
6413M: Maxim Levitsky <maximlevitsky@gmail.com>
6414S: Maintained
6415F: drivers/memstick/host/r592.*
6416
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417ROCKETPORT DRIVER
6418P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419W: http://www.comtrol.com
6420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006421F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006422F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006423
6424ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006425M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006427W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006429F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006430F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006431F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006432
Antti Palosaari91952bc2012-10-01 12:28:46 -03006433RTL2830 MEDIA DRIVER
6434M: Antti Palosaari <crope@iki.fi>
6435L: linux-media@vger.kernel.org
6436W: http://linuxtv.org/
6437W: http://palosaari.fi/linux/
6438Q: http://patchwork.linuxtv.org/project/linux-media/list/
6439T: git git://linuxtv.org/anttip/media_tree.git
6440S: Maintained
6441F: drivers/media/dvb-frontends/rtl2830*
6442
Larry Finger59840482008-11-12 17:13:09 -06006443RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006444M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006445L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006446W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006447T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006448S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006449F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006450
Larry Finger59840482008-11-12 17:13:09 -06006451RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006452M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006453M: Hin-Tak Leung <htl10@users.sourceforge.net>
6454M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006455L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006456W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006457T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006458S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006459F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006460
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006461RTL8192CE WIRELESS DRIVER
6462M: Larry Finger <Larry.Finger@lwfinger.net>
6463M: Chaoming Li <chaoming_li@realsil.com.cn>
6464L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006465W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006466T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6467S: Maintained
6468F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006469F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006470
6471S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006472M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006473L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006475F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006476
Linus Torvalds1da177e2005-04-16 15:20:36 -07006477S390
Joe Perches8b58be82009-07-29 15:04:30 -07006478M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6479M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006480M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006481L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006482W: http://www.ibm.com/developerworks/linux/linux390/
6483S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006484F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006485F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006486F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006487F: Documentation/s390/
6488F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006489
6490S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006491M: Ursula Braun <ursula.braun@de.ibm.com>
6492M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006493M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006494L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006495W: http://www.ibm.com/developerworks/linux/linux390/
6496S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006497F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006498
Felix Beckfeed9b62009-03-26 15:24:23 +01006499S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006500M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006501M: linux390@de.ibm.com
6502L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006503W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006504S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006505F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006506
Heiko Carstens5238da42006-02-11 17:56:01 -08006507S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006508M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006509M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006510L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006511W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006512S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006513F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514
Ursula Braundd96df22007-09-19 13:09:02 +02006515S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006516M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006517M: linux390@de.ibm.com
6518L: linux-s390@vger.kernel.org
6519W: http://www.ibm.com/developerworks/linux/linux390/
6520S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006521F: drivers/s390/net/*iucv*
6522F: include/net/iucv/
6523F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006524
Ben Dooks4dde7f72008-06-30 22:40:38 +01006525S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006526M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006527L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006528S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006529F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006530
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006531SAA7134 VIDEO4LINUX DRIVER
6532M: Mauro Carvalho Chehab <mchehab@redhat.com>
6533L: linux-media@vger.kernel.org
6534W: http://linuxtv.org
6535T: git git://linuxtv.org/media_tree.git
6536S: Odd fixes
6537F: Documentation/video4linux/saa7134/
6538F: drivers/media/pci/saa7134/
6539
Linus Torvalds1da177e2005-04-16 15:20:36 -07006540SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006541M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006542L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006543T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006544W: http://www.mihu.de/linux/saa7146
6545S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006546F: drivers/media/common/saa7146/
6547F: drivers/media/pci/saa7146/
6548F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006549
Corentin Chary92304a42011-12-05 12:38:35 -05006550SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006551M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006552L: platform-driver-x86@vger.kernel.org
6553S: Maintained
6554F: drivers/platform/x86/samsung-laptop.c
6555
Mark Brown4a109cc2010-09-24 10:50:46 +01006556SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006557M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006558L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6559S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006560F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006561
Jingoo Han0d89a282011-12-19 11:09:35 +09006562SAMSUNG FRAMEBUFFER DRIVER
6563M: Jingoo Han <jg1.han@samsung.com>
6564L: linux-fbdev@vger.kernel.org
6565S: Maintained
6566F: drivers/video/s3c-fb.c
6567
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006568SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6569M: Sangbeom Kim <sbkim73@samsung.com>
6570L: linux-kernel@vger.kernel.org
6571S: Supported
6572F: drivers/mfd/sec*.c
6573F: drivers/regulator/s2m*.c
6574F: drivers/regulator/s5m*.c
6575F: drivers/rtc/rtc-sec.c
6576F: include/linux/mfd/samsung/
6577
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006578SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6579M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6580L: linux-media@vger.kernel.org
6581L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6582S: Maintained
6583F: drivers/media/platform/s3c-camif/
6584F: include/media/s3c_camif.h
6585
Alan Coxca749e22011-03-18 13:56:14 +00006586SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006587M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00006588L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006589S: Maintained
Alan Coxca749e22011-03-18 13:56:14 +00006590F: drivers/tty/serial
6591
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306592SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006593M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306594S: Maintained
6595F: include/linux/dw_dmac.h
6596F: drivers/dma/dw_dmac_regs.h
6597F: drivers/dma/dw_dmac.c
6598
Thomas Gleixner88606e82010-12-14 21:37:13 +01006599TIMEKEEPING, NTP
John Stultz50363732012-12-13 13:08:47 -05006600M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01006601M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006602T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006603S: Supported
6604F: include/linux/clocksource.h
6605F: include/linux/time.h
6606F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006607F: include/uapi/linux/time.h
6608F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006609F: kernel/time/clocksource.c
6610F: kernel/time/time*.c
6611F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006612F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006613
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006614TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006615M: Huang Shijie <shijie8@gmail.com>
6616M: Kang Yong <kangyong@telegent.com>
6617M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006618S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006619F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006620
Linus Torvalds1da177e2005-04-16 15:20:36 -07006621SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006622M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006624F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006625
6626SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006627M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006628M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006629T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006630S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006631F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006632F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006633F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634
Chen Liqin6bcf6732009-06-13 15:24:33 +08006635SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006636M: Chen Liqin <liqin.chen@sunplusct.com>
6637M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006638W: http://www.sunplusct.com
6639S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006640F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006641
Linus Torvalds1da177e2005-04-16 15:20:36 -07006642SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006643M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006644L: linux-scsi@vger.kernel.org
6645W: http://www.kernel.dk
6646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006647F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006648
Roland Dreierfb50a832010-10-07 09:54:53 -07006649SCSI RDMA PROTOCOL (SRP) INITIATOR
6650M: David Dillow <dillowda@ornl.gov>
6651L: linux-rdma@vger.kernel.org
6652S: Supported
6653W: http://www.openfabrics.org
6654Q: http://patchwork.kernel.org/project/linux-rdma/list/
6655T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6656F: drivers/infiniband/ulp/srp/
6657F: include/scsi/srp.h
6658
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006660M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006661L: linux-scsi@vger.kernel.org
6662W: http://www.torque.net/sg
6663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006664F: drivers/scsi/sg.c
6665F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006666
6667SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006668M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006669L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006670T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6671T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6672T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006674F: drivers/scsi/
6675F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006676
6677SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006678M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006679L: linux-scsi@vger.kernel.org
6680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006681F: Documentation/scsi/st.txt
6682F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006683
6684SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006685M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006686M: Sridhar Samudrala <sri@us.ibm.com>
Neil Horman02c38d02012-10-24 09:26:51 +00006687M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006688L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006689W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006691F: Documentation/networking/sctp.txt
6692F: include/linux/sctp.h
6693F: include/net/sctp/
6694F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006695
6696SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006697M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006698S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006699F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006700F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006701F: drivers/watchdog/scx200_wdt.c
6702F: drivers/i2c/busses/scx200*
6703F: drivers/mtd/maps/scx200_docflash.c
6704F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006705
6706SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006707M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006709F: drivers/char/scx200_gpio.c
6710F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006711
6712SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006713M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006714S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006715F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006716
Sascha Sommer6a369132008-07-15 14:21:29 +02006717SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006718M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006719L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006721F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006722
Randy Dunlape7839f22008-10-12 16:11:45 -07006723SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006724M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006725L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006726T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6727S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006728F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006729F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006730
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006731SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006732M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006733L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006734L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006735S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006736F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006737
Ben Dooks0d1bb412009-06-14 13:52:37 +01006738SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006739M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006740L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006741S: Maintained
6742F: drivers/mmc/host/sdhci-s3c.c
6743
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006744SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006745M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006746L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006747L: linux-mmc@vger.kernel.org
6748S: Maintained
6749F: drivers/mmc/host/sdhci-spear.c
6750
James Morris8711cca2008-12-04 03:19:45 +11006751SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006752M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006753L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006754T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006755W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006756S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006757F: security/
James Morris8711cca2008-12-04 03:19:45 +11006758
Linus Torvalds1da177e2005-04-16 15:20:36 -07006759SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006760M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006761S: Supported
6762
6763SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006764M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006765M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006766M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006767L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006768W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006769T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006770S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006771F: include/linux/selinux*
6772F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006773F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006774
John Johansenc1c124e2010-07-29 14:48:09 -07006775APPARMOR SECURITY MODULE
6776M: John Johansen <john.johansen@canonical.com>
6777L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6778W: apparmor.wiki.kernel.org
6779T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6780S: Supported
6781F: security/apparmor/
6782
Jiri Slabycef2cf02007-05-08 00:31:45 -07006783SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006784M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006786F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006787F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006788
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006789SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006790M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006791L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006792T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006793S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006794F: drivers/ata/
6795F: include/linux/ata.h
6796F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006797
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306798SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006799M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006800L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006801W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006802S: Supported
6803F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306804
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006805SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006806M: Sathya Perla <sathya.perla@emulex.com>
6807M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6808M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006809L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006810W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006811S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006812F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006813
Ben Hutchings8ceee662008-04-27 12:55:59 +01006814SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006815M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006816M: Ben Hutchings <bhutchings@solarflare.com>
6817L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006818S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006819F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006820
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006821SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006822M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006824F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006825
6826SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006827M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006828L: linux-ia64@vger.kernel.org
6829S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006830F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006831F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006832F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006833
Linus Torvalds1da177e2005-04-16 15:20:36 -07006834SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006835M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006836L: linux-visws-devel@lists.sf.net
6837W: http://linux-visws.sf.net
6838S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006839F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006840
Jack Steiner75312612008-08-15 00:40:42 -07006841SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006842M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006843S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006844F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006845
Len Brown6349d992009-08-14 15:07:14 -04006846SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006847M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006848L: sfi-devel@simplefirmware.org
6849W: http://simplefirmware.org/
6850T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006851S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006852F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006853F: drivers/sfi/
6854F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006855
Linus Torvalds1da177e2005-04-16 15:20:36 -07006856SIMTEC EB110ATX (Chalice CATS)
6857P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006858P: Vincent Sanders <vince@simtec.co.uk>
6859M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006860W: http://www.simtec.co.uk/products/EB110ATX/
6861S: Supported
6862
6863SIMTEC EB2410ITX (BAST)
6864P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006865P: Vincent Sanders <vince@simtec.co.uk>
6866M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006867W: http://www.simtec.co.uk/products/EB2410ITX/
6868S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006869F: arch/arm/mach-s3c2410/mach-bast.c
6870F: arch/arm/mach-s3c2410/bast-ide.c
6871F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006872
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006873TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006874M: Sekhar Nori <nsekhar@ti.com>
6875M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306876L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306877T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006878Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006879S: Supported
6880F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006881F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006882
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03006883TI DAVINCI SERIES MEDIA DRIVER
6884M: Manjunath Hadli <manjunath.hadli@ti.com>
6885M: Prabhakar Lad <prabhakar.lad@ti.com>
6886L: linux-media@vger.kernel.org
6887L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
6888W: http://linuxtv.org/
6889Q: http://patchwork.linuxtv.org/project/linux-media/list/
6890T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
6891S: Supported
6892F: drivers/media/platform/davinci/
6893F: include/media/davinci/
6894
Francois Romieu92aab3c2005-07-30 13:11:18 +02006895SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006896M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006897L: netdev@vger.kernel.org
6898S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006899F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006900
Linus Torvalds1da177e2005-04-16 15:20:36 -07006901SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006902M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006903W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006904L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006905S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006906F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006907
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006908SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006909M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006910L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006912F: Documentation/i2c/busses/i2c-sis96x
6913F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006914
Linus Torvalds1da177e2005-04-16 15:20:36 -07006915SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006916M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006917W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006918S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006919F: Documentation/fb/sisfb.txt
6920F: drivers/video/sis/
6921F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006922
6923SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006924M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006925W: http://www.winischhofer.at/linuxsisusbvga.shtml
6926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006927F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006928
Christoph Lameter415ad262007-07-26 10:40:56 -07006929SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006930M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006931M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006932M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07006933L: linux-mm@kvack.org
6934S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006935F: include/linux/sl?b*.h
6936F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07006937
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006938SLEEPABLE READ-COPY UPDATE (SRCU)
6939M: Lai Jiangshan <laijs@cn.fujitsu.com>
6940M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6941W: http://www.rdrop.com/users/paulmck/RCU/
6942S: Supported
6943T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6944F: include/linux/srcu*
6945F: kernel/srcu*
6946
Casey Schaufler66372842012-05-23 18:34:52 -07006947SMACK SECURITY MODULE
6948M: Casey Schaufler <casey@schaufler-ca.com>
6949L: linux-security-module@vger.kernel.org
6950W: http://schaufler-ca.com
6951T: git git://git.gitorious.org/smack-next/kernel.git
6952S: Maintained
6953F: Documentation/security/Smack.txt
6954F: security/smack/
6955
Linus Torvalds1da177e2005-04-16 15:20:36 -07006956SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006957M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006958S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006959F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006960
Sakari Ailuse8e31622012-11-12 18:14:39 -03006961SMIA AND SMIA++ IMAGE SENSOR DRIVER
6962M: Sakari Ailus <sakari.ailus@iki.fi>
6963L: linux-media@vger.kernel.org
6964S: Maintained
6965F: drivers/media/i2c/smiapp
6966F: include/media/smiapp.h
6967F: drivers/media/i2c/smiapp-pll.c
6968F: drivers/media/i2c/smiapp-pll.h
6969
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006970SMM665 HARDWARE MONITOR DRIVER
6971M: Guenter Roeck <linux@roeck-us.net>
6972L: lm-sensors@lm-sensors.org
6973S: Maintained
6974F: Documentation/hwmon/smm665
6975F: drivers/hwmon/smm665.c
6976
Steve Glendinning9df73052010-08-14 21:08:54 +02006977SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006978M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006979L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006980S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006981F: Documentation/hwmon/emc2103
6982F: drivers/hwmon/emc2103.c
6983
Hans de Goedea98d5062011-03-21 17:59:36 +01006984SMSC SCH5627 HARDWARE MONITOR DRIVER
6985M: Hans de Goede <hdegoede@redhat.com>
6986L: lm-sensors@lm-sensors.org
6987S: Supported
6988F: Documentation/hwmon/sch5627
6989F: drivers/hwmon/sch5627.c
6990
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006991SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006992M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006993L: lm-sensors@lm-sensors.org
6994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006995F: Documentation/hwmon/smsc47b397
6996F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006997
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006998SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006999M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007000L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007002F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007003F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007004
Steve Glendinning2cb37722008-12-11 20:54:30 -08007005SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007006M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007007L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007008S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007009F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007010
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007011SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007012M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007013L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007014S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007015F: drivers/video/smscufx.c
7016
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007017SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07007018M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007019L: linux-altix@sgi.com
7020L: linux-ia64@vger.kernel.org
7021W: http://www.sgi.com/altix
7022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007023F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007024
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007025SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007026M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007027L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007028T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007029S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007030F: include/media/soc*
7031F: drivers/media/i2c/soc_camera/
7032F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007033
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007034SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007035M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007037F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007038
Linus Torvalds1da177e2005-04-16 15:20:36 -07007039SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007040M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007041L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007042S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007043F: drivers/md/
7044F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007045F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007046
Linus Torvalds1da177e2005-04-16 15:20:36 -07007047SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007048M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007049L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007050S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007051F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007052
Michael Buesch61e115a2007-09-18 15:12:50 -04007053SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007054M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007055L: netdev@vger.kernel.org
7056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007057F: drivers/ssb/
7058F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007059
Linus Torvalds1da177e2005-04-16 15:20:36 -07007060SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007061M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd09448532010-02-11 10:40:13 -05007062L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007063W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007065F: Documentation/laptops/sony-laptop.txt
7066F: drivers/char/sonypi.c
7067F: drivers/platform/x86/sony-laptop.c
7068F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007069
Alex Dubovbaf85322008-02-09 10:20:54 -08007070SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007071M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007072W: http://tifmxx.berlios.de/
7073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007074F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007075
Linus Torvalds1da177e2005-04-16 15:20:36 -07007076SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007077M: Jaroslav Kysela <perex@perex.cz>
7078M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007079L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007080W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007081T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007082T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007083S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007084F: Documentation/sound/
7085F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007086F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007087F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007088
Mark Brownbd903bd2008-11-19 19:16:05 +00007089SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00007090M: Liam Girdwood <lgirdwood@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007091M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00007092T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007093L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007094W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007095S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007096F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007097F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007098
Sam Ravnborg473321f2009-01-04 15:47:49 -08007099SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007100M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007101L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007102Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007103T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7104T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007106F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007107F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007108
David S. Miller6404fcc2010-03-16 01:00:17 -07007109SPARC SERIAL DRIVERS
7110M: "David S. Miller" <davem@davemloft.net>
7111L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007112T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7113T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007114S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007115F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007116F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007117F: drivers/tty/serial/sunhv.c
7118F: drivers/tty/serial/sunsab.c
7119F: drivers/tty/serial/sunsab.h
7120F: drivers/tty/serial/sunsu.c
7121F: drivers/tty/serial/sunzilog.c
7122F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007123
Christopher Li389325b2012-04-05 14:25:14 -07007124SPARSE CHECKER
7125M: "Christopher Li" <sparse@chrisli.org>
7126L: linux-sparse@vger.kernel.org
7127W: https://sparse.wiki.kernel.org/
7128T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7129T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7130S: Maintained
7131F: include/linux/compiler.h
7132
viresh kumarfc0c1952010-04-01 12:31:21 +01007133SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007134M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307135M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007136L: spear-devel@list.st.com
7137L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007138W: http://www.st.com/spear
7139S: Maintained
7140F: arch/arm/plat-spear/
7141
Viresh Kumar71e09a92012-04-20 22:39:48 +05307142SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007143M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307144M: Shiraz Hashim <shiraz.hashim@st.com>
7145L: spear-devel@list.st.com
7146L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7147W: http://www.st.com/spear
7148S: Maintained
7149F: arch/arm/mach-spear13xx/
7150
viresh kumarfc0c1952010-04-01 12:31:21 +01007151SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007152M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307153M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007154L: spear-devel@list.st.com
7155L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007156W: http://www.st.com/spear
7157S: Maintained
7158F: arch/arm/mach-spear3xx/
7159
7160SPEAR6XX MACHINE SUPPORT
7161M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307162M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007163M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007164L: spear-devel@list.st.com
7165L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007166W: http://www.st.com/spear
7167S: Maintained
7168F: arch/arm/mach-spear6xx/
7169
7170SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007171M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007172L: spear-devel@list.st.com
7173L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007174W: http://www.st.com/spear
7175S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307176F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007177
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007178SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007179M: Grant Likely <grant.likely@secretlab.ca>
Mark Brownf28037d2013-01-14 11:17:19 +09007180M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007181L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08007182Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06007183T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007185F: Documentation/spi/
7186F: drivers/spi/
7187F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007188F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007189
Jim Lewis2752e4012006-09-29 02:01:19 -07007190SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007191M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7192M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e4012006-09-29 02:01:19 -07007193L: netdev@vger.kernel.org
7194S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007195F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007196F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e4012006-09-29 02:01:19 -07007197
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007198SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007199M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007200L: linuxppc-dev@lists.ozlabs.org
7201L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007202W: http://www.ibm.com/developerworks/power/cell/
7203S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007204F: Documentation/filesystems/spufs.txt
7205F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007206
Phillip Lougherfc555842009-01-05 08:46:29 +00007207SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007208M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007209L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7210W: http://squashfs.org.uk
7211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007212F: Documentation/filesystems/squashfs.txt
7213F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007214
Linus Torvalds1da177e2005-04-16 15:20:36 -07007215SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007216M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007218F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007219
Linus Torvalds26e9a392008-10-17 09:50:12 -07007220STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007221M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007222L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007223S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007224
Linus Torvalds26e9a392008-10-17 09:50:12 -07007225STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007226M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007227T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007228L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007229S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007230F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007231
Joe Perchesc8c8b102011-07-05 09:42:12 -07007232STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7233M: Henk de Groot <pe1dnn@amsat.org>
7234S: Odd Fixes
7235F: drivers/staging/wlags49_h2/
7236F: drivers/staging/wlags49_h25/
7237
Joe Perchesc9555152011-07-05 09:42:01 -07007238STAGING - ASUS OLED
7239M: Jakub Schmidtke <sjakub@gmail.com>
7240S: Odd Fixes
7241F: drivers/staging/asus_oled/
7242
Joe Perchesebd3d012011-07-05 09:42:02 -07007243STAGING - COMEDI
7244M: Ian Abbott <abbotti@mev.co.uk>
7245M: Mori Hess <fmhess@users.sourceforge.net>
7246S: Odd Fixes
7247F: drivers/staging/comedi/
7248
Joe Perches8ca572c2011-07-05 09:42:03 -07007249STAGING - CRYSTAL HD VIDEO DECODER
7250M: Naren Sankar <nsankar@broadcom.com>
7251M: Jarod Wilson <jarod@wilsonet.com>
7252M: Scott Davilla <davilla@4pi.com>
7253M: Manu Abraham <abraham.manu@gmail.com>
7254S: Odd Fixes
7255F: drivers/staging/crystalhd/
7256
Joe Perches0f16ffc2011-07-05 09:42:04 -07007257STAGING - ECHO CANCELLER
7258M: Steve Underwood <steveu@coppice.org>
7259M: David Rowe <david@rowetel.com>
7260S: Odd Fixes
7261F: drivers/staging/echo/
7262
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007263STAGING - ET131X NETWORK DRIVER
7264M: Mark Einon <mark.einon@gmail.com>
7265S: Odd Fixes
7266F: drivers/staging/et131x/
7267
Joe Perchesa0138162011-07-05 15:21:34 -07007268STAGING - FLARION FT1000 DRIVERS
7269M: Marek Belisko <marek.belisko@gmail.com>
7270S: Odd Fixes
7271F: drivers/staging/ft1000/
7272
Joe Perchesec3fab92011-07-05 09:42:05 -07007273STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7274M: David Täht <d@teklibre.com>
7275S: Odd Fixes
7276F: drivers/staging/frontier/
7277
Joe Perches6c1bb422011-07-05 09:42:07 -07007278STAGING - INDUSTRIAL IO
7279M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007280L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007281S: Odd Fixes
7282F: drivers/staging/iio/
7283
Joe Perchesa0138162011-07-05 15:21:34 -07007284STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7285M: Jarod Wilson <jarod@wilsonet.com>
7286W: http://www.lirc.org/
7287S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007288F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007289
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007290STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007291M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007292M: Marc Dietrich <marvin24@gmx.de>
7293L: ac100@lists.launchpad.net (moderated for non-subscribers)
7294S: Maintained
7295F: drivers/staging/nvec/
7296
Joe Perchesa0138162011-07-05 15:21:34 -07007297STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7298M: Andres Salomon <dilinger@queued.net>
7299M: Chris Ball <cjb@laptop.org>
7300M: Jon Nettleton <jon.nettleton@gmail.com>
7301W: http://wiki.laptop.org/go/DCON
7302S: Odd Fixes
7303F: drivers/staging/olpc_dcon/
7304
Chris Kelly94cfdd12012-03-14 10:55:42 +00007305STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00007306M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007307M: Chris Kelly <ckelly@ozmodevices.com>
7308S: Maintained
7309F: drivers/staging/ozwpan/
7310
Joe Perchesa0138162011-07-05 15:21:34 -07007311STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007312M: Willy Tarreau <willy@meta-x.org>
7313S: Odd Fixes
7314F: drivers/staging/panel/
7315
Joe Perchesa0138162011-07-05 15:21:34 -07007316STAGING - REALTEK RTL8712U DRIVERS
7317M: Larry Finger <Larry.Finger@lwfinger.net>
7318M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7319S: Odd Fixes
7320F: drivers/staging/rtl8712/
7321
Joe Perches9629fa82011-07-05 09:42:09 -07007322STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7323M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7324S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007325F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007326
Joe Perchesa0138162011-07-05 15:21:34 -07007327STAGING - SOFTLOGIC 6x10 MPEG CODEC
7328M: Ben Collins <bcollins@bluecherry.net>
7329S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007330F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007331
7332STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7333M: William Hubbs <w.d.hubbs@gmail.com>
7334M: Chris Brannon <chris@the-brannons.com>
7335M: Kirk Reiser <kirk@braille.uwo.ca>
7336M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7337L: speakup@braille.uwo.ca
7338W: http://www.linux-speakup.org/
7339S: Odd Fixes
7340F: drivers/staging/speakup/
7341
7342STAGING - TI DSP BRIDGE DRIVERS
Chen Ganga8906b02013-01-11 14:32:17 -08007343M: Omar Ramirez Luna <omar.ramirez@copitl.com>
Joe Perchesa0138162011-07-05 15:21:34 -07007344S: Odd Fixes
7345F: drivers/staging/tidspbridge/
7346
Joe Perchesa0138162011-07-05 15:21:34 -07007347STAGING - USB ENE SM/MS CARD READER DRIVER
7348M: Al Cho <acho@novell.com>
7349S: Odd Fixes
7350F: drivers/staging/keucr/
7351
Joe Perchesb3e871c2011-07-05 09:42:10 -07007352STAGING - VIA VT665X DRIVERS
7353M: Forest Bond <forest@alittletooquiet.net>
7354S: Odd Fixes
7355F: drivers/staging/vt665?/
7356
Joe Perches81a9a522011-07-05 09:42:11 -07007357STAGING - WINBOND IS89C35 WLAN USB DRIVER
7358M: Pavel Machek <pavel@ucw.cz>
7359S: Odd Fixes
7360F: drivers/staging/winbond/
7361
Joe Perches709bcb02011-07-05 09:42:13 -07007362STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007363M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007364S: Odd Fixes
7365F: drivers/staging/xgifb/
7366
Linus Torvalds1da177e2005-04-16 15:20:36 -07007367STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007368M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007369S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007370F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007371
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007372SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007373M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007374W: http://sammy.net/sun3/
7375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007376F: arch/m68k/kernel/*sun3*
7377F: arch/m68k/sun3*/
7378F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007379F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007380
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007381SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007382M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007383L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007384W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007385Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007386T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007387S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007388F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007389F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007390F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007391
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007392SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007393M: Len Brown <len.brown@intel.com>
7394M: Pavel Machek <pavel@ucw.cz>
7395M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007396L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007397S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007398F: Documentation/power/
7399F: arch/x86/kernel/acpi/
7400F: drivers/base/power/
7401F: kernel/power/
7402F: include/linux/suspend.h
7403F: include/linux/freezer.h
7404F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007405
7406SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007407M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007408L: linux-video@atrey.karlin.mff.cuni.cz
7409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007410F: Documentation/svga.txt
7411F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007412
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007413SWIOTLB SUBSYSTEM
7414M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7415L: linux-kernel@vger.kernel.org
7416S: Supported
7417F: lib/swiotlb.c
7418F: arch/*/kernel/pci-swiotlb.c
7419F: include/linux/swiotlb.h
7420
Linus Torvalds1da177e2005-04-16 15:20:36 -07007421SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007422M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007424F: Documentation/filesystems/sysv-fs.txt
7425F: fs/sysv/
7426F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007427
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007428TARGET SUBSYSTEM
7429M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7430L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007431L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007432L: http://groups.google.com/group/linux-iscsi-target-dev
7433W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007434T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007435S: Supported
7436F: drivers/target/
7437F: include/target/
7438F: Documentation/target/
7439
Alan Cox4e688522008-04-30 00:52:11 -07007440TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007441M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007443F: Documentation/accounting/taskstats*
7444F: include/linux/taskstats*
7445F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007446
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007447TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007448M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007449L: netdev@vger.kernel.org
7450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007451F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007452F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07007453F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007454
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007455TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007456M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7457M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007458W: http://tcp-lp-mod.sourceforge.net/
7459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007460F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007461
Antti Palosaari91952bc2012-10-01 12:28:46 -03007462TDA10071 MEDIA DRIVER
7463M: Antti Palosaari <crope@iki.fi>
7464L: linux-media@vger.kernel.org
7465W: http://linuxtv.org/
7466W: http://palosaari.fi/linux/
7467Q: http://patchwork.linuxtv.org/project/linux-media/list/
7468T: git git://linuxtv.org/anttip/media_tree.git
7469S: Maintained
7470F: drivers/media/dvb-frontends/tda10071*
7471
7472TDA18212 MEDIA DRIVER
7473M: Antti Palosaari <crope@iki.fi>
7474L: linux-media@vger.kernel.org
7475W: http://linuxtv.org/
7476W: http://palosaari.fi/linux/
7477Q: http://patchwork.linuxtv.org/project/linux-media/list/
7478T: git git://linuxtv.org/anttip/media_tree.git
7479S: Maintained
7480F: drivers/media/tuners/tda18212*
7481
7482TDA18218 MEDIA DRIVER
7483M: Antti Palosaari <crope@iki.fi>
7484L: linux-media@vger.kernel.org
7485W: http://linuxtv.org/
7486W: http://palosaari.fi/linux/
7487Q: http://patchwork.linuxtv.org/project/linux-media/list/
7488T: git git://linuxtv.org/anttip/media_tree.git
7489S: Maintained
7490F: drivers/media/tuners/tda18218*
7491
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007492TDA18271 MEDIA DRIVER
7493M: Michael Krufky <mkrufky@linuxtv.org>
7494L: linux-media@vger.kernel.org
7495W: http://linuxtv.org/
7496W: http://github.com/mkrufky
7497Q: http://patchwork.linuxtv.org/project/linux-media/list/
7498T: git git://linuxtv.org/mkrufky/tuners.git
7499S: Maintained
7500F: drivers/media/tuners/tda18271*
7501
Michael Krufkye48307a2012-10-02 00:56:33 -03007502TDA827x MEDIA DRIVER
7503M: Michael Krufky <mkrufky@linuxtv.org>
7504L: linux-media@vger.kernel.org
7505W: http://linuxtv.org/
7506W: http://github.com/mkrufky
7507Q: http://patchwork.linuxtv.org/project/linux-media/list/
7508T: git git://linuxtv.org/mkrufky/tuners.git
7509S: Maintained
7510F: drivers/media/tuners/tda8290.*
7511
Michael Krufky66cf9212012-10-02 00:56:28 -03007512TDA8290 MEDIA DRIVER
7513M: Michael Krufky <mkrufky@linuxtv.org>
7514L: linux-media@vger.kernel.org
7515W: http://linuxtv.org/
7516W: http://github.com/mkrufky
7517Q: http://patchwork.linuxtv.org/project/linux-media/list/
7518T: git git://linuxtv.org/mkrufky/tuners.git
7519S: Maintained
7520F: drivers/media/tuners/tda8290.*
7521
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007522TEA5761 TUNER DRIVER
7523M: Mauro Carvalho Chehab <mchehab@redhat.com>
7524L: linux-media@vger.kernel.org
7525W: http://linuxtv.org
7526T: git git://linuxtv.org/media_tree.git
7527S: Odd fixes
7528F: drivers/media/tuners/tea5761.*
7529
7530TEA5767 TUNER DRIVER
7531M: Mauro Carvalho Chehab <mchehab@redhat.com>
7532L: linux-media@vger.kernel.org
7533W: http://linuxtv.org
7534T: git git://linuxtv.org/media_tree.git
7535S: Maintained
7536F: drivers/media/tuners/tea5767.*
7537
Jiri Pirko3d249d42011-11-11 22:16:48 +00007538TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +00007539M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +00007540L: netdev@vger.kernel.org
7541S: Supported
7542F: drivers/net/team/
7543F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007544F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00007545
Vivien Didelot7d029122013-01-04 16:18:14 -05007546TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
7547M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
7548S: Maintained
7549F: arch/x86/platform/ts5500/
7550
Sean Young40ad4a32012-11-19 10:32:53 -03007551TECHNOTREND USB IR RECEIVER
7552M: Sean Young <sean@mess.org>
7553L: linux-media@vger.kernel.org
7554S: Maintained
7555F: drivers/media/rc/ttusbir.c
7556
Erik Gilling84b94142010-06-09 15:35:53 -07007557TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007558M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007559L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007560Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7561T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007562S: Supported
7563F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007564F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007565F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007566
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007567TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007568M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007569L: netdev@vger.kernel.org
7570S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007571F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007572
Alan Cox4e688522008-04-30 00:52:11 -07007573Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007574M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007575S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007576F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007577
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007578TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007579M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007580M: Max Filippov <jcmvbkbc@gmail.com>
7581L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007583F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007584
Zhang Ruid3fb6952012-11-15 08:58:27 +08007585THERMAL
7586M: Zhang Rui <rui.zhang@intel.com>
7587L: linux-pm@vger.kernel.org
7588T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7589S: Supported
7590F: drivers/thermal/
7591F: include/linux/thermal.h
7592
Alan Cox4e688522008-04-30 00:52:11 -07007593THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007594M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007595L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05007596L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007597W: http://ibm-acpi.sourceforge.net
7598W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007599T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007601F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007602
Alex Dubov4020f2d2006-10-04 02:15:37 -07007603TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007604M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007605S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007606F: drivers/misc/tifm*
7607F: drivers/mmc/host/tifm_sd.c
7608F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007609
M R Swami Reddy152ad442012-04-02 20:02:31 +05307610TI LM49xxx FAMILY ASoC CODEC DRIVERS
7611M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307612M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307613L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7614S: Maintained
7615F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307616F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307617
Kim, Milo0edd8072012-12-17 16:01:17 -08007618TI LP855x BACKLIGHT DRIVER
7619M: Milo Kim <milo.kim@ti.com>
7620S: Maintained
7621F: Documentation/backlight/lp855x-driver.txt
7622F: drivers/video/backlight/lp855x_bl.c
7623F: include/linux/platform_data/lp855x.h
7624
Kim, Milofaf13f62012-12-10 05:27:03 +00007625TI LP8727 CHARGER DRIVER
7626M: Milo Kim <milo.kim@ti.com>
7627S: Maintained
7628F: drivers/power/lp8727_charger.c
7629F: include/linux/platform_data/lp8727.h
7630
Kim, Milo22f12292012-12-10 05:27:55 +00007631TI LP8788 MFD DRIVER
7632M: Milo Kim <milo.kim@ti.com>
7633S: Maintained
7634F: drivers/iio/adc/lp8788_adc.c
7635F: drivers/leds/leds-lp8788.c
7636F: drivers/mfd/lp8788*.c
7637F: drivers/power/lp8788-charger.c
7638F: drivers/regulator/lp8788-*.c
7639F: include/linux/mfd/lp8788*.h
7640
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007641TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007642M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007643L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7644S: Maintained
7645F: sound/soc/codecs/twl4030*
7646
Luciano Coelho90921012011-11-20 21:40:41 +02007647TI WILINK WIRELESS DRIVERS
7648M: Luciano Coelho <coelho@ti.com>
7649L: linux-wireless@vger.kernel.org
7650W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7651W: http://wireless.kernel.org/en/users/Drivers/wl1251
7652T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7653S: Maintained
7654F: drivers/net/wireless/ti/
7655F: include/linux/wl12xx.h
7656
Per Lidene86eaa32006-01-12 16:45:18 +01007657TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007658M: Jon Maloy <jon.maloy@ericsson.com>
7659M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007660L: netdev@vger.kernel.org (core kernel code)
7661L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007662W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007663S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007664F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007665F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007666
Chris Metcalf867e3592010-05-28 23:09:12 -04007667TILE ARCHITECTURE
7668M: Chris Metcalf <cmetcalf@tilera.com>
7669W: http://www.tilera.com/scm/
7670S: Supported
7671F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007672F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007673F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007674F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007675
Linus Torvalds1da177e2005-04-16 15:20:36 -07007676TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007677M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007678L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007679W: http://sourceforge.net/projects/tlan/
7680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007681F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007682F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007683
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007684TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007685M: Kentaro Takeda <takedakn@nttdata.co.jp>
7686M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007687L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7688L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007689L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7690L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7691W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007692T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007693S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007694F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007695
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007696TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007697M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05007698L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007699S: Maintained
7700F: drivers/platform/x86/topstar-laptop.c
7701
Linus Torvalds1da177e2005-04-16 15:20:36 -07007702TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05007703L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007704S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007705F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007706
7707TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007708M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007709L: tlinux-users@tce.toshiba-dme.co.jp
7710W: http://www.buzzard.org.uk/toshiba/
7711S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007712F: drivers/char/toshiba.c
7713F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007714F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007715
Pierre Ossmand719f902009-03-24 21:06:09 +01007716TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007717M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007718M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007719L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007720S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007721F: drivers/mmc/host/tmio_mmc*
7722F: drivers/mmc/host/sh_mobile_sdhi.c
7723F: include/linux/mmc/tmio.h
7724F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007725
Hugh Dickins98f32602009-05-21 20:33:58 +01007726TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007727M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007728L: linux-mm@kvack.org
7729S: Maintained
7730F: include/linux/shmem_fs.h
7731F: mm/shmem.c
7732
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02007733TM6000 VIDEO4LINUX DRIVER
7734M: Mauro Carvalho Chehab <mchehab@redhat.com>
7735L: linux-media@vger.kernel.org
7736W: http://linuxtv.org
7737T: git git://linuxtv.org/media_tree.git
7738S: Odd fixes
7739F: drivers/media/usb/tm6000/
7740
Alan Cox4e688522008-04-30 00:52:11 -07007741TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007742M: Kent Yoder <key@linux.vnet.ibm.com>
7743M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007744W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007745M: Marcel Selhorst <tpmdd@selhorst.net>
7746M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007747W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007748L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007750F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007751
Joe Perchesd6f005a2009-10-26 16:49:40 -07007752TRACING
7753M: Steven Rostedt <rostedt@goodmis.org>
7754M: Frederic Weisbecker <fweisbec@gmail.com>
7755M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007756T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007757S: Maintained
7758F: Documentation/trace/ftrace.txt
7759F: arch/*/*/*/ftrace.h
7760F: arch/*/kernel/ftrace.c
7761F: include/*/ftrace.h
7762F: include/linux/trace*.h
7763F: include/trace/
7764F: kernel/trace/
7765
Linus Torvalds1da177e2005-04-16 15:20:36 -07007766TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007767M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007768T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007769S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007770K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007771
Alan Cox4e688522008-04-30 00:52:11 -07007772TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007773M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01007774M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08007775S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007776T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007777F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007778F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007779F: include/linux/serial_core.h
7780F: include/linux/serial.h
7781F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007782F: include/uapi/linux/serial_core.h
7783F: include/uapi/linux/serial.h
7784F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007785
Antti Palosaari91952bc2012-10-01 12:28:46 -03007786TUA9001 MEDIA DRIVER
7787M: Antti Palosaari <crope@iki.fi>
7788L: linux-media@vger.kernel.org
7789W: http://linuxtv.org/
7790W: http://palosaari.fi/linux/
7791Q: http://patchwork.linuxtv.org/project/linux-media/list/
7792T: git git://linuxtv.org/anttip/media_tree.git
7793S: Maintained
7794F: drivers/media/tuners/tua9001*
7795
Grant Grundler740db6d2008-02-17 11:53:49 -07007796TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007797M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007798L: netdev@vger.kernel.org
7799S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007800F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007801
7802TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00007803M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007804W: http://vtun.sourceforge.net/tun
7805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007806F: Documentation/networking/tuntap.txt
7807F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007808
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007809TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007810M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007812F: drivers/tc/
7813F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007814
Linus Torvalds1da177e2005-04-16 15:20:36 -07007815U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007816M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007817L: linux-scsi@vger.kernel.org
7818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007819F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007820
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007821UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007822M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007823M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007824L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007825T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007826W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7827S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007828F: Documentation/filesystems/ubifs.txt
7829F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007830
Alan Coxcc2020e2008-05-19 14:21:51 +01007831UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007832M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007833W: http://www.uclinux.org/
7834L: uclinux-dev@uclinux.org (subscribers-only)
7835S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007836F: arch/m68k/*/*_no.*
7837F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007838
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007839UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007840M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007841W: http://uclinux-h8.sourceforge.jp/
7842S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007843F: arch/h8300/
7844F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007845F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007846
Linus Torvalds1da177e2005-04-16 15:20:36 -07007847UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007848M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007849S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007850F: Documentation/filesystems/udf.txt
7851F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007852
Alan Coxcc2020e2008-05-19 14:21:51 +01007853UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007854M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007856F: Documentation/filesystems/ufs.txt
7857F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007858
David Herrmann0a09d3a2012-06-10 15:16:28 +02007859UHID USERSPACE HID IO DRIVER:
7860M: David Herrmann <dh.herrmann@googlemail.com>
7861L: linux-input@vger.kernel.org
7862S: Maintained
7863F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007864F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02007865
David Vrabel18332a82008-09-17 16:34:44 +01007866ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007867L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007868S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007869F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007870F: include/linux/uwb.h
7871F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007872
GuanXuetaob31d8272011-01-16 00:35:49 +08007873UNICORE32 ARCHITECTURE:
7874M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7875W: http://mprc.pku.edu.cn/~guanxuetao/linux
7876S: Maintained
7877T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7878F: arch/unicore32/
7879
Tony Finchd8379ab2009-11-27 15:50:30 +00007880UNIFDEF
7881M: Tony Finch <dot@dotat.at>
7882W: http://dotat.at/prog/unifdef
7883S: Maintained
7884F: scripts/unifdef.c
7885
Linus Torvalds1da177e2005-04-16 15:20:36 -07007886UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007887M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007888W: http://www.kernel.dk
7889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007890F: Documentation/cdrom/
7891F: drivers/cdrom/cdrom.c
7892F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007893F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007894
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307895UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7896M: Vinayak Holikatti <vinholikatti@gmail.com>
7897M: Santosh Y <santoshsy@gmail.com>
7898L: linux-scsi@vger.kernel.org
7899S: Supported
7900F: Documentation/scsi/ufs.txt
7901F: drivers/scsi/ufs/
7902
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007903UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007904M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007905W: http://www.linux-mtd.infradead.org/
7906L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007907T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007908S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007909F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007910F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007911F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007912
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007913UNSORTED BLOCK IMAGES (UBI) Fastmap
7914M: Richard Weinberger <richard@nod.at>
7915L: linux-mtd@lists.infradead.org
7916S: Maintained
7917F: drivers/mtd/ubi/fastmap.c
7918
Linus Torvalds1da177e2005-04-16 15:20:36 -07007919USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007920M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007921L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007923F: Documentation/usb/acm.txt
7924F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007925
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02007926USB AR5523 WIRELESS DRIVER
7927M: Pontus Fuchs <pontus.fuchs@gmail.com>
7928L: linux-wireless@vger.kernel.org
7929S: Maintained
7930F: drivers/net/wireless/ath/ar5523/
7931
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007932USB ATTACHED SCSI
7933M: Matthew Wilcox <willy@linux.intel.com>
7934M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7935L: linux-usb@vger.kernel.org
7936L: linux-scsi@vger.kernel.org
7937S: Supported
7938F: drivers/usb/storage/uas.c
7939
Linus Torvalds1da177e2005-04-16 15:20:36 -07007940USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007941M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007942L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007944F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007945F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007946
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007947USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007948M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007949L: linux-usb@vger.kernel.org
7950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007951F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007952
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007953USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007954M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007955L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007956W: http://www.linux-usb.org/usbnet
7957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007958F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007959
Alan Coxcc2020e2008-05-19 14:21:51 +01007960USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007961M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007962L: rio500-users@lists.sourceforge.net
7963W: http://rio500.sourceforge.net
7964S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007965F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007966
Linus Torvalds1da177e2005-04-16 15:20:36 -07007967USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007968M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007969L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007970S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007971F: Documentation/usb/ehci.txt
7972F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007973
David Brownell69ae9e32006-11-14 02:03:31 -08007974USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007975M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007976L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007977W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007978T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007980F: drivers/usb/gadget/
7981F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007982
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007983USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007984M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007985L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007986T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007987S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007988F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007989F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007990
matt mooney857aab32011-06-17 15:50:46 -07007991USB/IP DRIVERS
7992M: Matt Mooney <mfm@muteddisk.com>
7993L: linux-usb@vger.kernel.org
7994S: Maintained
7995F: drivers/staging/usbip/
7996
Olav Kongas959eea22005-11-03 17:38:14 +02007997USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007998M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007999L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008001F: drivers/usb/host/isp116x*
8002F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008003
Linus Torvalds1da177e2005-04-16 15:20:36 -07008004USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008005M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008006L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008008F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008009
8010USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008011M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008012L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008013L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008014S: Maintained
8015W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008016F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008017
Clemens Ladischaf399172011-01-10 16:32:54 +01008018USB MIDI DRIVER
8019M: Clemens Ladisch <clemens@ladisch.de>
8020L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8021T: git git://git.alsa-project.org/alsa-kernel.git
8022S: Maintained
8023F: sound/usb/midi.*
8024
Linus Torvalds1da177e2005-04-16 15:20:36 -07008025USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008026M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008027L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008029F: Documentation/usb/ohci.txt
8030F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008031
Matthias Urlichsba460e42005-07-14 00:33:47 -07008032USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008033M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008034L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008036F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008037
Linus Torvalds1da177e2005-04-16 15:20:36 -07008038USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008039M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008040L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008041L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008042W: http://pegasus2.sourceforge.net/
8043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008044F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008045
Felipe Balbid3ad5582012-05-21 16:24:49 +03008046USB PHY LAYER
8047M: Felipe Balbi <balbi@ti.com>
8048L: linux-usb@vger.kernel.org
8049T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8050S: Maintained
8051F: drivers/usb/phy/
8052F: drivers/usb/otg/
8053
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008054USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008055M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008056L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008057S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008058F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008059
8060USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008061M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008062L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008063L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008064W: http://pegasus2.sourceforge.net/
8065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008066F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008067
Alan Cox4e688522008-04-30 00:52:11 -07008068USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008069M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008070L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008072F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008073
8074USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008075M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008076L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008077S: Maintained
8078W: http://geocities.com/i0xox0i
8079W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008080F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008081
Linus Torvalds1da177e2005-04-16 15:20:36 -07008082USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008083M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008084W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008086F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008087
8088USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008089M: Peter Berger <pberger@brimson.com>
8090M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008091L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008093F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008094
8095USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008096M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008097L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008098S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008099F: Documentation/usb/usb-serial.txt
8100F: drivers/usb/serial/generic.c
8101F: drivers/usb/serial/usb-serial.c
8102F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008103
Linus Torvalds1da177e2005-04-16 15:20:36 -07008104USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008105M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008106L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008108F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008109
8110USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008111M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008112L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008114F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008115
8116USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008117M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008118L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008119W: http://www.connecttech.com
8120S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008121F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008122
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008123USB SMSC75XX ETHERNET DRIVER
8124M: Steve Glendinning <steve.glendinning@shawell.net>
8125L: netdev@vger.kernel.org
8126S: Maintained
8127F: drivers/net/usb/smsc75xx.*
8128
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008129USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008130M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008131L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008133F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008134
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008135USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008136M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008137L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008138L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008139T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008140W: http://www.linux-projects.org
8141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008142F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008143F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008144
8145USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008146M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008147L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008148W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008149T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008150S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008151F: Documentation/usb/
8152F: drivers/net/usb/
8153F: drivers/usb/
8154F: include/linux/usb.h
8155F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008156
8157USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008158M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008159L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008161F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008162
David Brownell69ae9e32006-11-14 02:03:31 -08008163USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008164M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008165L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008166W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008168F: drivers/net/usb/usbnet.c
8169F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008170
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008171USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008172M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008173L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008174L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008175T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008176W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008177S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008178F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008179F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008180
Laurent Pinchart8282da42012-10-04 02:32:42 +02008181USB WEBCAM GADGET
8182M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8183L: linux-usb@vger.kernel.org
8184S: Maintained
8185F: drivers/usb/gadget/*uvc*.c
8186F: drivers/usb/gadget/webcam.c
8187
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008188USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008189M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008190L: linux-wireless@vger.kernel.org
8191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008192F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008193
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008194USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008195M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008196L: linux-usb@vger.kernel.org
8197S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008198F: drivers/usb/host/xhci*
8199F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008200
Linus Torvalds1da177e2005-04-16 15:20:36 -07008201USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008202L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008203W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008204S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008205F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008206
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008207USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008208M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008209L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008210L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008211T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008212W: http://royale.zerezo.com/zr364xx/
8213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008214F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008215F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008216
Randy Dunlape7839f22008-10-12 16:11:45 -07008217USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008218M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008219M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008220L: user-mode-linux-devel@lists.sourceforge.net
8221L: user-mode-linux-user@lists.sourceforge.net
8222W: http://user-mode-linux.sourceforge.net
8223S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008224F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008225F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008226F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008227F: fs/hostfs/
8228F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008229
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008230USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008231M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008232M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008234F: Documentation/DocBook/uio-howto.tmpl
8235F: drivers/uio/
8236F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008237
Karel Zak256cccb2012-06-01 10:13:09 +02008238UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008239M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008240L: util-linux@vger.kernel.org
8241W: http://en.wikipedia.org/wiki/Util-linux
8242T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008243S: Maintained
8244
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008245UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008246M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008247L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008248W: http://dev.gentoo.org/~spock/projects/uvesafb/
8249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008250F: Documentation/fb/uvesafb.txt
8251F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008252
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008253VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008254M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008256F: Documentation/filesystems/vfat.txt
8257F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008258
Alex Williamsoncba33452012-07-31 08:16:22 -06008259VFIO DRIVER
8260M: Alex Williamson <alex.williamson@redhat.com>
8261L: kvm@vger.kernel.org
8262S: Maintained
8263F: Documentation/vfio.txt
8264F: drivers/vfio/
8265F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008266F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008267
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008268VIDEOBUF2 FRAMEWORK
8269M: Pawel Osciak <pawel@osciak.com>
8270M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008271M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008272L: linux-media@vger.kernel.org
8273S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008274F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008275F: include/media/videobuf2-*
8276
Amit Shah9a824462010-03-23 18:23:09 +05308277VIRTIO CONSOLE DRIVER
8278M: Amit Shah <amit.shah@redhat.com>
8279L: virtualization@lists.linux-foundation.org
8280S: Maintained
8281F: drivers/char/virtio_console.c
8282F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008283F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308284
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308285VIRTIO CORE, NET AND BLOCK DRIVERS
8286M: Rusty Russell <rusty@rustcorp.com.au>
8287M: "Michael S. Tsirkin" <mst@redhat.com>
8288L: virtualization@lists.linux-foundation.org
8289S: Maintained
8290F: drivers/virtio/
8291F: drivers/net/virtio_net.c
8292F: drivers/block/virtio_blk.c
8293F: include/linux/virtio_*.h
8294
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008295VIRTIO HOST (VHOST)
8296M: "Michael S. Tsirkin" <mst@redhat.com>
8297L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008298L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008299L: netdev@vger.kernel.org
8300S: Maintained
8301F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008302F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008303
Linus Torvalds1da177e2005-04-16 15:20:36 -07008304VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008305M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008306S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008307F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008308
Harald Weltef0bf7f62009-06-17 20:22:39 +02008309VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008310M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008311M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008312S: Maintained
8313F: drivers/mmc/host/via-sdmmc.c
8314
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008315VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008316M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008317L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008318S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008319F: include/linux/via-core.h
8320F: include/linux/via-gpio.h
8321F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008322F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008323
Francois Romieu01f20732007-01-26 00:57:17 -08008324VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008325M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008326L: netdev@vger.kernel.org
8327S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008328F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008329
Patrick McHardybe7f8272007-10-23 20:26:36 -07008330VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008331M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008332L: netdev@vger.kernel.org
8333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008334F: drivers/net/macvlan.c
8335F: include/linux/if_*vlan.h
8336F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008337
Florian Fainelli55e331c2009-06-16 15:33:53 -07008338VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008339M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008340L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008341S: Maintained
8342F: drivers/vlynq/vlynq.c
8343F: include/linux/vlynq.h
8344
Martyn Welch390beae2012-05-03 17:52:36 +01008345VME SUBSYSTEM
8346M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008347M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008348M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8349L: devel@driverdev.osuosl.org
8350S: Maintained
8351T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8352F: Documentation/vme_api.txt
8353F: drivers/staging/vme/
8354F: drivers/vme/
8355F: include/linux/vme*
8356
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008357VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008358M: Shreyas Bhatewara <sbhatewara@vmware.com>
8359M: "VMware, Inc." <pv-drivers@vmware.com>
8360L: netdev@vger.kernel.org
8361S: Maintained
8362F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008363
Alok Kataria851b1642009-10-13 14:51:05 -07008364VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008365M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008366M: VMware PV-Drivers <pv-drivers@vmware.com>
8367L: linux-scsi@vger.kernel.org
8368S: Maintained
8369F: drivers/scsi/vmw_pvscsi.c
8370F: drivers/scsi/vmw_pvscsi.h
8371
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008372VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008373M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008374M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008375W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008376W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008377T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008378S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008379F: drivers/regulator/
8380F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008381
Juerg Haefligerab413192006-09-24 20:54:04 +02008382VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008383M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008384L: lm-sensors@lm-sensors.org
8385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008386F: Documentation/hwmon/vt1211
8387F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008388
Roger Lucas1de9e372005-11-26 20:20:05 +01008389VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008390M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008391L: lm-sensors@lm-sensors.org
8392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008393F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008394
Tony Olech88095e72011-05-14 16:48:13 -04008395VUB300 USB to SDIO/SD/MMC bridge chip
8396M: Tony Olech <tony.olech@elandigitalsystems.com>
8397L: linux-mmc@vger.kernel.org
8398L: linux-usb@vger.kernel.org
8399S: Supported
8400F: drivers/mmc/host/vub300.c
8401
Linus Torvalds1da177e2005-04-16 15:20:36 -07008402W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008403M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008405F: Documentation/w1/
8406F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008407
Charles Spirakis13927072006-07-05 18:05:15 +02008408W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008409M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008410L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008412F: Documentation/hwmon/w83791d
8413F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008414
Rudolf Marek61db0112006-12-12 18:18:30 +01008415W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008416M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008417L: lm-sensors@lm-sensors.org
8418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008419F: Documentation/hwmon/w83793
8420F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008421
Jean Delvaree3760b42010-10-28 20:31:49 +02008422W83795 HARDWARE MONITORING DRIVER
8423M: Jean Delvare <khali@linux-fr.org>
8424L: lm-sensors@lm-sensors.org
8425S: Maintained
8426F: drivers/hwmon/w83795.c
8427
Linus Torvalds1da177e2005-04-16 15:20:36 -07008428W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008429M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008431F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008432
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008433WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008434M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008435L: linux-watchdog@vger.kernel.org
8436W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008437T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008439F: Documentation/watchdog/
8440F: drivers/watchdog/
8441F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008442F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008443
Linus Torvalds1da177e2005-04-16 15:20:36 -07008444WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008445M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008446L: linux-scsi@vger.kernel.org
8447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008448F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008449
David Herrmannb22e00f2011-09-06 13:50:40 +02008450WIIMOTE HID DRIVER
8451M: David Herrmann <dh.herrmann@googlemail.com>
8452L: linux-input@vger.kernel.org
8453S: Maintained
8454F: drivers/hid/hid-wiimote*
8455
David Härdemane258b802009-09-21 17:04:53 -07008456WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008457M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008458S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008459F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008460
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008461WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008462M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008463M: linux-wimax@intel.com
8464L: wimax@linuxwimax.org
8465S: Supported
8466W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008467F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07008468F: include/linux/wimax/debug.h
8469F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008470F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07008471F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008472
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008473WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008474M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008476F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008477
Linus Torvalds1da177e2005-04-16 15:20:36 -07008478WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008479M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008480L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008481W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008483F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008484
Mark Brownfebf1df2008-04-02 00:51:09 -04008485WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008486M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8487M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008488L: linux-input@vger.kernel.org
8489T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8490W: http://opensource.wolfsonmicro.com/node/7
8491S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008492F: drivers/input/touchscreen/*wm97*
8493F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008494
Mark Brown055bcbc2010-08-13 14:18:12 +01008495WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008496M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008497L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008498T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008499T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008500W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008501S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008502F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008503F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008504F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008505F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008506F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008507F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008508F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008509F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008510F: drivers/input/misc/wm831x-on.c
8511F: drivers/input/touchscreen/wm831x-ts.c
8512F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008513F: drivers/mfd/arizona*
8514F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008515F: drivers/power/wm83*.c
8516F: drivers/rtc/rtc-wm83*.c
8517F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008518F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008519F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008520F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008521F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008522F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008523F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008524F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008525F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008526F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008527F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008528
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008529WORKQUEUE
8530M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008531T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8532S: Maintained
8533F: include/linux/workqueue.h
8534F: kernel/workqueue.c
8535F: Documentation/workqueue.txt
8536
Linus Torvalds1da177e2005-04-16 15:20:36 -07008537X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008538M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008539L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008540S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008541F: Documentation/networking/x25*
8542F: include/net/x25*
8543F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008544
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008545X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008546M: Thomas Gleixner <tglx@linutronix.de>
8547M: Ingo Molnar <mingo@redhat.com>
8548M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008549M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008550T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008552F: Documentation/x86/
8553F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008554
Matthew Garrettd09448532010-02-11 10:40:13 -05008555X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05008556M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05008557L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008558T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd09448532010-02-11 10:40:13 -05008559S: Maintained
8560F: drivers/platform/x86
8561
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008562X86 MCE INFRASTRUCTURE
8563M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008564M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008565L: linux-edac@vger.kernel.org
8566S: Maintained
8567F: arch/x86/kernel/cpu/mcheck/*
8568
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008569XC2028/3028 TUNER DRIVER
8570M: Mauro Carvalho Chehab <mchehab@redhat.com>
8571L: linux-media@vger.kernel.org
8572W: http://linuxtv.org
8573T: git git://linuxtv.org/media_tree.git
8574S: Maintained
8575F: drivers/media/tuners/tuner-xc2028.*
8576
Ian Campbellc4468082011-04-27 15:26:46 -07008577XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008578M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008579M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008580L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8581L: virtualization@lists.linux-foundation.org
8582S: Supported
8583F: arch/x86/xen/
8584F: drivers/*/xen-*front.c
8585F: drivers/xen/
8586F: arch/x86/include/asm/xen/
8587F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008588F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07008589
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008590XEN HYPERVISOR ARM
8591M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8592L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8593S: Supported
8594F: arch/arm/xen/
8595F: arch/arm/include/asm/xen/
8596
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008597XEN NETWORK BACKEND DRIVER
8598M: Ian Campbell <ian.campbell@citrix.com>
8599L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8600L: netdev@vger.kernel.org
8601S: Supported
8602F: drivers/net/xen-netback/*
8603
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008604XEN PCI SUBSYSTEM
8605M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008606L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008607S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008608F: arch/x86/pci/*xen*
8609F: drivers/pci/*xen*
8610
8611XEN SWIOTLB SUBSYSTEM
8612M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008613L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008614S: Supported
8615F: arch/x86/xen/*swiotlb*
8616F: drivers/xen/*swiotlb*
8617
Linus Torvalds1da177e2005-04-16 15:20:36 -07008618XFS FILESYSTEM
8619P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008620M: Ben Myers <bpm@sgi.com>
8621M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008622M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008623L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008624W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008625T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008626S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008627F: Documentation/filesystems/xfs.txt
8628F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008629
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008630XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008631M: Anirudha Sarangi <anirudh@xilinx.com>
8632M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008633S: Maintained
8634F: drivers/net/ethernet/xilinx/xilinx_axienet*
8635
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008636XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008637M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008638W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008640F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008641
Peter Korsgaard238b8722006-12-06 20:35:17 -08008642XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008643M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008644L: linux-serial@vger.kernel.org
8645S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008646F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008647
Linus Torvalds1da177e2005-04-16 15:20:36 -07008648YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008649M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008650L: linux-hams@vger.kernel.org
8651S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008652F: drivers/net/hamradio/yam*
8653F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008654
Henkaf64a5e2005-10-12 15:02:56 +02008655YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008656M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008657L: usbb2k-api-dev@nongnu.org
8658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008659F: Documentation/input/yealink.txt
8660F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008661
Linus Torvalds1da177e2005-04-16 15:20:36 -07008662Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008663M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008664W: http://yaina.de/jreuter/
8665W: http://www.qsl.net/dl1bke/
8666L: linux-hams@vger.kernel.org
8667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008668F: Documentation/networking/z8530drv.txt
8669F: drivers/net/hamradio/*scc.c
8670F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008671
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008672ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008673M: Daniel Drake <dsd@gentoo.org>
8674M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008675W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008676L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008677L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008679F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008680
Linus Torvalds1da177e2005-04-16 15:20:36 -07008681ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008682L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008683L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008684W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008685T: Mercurial http://linuxtv.org/hg/v4l-dvb
8686S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008687F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008688
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008689ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008690M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008691S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008692F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008693
Linus Torvalds1da177e2005-04-16 15:20:36 -07008694THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008695M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008696L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008697Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008698T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008699S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008700F: *
8701F: */