blob: 5abc10efffa2adfc218c89a0d394f3e22a44659d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93 X: Files and directories that are NOT maintained, same rules as F:
94 Files exclusions are tested before file matches.
95 Can be useful for excluding a specific subdirectory, for instance:
96 F: net/
97 X: net/ipv6/
98 matches all files in and below net excluding net/ipv6/
99 K: Keyword perl extended regex pattern to match content in a
100 patch or file. For instance:
101 K: of_get_profile
102 matches patches or files that contain "of_get_profile"
103 K: \b(printk|pr_(info|err))\b
104 matches patches or files that contain one or more of the words
105 printk, pr_info or pr_err
106 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108Note: For the hard of thinking, this list is meant to remain in alphabetical
109order. If you could add yourselves to it in alphabetical order that would be
110so much easier [Ed]
111
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700114 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163C505 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700117M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700118L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -0700120F: drivers/net/ethernet/i825xx/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Steffen Klasserta6d89912007-08-10 14:05:27 -07001223C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700123M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700124L: netdev@vger.kernel.org
125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700127F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700130M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700131L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700133F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
adam radfordc4de0ce2010-03-08 12:40:36 -08001353WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
136M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800138W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800140F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
14253C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700143M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144L: linux-scsi@vger.kernel.org
145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700146F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
1486PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700149M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150L: linux-hams@vger.kernel.org
151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700152F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700155M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700156M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700157L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700159F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
1618250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800162M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163L: linux-serial@vger.kernel.org
164W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700165S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700166T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800167F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700168F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
1708390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700171L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000172S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700173F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001759P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700176M: Eric Van Hensbergen <ericvh@gmail.com>
177M: Ron Minnich <rminnich@sandia.gov>
178M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100179L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500180W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800181Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800182T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700184F: Documentation/filesystems/9p.txt
185F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800186
Antti Palosaari91952bc2012-10-01 12:28:46 -0300187A8293 MEDIA DRIVER
188M: Antti Palosaari <crope@iki.fi>
189L: linux-media@vger.kernel.org
190W: http://linuxtv.org/
191W: http://palosaari.fi/linux/
192Q: http://patchwork.linuxtv.org/project/linux-media/list/
193T: git git://linuxtv.org/anttip/media_tree.git
194S: Maintained
195F: drivers/media/dvb-frontends/a8293*
196
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700197AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700198M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700199L: linux-scsi@vger.kernel.org
200W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700202F: Documentation/scsi/aacraid.txt
203F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100206M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207L: lm-sensors@lm-sensors.org
208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700209F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200210
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700212M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213L: lm-sensors@lm-sensors.org
214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700215F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700218M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219L: linux-acenic@sunsite.dk
220S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700221F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Peter Feuerere86435e2009-06-21 18:53:03 +0200223ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700224M: Peter Feuerer <peter@piie.net>
Matthew 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
Pierre Ossman6d799472008-07-22 14:36:57 +0200673S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700674F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200675
Russell Kingcefbf4e2009-11-22 17:40:28 +0000676ARM PRIMECELL BUS SUPPORT
677M: Russell King <linux@arm.linux.org.uk>
678S: Maintained
679F: drivers/amba/
680F: include/linux/amba/bus.h
681
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800682ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700683M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700684L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800685S: Maintained
686
Sergey Lapin9c784f92008-08-03 02:29:48 +0100687ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700688M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700689L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100690S: Maintained
691
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800692ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700693M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700694L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800695S: Maintained
696
Maxime Ripard1b106692012-11-15 21:51:26 +0100697ARM/Allwinner A1X SoC support
698M: Maxime Ripard <maxime.ripard@free-electrons.com>
699L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
700S: Maintained
701F: arch/arm/mach-sunxi/
702
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800703ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700704M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800705M: Nicolas Ferre <nicolas.ferre@atmel.com>
706M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700707L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200708W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800709W: http://www.linux4sam.org
710S: Supported
711F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100712
Rob Herring986cf2e2011-06-22 11:28:53 -0500713ARM/CALXEDA HIGHBANK ARCHITECTURE
714M: Rob Herring <rob.herring@calxeda.com>
715L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
716S: Maintained
717F: arch/arm/mach-highbank/
718
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300719ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
720M: Anton Vorontsov <avorontsov@mvista.com>
721S: Maintained
722F: arch/arm/mach-cns3xxx/
723T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
724
Alexander Shiyan386ab512012-11-17 17:57:24 +0400725ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
726M: Alexander Shiyan <shc_work@mail.ru>
727L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
728S: Odd Fixes
729F: arch/arm/mach-clps711x/
730
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800731ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100732M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000733M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700734L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800735S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100736F: arch/arm/mach-ep93xx/
737F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800738
739ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700740M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700741L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800742S: Maintained
743
Russell Kingd4275352009-04-16 14:05:27 +0100744ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700745M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700746L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700747S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100748F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700749F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100750
Mike Rapoportd48134e2008-08-20 09:03:26 +0100751ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700752M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700753L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100754S: Maintained
755
Hubert Feurstein94150092009-10-07 08:36:07 +0100756ARM/CONTEC MICRO9 MACHINE SUPPORT
757M: Hubert Feurstein <hubert.feurstein@contec.at>
758S: Maintained
759F: arch/arm/mach-ep93xx/micro9.c
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700762M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763S: Maintained
764
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200765ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100766M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700767L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100768T: git git://git.berlios.de/gemini-board
769S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300770F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200771
Barry Songa990cbd2011-07-12 21:44:10 +0800772ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
773M: Barry Song <baohua.song@csr.com>
774L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
775S: Maintained
776F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800777F: drivers/dma/sirf-dma.c
778F: drivers/i2c/busses/i2c-sirf.c
779F: drivers/pinctrl/pinctrl-sirf.c
780F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800781
Russell Kingd4275352009-04-16 14:05:27 +0100782ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700783M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700784L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100785W: http://www.arm.linux.org.uk/
786S: Maintained
787F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700788F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100789
Russell Kinga9da4f72008-07-12 21:42:04 +0100790ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700791M: Daniel Ribeiro <drwyrm@gmail.com>
792M: Stefan Schmidt <stefan@openezx.org>
793M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200794L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100795W: http://www.openezx.org/
796S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200797T: topgit git://git.openezx.org/openezx.git
798F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100799
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200800ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100801M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700802L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100803S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700804T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300805F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200806
Russell Kingd4275352009-04-16 14:05:27 +0100807ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700808M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700809L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100810W: http://www.arm.linux.org.uk/
811S: Maintained
812F: arch/arm/include/asm/hardware/dec21285.h
813F: arch/arm/mach-footbridge/
814
Sascha Hauer86183a52008-07-24 23:50:35 +0200815ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700816M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700817L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200818S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700819T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100820F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700821F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200822
Shawn Guo8bcb9762011-10-07 22:24:18 +0800823ARM/FREESCALE IMX6
824M: Shawn Guo <shawn.guo@linaro.org>
825L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
826S: Maintained
827T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
828F: arch/arm/mach-imx/*imx6*
829
Shawn Guoa9866a02011-10-21 11:53:34 +0800830ARM/FREESCALE MXS ARM ARCHITECTURE
831M: Shawn Guo <shawn.guo@linaro.org>
832L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
833S: Maintained
834T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
835F: arch/arm/mach-mxs/
836
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800837ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700838M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700839L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800840S: Maintained
841
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100842ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700843M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700844L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100845S: Maintained
846
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200847ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700848M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100849M: Paul Parsons <lost.distance@yahoo.com>
850L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200851S: Maintained
852F: arch/arm/mach-pxa/hx4700.c
853F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100854F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200855
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100856ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700857M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200858W: www.jlime.com
859S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700860T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
861F: arch/arm/mach-sa1100/jornada720.c
862F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100863
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200864ARM/IGEP MACHINE SUPPORT
865M: Enric Balletbo i Serra <eballetbo@gmail.com>
866M: Javier Martinez Canillas <javier@dowhile0.org>
867L: linux-omap@vger.kernel.org
868L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
869S: Maintained
870F: arch/arm/mach-omap2/board-igep0020.c
871
Marek Vasut403d2972010-05-22 00:29:39 +0200872ARM/INCOME PXA270 SUPPORT
873M: Marek Vasut <marek.vasut@gmail.com>
874L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
875S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700876F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200877
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800878ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700879M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700880M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700881L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700882S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100883
884ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700885M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700886L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700887S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800888
889ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700890M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700891M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700892L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700893S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800894
895ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700896M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700897M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700898L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700899S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800900
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800901ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700902M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700903L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800904S: Maintained
905
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200906ARM/INTEL IXP4XX ARM ARCHITECTURE
907M: Imre Kaloz <kaloz@openwrt.org>
908M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100909L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200910S: Maintained
911F: arch/arm/mach-ixp4xx/
912
Joe Perches838553c2010-10-26 14:22:59 -0700913ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100914M: Jonathan Cameron <jic23@cam.ac.uk>
915L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
916S: Maintained
917F: arch/arm/mach-pxa/stargate2.c
918F: drivers/pcmcia/pxa2xx_stargate2.c
919
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800920ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700921M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700922M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700923L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700924S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800925
926ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700927M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700928L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800929S: Maintained
930
931ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700932M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700933L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800934S: Maintained
935
Philipp Zabel3b8861712008-07-09 21:27:15 +0100936ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700937M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100938S: Maintained
939
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200940ARM/Marvell Armada 370 and Armada XP SOC support
941M: Jason Cooper <jason@lakedaemon.net>
942M: Andrew Lunn <andrew@lunn.ch>
943M: Gregory Clement <gregory.clement@free-electrons.com>
944L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
945S: Maintained
946F: arch/arm/mach-mvebu/
947
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400948ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
949M: Jason Cooper <jason@lakedaemon.net>
950M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700951L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400952S: Maintained
953F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400954F: arch/arm/mach-kirkwood/
955F: arch/arm/mach-mv78xx0/
956F: arch/arm/mach-orion5x/
957F: arch/arm/plat-orion/
958
Alexander Clouterd69ac132011-04-14 15:22:02 -0700959ARM/Orion SoC/Technologic Systems TS-78xx platform support
960M: Alexander Clouter <alex@digriz.org.uk>
961L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
962W: http://www.digriz.org.uk/ts78xx/kernel
963S: Maintained
964F: arch/arm/mach-orion5x/ts78xx-*
965
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000966ARM/MICREL KS8695 ARCHITECTURE
967M: Greg Ungerer <gerg@uclinux.org>
968L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
969F: arch/arm/mach-ks8695
970S: Odd Fixes
971
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200972ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700973M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700974L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200975F: arch/arm/mach-pxa/mioa701.c
976S: Maintained
977
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100978ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700979M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100980S: Maintained
981
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100982ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700983M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200984M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700985M: STEricsson <STEricsson_nomadik_linux@list.st.com>
986L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
987S: Maintained
988F: arch/arm/mach-nomadik/
989F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100990F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200991T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100992
Andy Green9d762952009-05-19 06:41:42 -0300993ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700994M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300995L: openmoko-kernel@lists.openmoko.org (subscribers-only)
996W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
997S: Supported
998
Daniel Walker0c19d212009-12-07 16:53:51 -0800999ARM/QUALCOMM MSM MACHINE SUPPORT
1000M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001001M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001002M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001003L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001004F: arch/arm/mach-msm/
1005F: drivers/video/msm/
1006F: drivers/mmc/host/msm_sdcc.c
1007F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001008F: drivers/tty/serial/msm_serial.h
1009F: drivers/tty/serial/msm_serial.c
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001010F: drivers/*/pm8???-*
1011F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001012T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001013S: Maintained
1014
Dirk Opfer8459c152005-11-06 14:27:52 +00001015ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001016M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1017M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001018S: Maintained
1019
Marek Vasut5d783a22009-07-16 13:26:48 +02001020ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001021M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001022L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001023W: http://hackndev.com
1024S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001025F: arch/arm/mach-pxa/include/mach/palmtx.h
1026F: arch/arm/mach-pxa/palmtx.c
1027F: arch/arm/mach-pxa/include/mach/palmt5.h
1028F: arch/arm/mach-pxa/palmt5.c
1029F: arch/arm/mach-pxa/include/mach/palmld.h
1030F: arch/arm/mach-pxa/palmld.c
1031F: arch/arm/mach-pxa/include/mach/palmte2.h
1032F: arch/arm/mach-pxa/palmte2.c
1033F: arch/arm/mach-pxa/include/mach/palmtc.h
1034F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001035
Joe Perchesb57fe922009-12-14 18:00:52 -08001036ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001037M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001038L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001039W: http://hackndev.com
1040S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001041F: arch/arm/mach-pxa/include/mach/palmtreo.h
1042F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001043
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001044ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001045M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001046L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001047W: http://hackndev.com
1048S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001049F: arch/arm/mach-pxa/include/mach/palmz72.h
1050F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001053M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1055S: Maintained
1056
1057ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001058M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001059L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060W: http://www.arm.linux.org.uk/
1061S: Maintained
1062
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001063ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001064M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001065L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001066S: Maintained
1067
Russell Kingd4275352009-04-16 14:05:27 +01001068ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001069M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001070L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001071W: http://www.arm.linux.org.uk/
1072S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001073F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1074F: arch/arm/include/asm/hardware/ioc.h
1075F: arch/arm/include/asm/hardware/iomd.h
1076F: arch/arm/include/asm/hardware/memc.h
1077F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001078F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001079F: drivers/net/ethernet/i825xx/ether1*
1080F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001081F: drivers/scsi/arm/
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001084M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085W: http://www.shark-linux.de/shark.html
1086S: Maintained
1087
Ben Dooksb21477f2009-06-13 10:46:34 +01001088ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001089M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001090M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001091L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001092L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001093W: http://www.fluff.org/ben/linux/
1094S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001095F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001096F: arch/arm/plat-s3c24xx/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001097F: arch/arm/mach-s3c24*/
1098F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001099F: drivers/*/*s3c2410*
1100F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001101F: drivers/spi/spi-s3c*
1102F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001104ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001105M: Kukjin Kim <kgene.kim@samsung.com>
1106L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1107L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1108S: Maintained
1109F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001110F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001111
Kyungmin Park10ffa962011-03-04 17:36:26 -08001112ARM/SAMSUNG MOBILE MACHINE SUPPORT
1113M: Kyungmin Park <kyungmin.park@samsung.com>
1114L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1115S: Maintained
1116F: arch/arm/mach-s5pv210/mach-aquila.c
1117F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001118F: arch/arm/mach-exynos/mach-universal_c210.c
1119F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001120
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001121ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1122M: Kyungmin Park <kyungmin.park@samsung.com>
1123M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1124L: linux-arm-kernel@lists.infradead.org
1125L: linux-media@vger.kernel.org
1126S: Maintained
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001127F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001128F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001129
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001130ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1131M: Kyungmin Park <kyungmin.park@samsung.com>
1132M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001133M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001134L: linux-arm-kernel@lists.infradead.org
1135L: linux-media@vger.kernel.org
1136S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001137F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001138F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001139
1140ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1141M: Kyungmin Park <kyungmin.park@samsung.com>
1142M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1143L: linux-arm-kernel@lists.infradead.org
1144L: linux-media@vger.kernel.org
1145S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001146F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001147
Paul Mundtd48d38e2010-02-08 12:50:24 +09001148ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001149M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001150M: Magnus Damm <magnus.damm@gmail.com>
1151L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001152W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001153Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001154T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001155S: Supported
1156F: arch/arm/mach-shmobile/
1157F: drivers/sh/
1158
Dinh Nguyen66314222012-07-18 16:07:18 -06001159ARM/SOCFPGA ARCHITECTURE
1160M: Dinh Nguyen <dinguyen@altera.com>
1161S: Maintained
1162F: arch/arm/mach-socfpga/
1163
1164ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1165M: Dinh Nguyen <dinguyen@altera.com>
1166S: Maintained
1167F: drivers/clk/socfpga/
1168
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001169ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001170M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001171L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001172S: Maintained
1173
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001174ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001175M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001176L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1177S: Maintained
1178
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001179ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001180M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001181L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001182S: Maintained
1183
wanzongshun98ad6e32009-02-13 06:04:32 +01001184ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001185M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001186L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001187W: http://www.mcuos.com
1188S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001189F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001190F: drivers/input/keyboard/w90p910_keypad.c
1191F: drivers/input/touchscreen/w90p910_ts.c
1192F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001193F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001194F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001195F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001196F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001197F: drivers/usb/host/ehci-w90x900.c
1198F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001199
Linus Walleij54274d72010-04-04 10:58:03 +01001200ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001201M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001202L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1203S: Supported
1204F: arch/arm/mach-u300/
1205F: drivers/i2c/busses/i2c-stu300.c
1206F: drivers/rtc/rtc-coh901331.c
1207F: drivers/watchdog/coh901327_wdt.c
1208F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001209F: drivers/mfd/ab3100*
1210F: drivers/rtc/rtc-ab3100.c
1211F: drivers/rtc/rtc-coh901331.c
1212T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001213
Linus Walleij87572882010-12-22 09:18:29 +01001214ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001215M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001216M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001217L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1218S: Maintained
1219F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001220F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001221F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001222F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001223F: drivers/mfd/abx500*
1224F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001225F: drivers/mfd/dbx500*
1226F: drivers/mfd/db8500*
1227F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001228F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001229F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001230T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001231
Russell Kingd4275352009-04-16 14:05:27 +01001232ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001233M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001234L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001235W: http://www.arm.linux.org.uk/
1236S: Maintained
1237F: arch/arm/vfp/
1238
Marek Vasute66b6d82010-03-26 06:51:32 +01001239ARM/VOIPAC PXA270 SUPPORT
1240M: Marek Vasut <marek.vasut@gmail.com>
1241L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1242S: Maintained
1243F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001244F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001245
Tony Prisk04529fe2012-07-24 04:19:37 +12001246ARM/VT8500 ARM ARCHITECTURE
1247M: Tony Prisk <linux@prisktech.co.nz>
1248L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1249S: Maintained
1250F: arch/arm/mach-vt8500/
1251F: drivers/video/vt8500lcdfb.*
1252F: drivers/video/wm8505fb*
1253F: drivers/video/wmt_ge_rops.*
1254F: drivers/tty/serial/vt8500_serial.c
Cesar Eduardo Barros7beefe12013-01-04 15:35:18 -08001255F: drivers/rtc/rtc-vt8500.c
Tony Prisk3a96dff2012-11-18 15:33:06 +13001256F: drivers/mmc/host/wmt-sdmmc.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001257
Marek Vasute66b6d82010-03-26 06:51:32 +01001258ARM/ZIPIT Z2 SUPPORT
1259M: Marek Vasut <marek.vasut@gmail.com>
1260L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1261S: Maintained
1262F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001263F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001264
Catalin Marinas38074222012-03-05 11:49:34 +00001265ARM64 PORT (AARCH64 ARCHITECTURE)
1266M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001267M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001268L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1269S: Maintained
1270F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001271F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001272
George Josephd58de032010-03-05 22:17:25 +01001273ASC7621 HARDWARE MONITOR DRIVER
1274M: George Joseph <george.joseph@fairview5.com>
1275L: lm-sensors@lm-sensors.org
1276S: Maintained
1277F: Documentation/hwmon/asc7621
1278F: drivers/hwmon/asc7621.c
1279
Corentin Charyb229ece2011-02-26 10:20:40 +01001280ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001281M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05001283L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001284W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001286F: drivers/platform/x86/asus*.c
1287F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001289ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001290M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001291L: lm-sensors@lm-sensors.org
1292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001293F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001294
Andrew Morton953a6472008-11-06 12:53:28 -08001295ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001296M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001297W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001299F: Documentation/crypto/async-tx-api.txt
1300F: crypto/async_tx/
1301F: drivers/dma/
1302F: include/linux/dmaengine.h
1303F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001304
Wolfram Sanga1867d32009-09-18 22:45:51 +02001305AT24 EEPROM DRIVER
1306M: Wolfram Sang <w.sang@pengutronix.de>
1307L: linux-i2c@vger.kernel.org
1308S: Maintained
1309F: drivers/misc/eeprom/at24.c
1310F: include/linux/i2c/at24.h
1311
Randy Dunlape7839f22008-10-12 16:11:45 -07001312ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001313M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001314W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001316F: Documentation/aoe/
1317F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Joe Perches9a10a872010-12-01 09:37:55 -08001319ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001320M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001321L: linux-wireless@vger.kernel.org
1322S: Supported
1323F: drivers/net/wireless/ath/*
1324
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001325ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001326M: Jiri Slaby <jirislaby@gmail.com>
1327M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001328M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001329L: linux-wireless@vger.kernel.org
1330L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001331W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001332S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001333F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001334
Kalle Valo12e62d62011-09-13 10:21:25 +03001335ATHEROS ATH6KL WIRELESS DRIVER
1336M: Kalle Valo <kvalo@qca.qualcomm.com>
1337L: linux-wireless@vger.kernel.org
1338W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1339T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1340S: Supported
1341F: drivers/net/wireless/ath/ath6kl/
1342
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001343ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001344M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1345M: Jouni Malinen <jouni@qca.qualcomm.com>
1346M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1347M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001348L: linux-wireless@vger.kernel.org
1349L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001350W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001351S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001352F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001353
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001354WILOCITY WIL6210 WIRELESS DRIVER
1355M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1356L: linux-wireless@vger.kernel.org
1357L: wil6210@qca.qualcomm.com
1358S: Supported
1359W: http://wireless.kernel.org/en/users/Drivers/wil6210
1360F: drivers/net/wireless/ath/wil6210/
1361
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001362CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1363M: Christian Lamparter <chunkeey@googlemail.com>
1364L: linux-wireless@vger.kernel.org
1365W: http://wireless.kernel.org/en/users/Drivers/carl9170
1366S: Maintained
1367F: drivers/net/wireless/ath/carl9170/
1368
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001369ATK0110 HWMON DRIVER
1370M: Luca Tettamanti <kronos.it@gmail.com>
1371L: lm-sensors@lm-sensors.org
1372S: Maintained
1373F: drivers/hwmon/asus_atk0110.c
1374
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001375ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001376M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001378F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001379
Chris Snook7ae115b2008-09-09 03:26:57 -04001380ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001381M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001382M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001383L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001384W: http://sourceforge.net/projects/atl1
1385W: http://atl1.sourceforge.net
1386S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001387F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001390M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001391L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001392L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393W: http://linux-atm.sourceforge.net
1394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001395F: drivers/atm/
1396F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001397F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001399ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001400M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001401S: Maintained
1402F: drivers/mmc/host/atmel-mci.c
1403F: drivers/mmc/host/atmel-mci-regs.h
1404
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001405ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001406M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001407S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001408F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001409
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001410ATMEL DMA DRIVER
1411M: Nicolas Ferre <nicolas.ferre@atmel.com>
1412L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1413S: Supported
1414F: drivers/dma/at_hdmac.c
1415F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001416F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001417
Josh Wu15515542012-03-23 17:56:29 +08001418ATMEL ISI DRIVER
1419M: Josh Wu <josh.wu@atmel.com>
1420L: linux-media@vger.kernel.org
1421S: Supported
Cesar Eduardo Barrosf2294c2d2013-01-04 15:35:21 -08001422F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001423F: include/media/atmel-isi.h
1424
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001425ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001426M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001427L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001429F: drivers/video/atmel_lcdfb.c
1430F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001431
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001432ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001433M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001434S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001435F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001436
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001437ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001438M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001439S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001440F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001441
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001442ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1443M: Nicolas Ferre <nicolas.ferre@atmel.com>
1444L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1445S: Supported
1446F: drivers/misc/atmel_tclib.c
1447F: drivers/clocksource/tcb_clksrc.c
1448
Josh Wuff2675d2012-03-23 17:56:55 +08001449ATMEL TSADCC DRIVER
1450M: Josh Wu <josh.wu@atmel.com>
1451L: linux-input@vger.kernel.org
1452S: Supported
1453F: drivers/input/touchscreen/atmel_tsadcc.c
1454
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001455ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001456M: Nicolas Ferre <nicolas.ferre@atmel.com>
1457L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001458S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001459F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001462M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001463L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464W: http://www.thekelleys.org.uk/atmel
1465W: http://atmelwlandriver.sourceforge.net/
1466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001467F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Chris Wrighta92b7b82005-07-07 18:12:23 -07001469AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001470M: Al Viro <viro@zeniv.linux.org.uk>
1471M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001472L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001473W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001474T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001476F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001477F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001478F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001479
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001480AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001481M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001482W: http://miguelojeda.es/auxdisplay.htm
1483W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001485F: drivers/auxdisplay/
1486F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001487
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001488AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001489M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1490M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001491W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08001492W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001493W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001495F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001496
1497AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001498M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1499M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001501F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001504M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001506W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001508F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07001509F: include/net/ax25.h
1510F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001512AZ6007 DVB DRIVER
1513M: Mauro Carvalho Chehab <mchehab@redhat.com>
1514L: linux-media@vger.kernel.org
1515W: http://linuxtv.org
1516T: git git://linuxtv.org/media_tree.git
1517S: Maintained
1518F: drivers/media/usb/dvb-usb-v2/az6007.c
1519
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001520B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001521M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001522L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001523L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001524W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001526F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001527
1528B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001529M: Larry Finger <Larry.Finger@lwfinger.net>
1530M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001531L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001532L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001533W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001534S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001535F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001536
Richard Purdie300abeb2007-02-07 22:21:07 +00001537BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001538M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001540F: drivers/video/backlight/
1541F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001542
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001543BATMAN ADVANCED
1544M: Marek Lindner <lindner_marek@yahoo.de>
1545M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001546M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001547L: b.a.t.m.a.n@lists.open-mesh.org
1548W: http://www.open-mesh.org/
1549S: Maintained
1550F: net/batman-adv/
1551
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001552BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001553M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001554L: linux-hams@vger.kernel.org
1555W: http://www.baycom.org/~tom/ham/ham.html
1556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001557F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001558
1559BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001560S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001561F: Documentation/filesystems/befs.txt
1562F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001563
1564BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001565M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001566S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001567F: Documentation/filesystems/bfs.txt
1568F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001569F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001570
Bryan Wu1394f032007-05-06 14:50:22 -07001571BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001572M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001573L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001574W: http://blackfin.uclinux.org
1575S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001576F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001577
Bryan Wue190d6b2007-07-17 14:43:44 +08001578BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001579L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001580W: http://blackfin.uclinux.org
1581S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001582F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001583
Mike Frysinger566da5b2007-06-11 15:31:30 +08001584BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001585M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001586L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001587W: http://blackfin.uclinux.org
1588S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001589F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001590
Mike Frysinger936ed492010-03-10 15:20:38 -08001591BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001592M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001593L: uclinux-dist-devel@blackfin.uclinux.org
1594W: http://blackfin.uclinux.org
1595S: Supported
1596F: drivers/mmc/host/bfin_sdh.c
1597
Bryan Wu1394f032007-05-06 14:50:22 -07001598BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001599M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001600L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001601W: http://blackfin.uclinux.org
1602S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001603F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001604
Bryan Wu1e6d3202007-07-15 02:50:02 +08001605BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001606M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001607L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001608W: http://blackfin.uclinux.org
1609S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001610F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001611
Bryan Wud24ecfc2007-05-01 23:26:32 +02001612BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001613M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001614L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001615W: http://blackfin.uclinux.org/
1616S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001617F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001618
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001619BLINKM RGB LED DRIVER
1620M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1621S: Maintained
1622F: drivers/leds/leds-blinkm.c
1623
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001625M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001626T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001628F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Joern Engel2b54aae2008-02-06 01:38:02 -08001630BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001631M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001632L: linux-mtd@lists.infradead.org
1633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001634F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001635
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001636BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001637M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001638M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001639M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001640L: linux-bluetooth@vger.kernel.org
1641W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001642T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1643T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001645F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001648M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001649M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001650M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001651L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001652W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001653T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1654T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001656F: net/bluetooth/
1657F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001660M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001661M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001662L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001663W: http://sourceforge.net/projects/bonding/
1664S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001665F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001666F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Gary Zambrano39105892006-06-22 17:26:20 -07001668BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001669M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001670L: netdev@vger.kernel.org
1671S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001672F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001673
Michael Chan948c51e2006-06-04 02:51:39 -07001674BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001675M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001676L: netdev@vger.kernel.org
1677S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001678F: drivers/net/ethernet/broadcom/bnx2.*
1679F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001680
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001681BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001682M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001683L: netdev@vger.kernel.org
1684S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001685F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001686
Stephen Warrenf680f252012-09-15 00:18:54 -06001687BROADCOM BCM2835 ARM ARCHICTURE
1688M: Stephen Warren <swarren@wwwdotorg.org>
1689L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1690T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1691S: Maintained
1692F: arch/arm/mach-bcm2835/
1693F: arch/arm/boot/dts/bcm2835*
1694F: arch/arm/configs/bcm2835_defconfig
1695F: drivers/*/*bcm2835*
1696
Michael Chan948c51e2006-06-04 02:51:39 -07001697BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001698M: Matt Carlson <mcarlson@broadcom.com>
1699M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001700L: netdev@vger.kernel.org
1701S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001702F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001703
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001704BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1705M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001706M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001707M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001708M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001709L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001710L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001711S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001712F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001713
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001714BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1715M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1716L: linux-scsi@vger.kernel.org
1717S: Supported
1718F: drivers/scsi/bnx2fc/
1719
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001720BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1721M: Rafał Miłecki <zajec5@gmail.com>
1722L: linux-wireless@vger.kernel.org
1723S: Maintained
1724F: drivers/bcma/
1725F: include/linux/bcma/
1726
Jing Huang7725ccf2009-09-23 17:46:15 -07001727BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001728M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001729L: linux-scsi@vger.kernel.org
1730S: Supported
1731F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001732
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001733BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1734M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001735L: netdev@vger.kernel.org
1736S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001737F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001738
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001739BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001740M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001741L: linux-scsi@vger.kernel.org
1742S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001743F: block/bsg.c
1744F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001745F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001746
Clemens Ladischaf399172011-01-10 16:32:54 +01001747BT87X AUDIO DRIVER
1748M: Clemens Ladisch <clemens@ladisch.de>
1749L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1750T: git git://git.alsa-project.org/alsa-kernel.git
1751S: Maintained
1752F: Documentation/sound/alsa/Bt87x.txt
1753F: sound/pci/bt87x.c
1754
Michael Bueschff1d5c22008-07-25 01:46:10 -07001755BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001756M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001757W: http://bu3sch.de/btgpio.php
1758S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001759F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001760
Joe Percheseb1eb042009-01-21 10:49:16 -05001761BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001762M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001763L: linux-btrfs@vger.kernel.org
1764W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001765Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001766T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001768F: Documentation/filesystems/btrfs.txt
1769F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001772M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001773L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001774W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001775T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001776S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001777F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001778F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
Clemens Ladischaf399172011-01-10 16:32:54 +01001780C-MEDIA CMI8788 DRIVER
1781M: Clemens Ladisch <clemens@ladisch.de>
1782L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1783T: git git://git.alsa-project.org/alsa-kernel.git
1784S: Maintained
1785F: sound/pci/oxygen/
1786
Mark Salter21413552011-10-04 11:21:42 -04001787C6X ARCHITECTURE
1788M: Mark Salter <msalter@redhat.com>
1789M: Aurelien Jacquiot <a-jacquiot@ti.com>
1790L: linux-c6x-dev@linux-c6x.org
1791W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1792S: Maintained
1793F: arch/c6x/
1794
David Howellsa5432f52009-04-20 15:46:45 +01001795CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001796M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001797L: linux-cachefs@redhat.com
1798S: Supported
1799F: Documentation/filesystems/caching/cachefiles.txt
1800F: fs/cachefiles/
1801
Jonathan Corbet77d51402007-03-22 19:44:17 -03001802CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001803M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001804L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001805T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001807F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001808F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001809
Joe Perches201b6ba2010-09-07 20:33:24 +00001810CAIF NETWORK LAYER
1811M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1812L: netdev@vger.kernel.org
1813S: Supported
1814F: Documentation/networking/caif/
1815F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001816F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00001817F: include/net/caif/
1818F: net/caif/
1819
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001820CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001821M: Muli Ben-Yehuda <muli@il.ibm.com>
1822M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001823L: discuss@x86-64.org
1824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001825F: arch/x86/kernel/pci-calgary_64.c
1826F: arch/x86/kernel/tce_64.c
1827F: arch/x86/include/asm/calgary.h
1828F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001829
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001830CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001831M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001832L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001833W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001834T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001835S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001836F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001837F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001838F: include/uapi/linux/can.h
1839F: include/uapi/linux/can/bcm.h
1840F: include/uapi/linux/can/raw.h
1841F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001842
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001843CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001844M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001845M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001846L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001847W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001848T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001849S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001850F: drivers/net/can/
1851F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001852F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001853F: include/uapi/linux/can/error.h
1854F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001855
James Morris95d16c72012-03-16 12:05:48 +11001856CAPABILITIES
1857M: Serge Hallyn <serge.hallyn@canonical.com>
1858L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001859S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001860F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001861F: include/uapi/linux/capability.h
James Morris95d16c72012-03-16 12:05:48 +11001862F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001863F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001864F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001865
Arnd Bergmannb8154542008-05-16 11:10:59 +02001866CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001867M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001868L: linuxppc-dev@lists.ozlabs.org
1869L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001870W: http://www.ibm.com/developerworks/power/cell/
1871S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001872F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001873F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001874F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07001875F: arch/powerpc/oprofile/*cell*
1876F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001877
Sage Weil9030aaf2009-10-06 11:31:15 -07001878CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001879M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001880L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001881W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001882T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001883S: Supported
1884F: Documentation/filesystems/ceph.txt
1885F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001886F: net/ceph
1887F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001888F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001889
David Vrabel18332a82008-09-17 16:34:44 +01001890CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001891L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001892S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001893F: Documentation/usb/WUSB-Design-overview.txt
1894F: Documentation/usb/wusb-cbaf
David Vrabel355ffe692009-12-22 13:13:28 +00001895F: drivers/usb/host/hwa-hc.c
1896F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001897F: drivers/usb/wusbcore/
1898F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001899
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001900CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001901M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001902W: http://miguelojeda.es/auxdisplay.htm
1903W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001905F: drivers/auxdisplay/cfag12864b.c
1906F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001907
1908CFAG12864BFB LCD FRAMEBUFFER 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/cfag12864bfb.c
1914F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001915
Johannes Berg704232c2007-04-23 12:20:05 -07001916CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001917M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001918L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001919W: http://wireless.kernel.org/
1920T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1921T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001922S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001923F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07001924F: include/net/cfg80211.h
1925F: net/wireless/*
1926X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001927
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001928CHAR and MISC DRIVERS
1929M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001930M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001931T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001932S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001933F: drivers/char/*
1934F: drivers/misc/*
1935
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001936CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001937M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001938S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001939F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001940
Harry Weif8407f262011-02-25 14:44:15 -08001941CHINESE DOCUMENTATION
1942M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08001943L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08001944L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1945S: Maintained
1946F: Documentation/zh_CN/
1947
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001948CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1949M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1950L: linux-usb@vger.kernel.org
1951S: Maintained
1952F: drivers/usb/chipidea/
1953
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001954CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001955M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001956M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001957M: Neel Patel <neepatel@cisco.com>
1958M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001959S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001960F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001961
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001962CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001963M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001964L: netdev@vger.kernel.org
1965S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001966F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001967
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001968CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001969M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001970L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001971S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001972F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001973
Timur Tabid9e9d822008-04-24 08:45:26 +10001974CIRRUS LOGIC CS4270 SOUND DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06001975M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07001976L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabic4ef9bc2013-01-15 14:19:45 -06001977S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07001978F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001979
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001980CLEANCACHE API
1981M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1982L: linux-kernel@vger.kernel.org
1983S: Maintained
1984F: mm/cleancache.c
1985F: include/linux/cleancache.h
1986
Russell Kingd4275352009-04-16 14:05:27 +01001987CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001988M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001989S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001990F: include/linux/clk.h
1991
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001992CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001993M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001994M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1995M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001996L: linux-scsi@vger.kernel.org
1997S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001998F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001999
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002000CMPC ACPI DRIVER
2001M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2002M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd09448532010-02-11 10:40:13 -05002003L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002004S: Supported
2005F: drivers/platform/x86/classmate-laptop.c
2006
Nicolas Palix74425ee2010-06-06 17:15:01 +02002007COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002008M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002009M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002010M: Nicolas Palix <nicolas.palix@imag.fr>
2011L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002012W: http://coccinelle.lip6.fr/
2013S: Supported
2014F: scripts/coccinelle/
2015F: scripts/coccicheck
2016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002018M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019M: coda@cs.cmu.edu
2020L: codalist@coda.cs.cmu.edu
2021W: http://www.coda.cs.cmu.edu/
2022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002023F: Documentation/filesystems/coda.txt
2024F: fs/coda/
2025F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002026F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
Mike Turquette7704add2012-05-02 18:37:45 -07002028COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002029M: Mike Turquette <mturquette@linaro.org>
2030L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2031T: git git://git.linaro.org/people/mturquette/linux.git
2032S: Maintained
2033F: drivers/clk/clk.c
2034F: drivers/clk/clk-*
2035F: include/linux/clk-pr*
2036
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002037COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002038M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002039L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002040L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002041W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002042Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002043T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002044S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002045F: Documentation/filesystems/cifs.txt
2046F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002049M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002050L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002052F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
2054COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002055M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002056L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002058F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
2060COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002061M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002062L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002064F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002066COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002067M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05002068L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002070F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002071
Simon Arlott949be0f2007-03-06 02:47:46 -08002072CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002073M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002074L: accessrunner-general@lists.sourceforge.net
2075W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002077F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002078
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002079CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002080M: Joel Becker <jlbec@evilplan.org>
2081T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002082S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002083F: fs/configfs/
2084F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002085
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002086CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002087M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002088L: netdev@vger.kernel.org
2089S: Maintained
2090F: drivers/connector/
2091
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002092CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002093M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002094M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002095L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002096L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002097T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002099F: include/linux/cgroup*
2100F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002101F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002102
Rudolf Marekbebe4672007-05-08 17:22:02 +02002103CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002104M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002105L: lm-sensors@lm-sensors.org
2106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002107F: Documentation/hwmon/coretemp
2108F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002109
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002111M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112W: http://www.fi.muni.cz/~kas/cosa/
2113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002114F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
Florian Fainelli4371ee32009-06-01 02:43:17 -07002116CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002117M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002118L: netdev@vger.kernel.org
2119S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002120F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002121
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002123M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002124L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002125L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002127F: drivers/cpufreq/
2128F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
2130CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002131M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002133F: arch/x86/kernel/cpuid.c
2134F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002136CPU POWER MONITORING SUBSYSTEM
2137M: Dominik Brodowski <linux@dominikbrodowski.net>
2138M: Thomas Renninger <trenn@suse.de>
2139S: Maintained
2140F: tools/power/cpupower
2141
Paul Jacksoned90fb42005-09-27 21:45:37 -07002142CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002143M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002144W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002145W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07002146S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002147F: Documentation/cgroups/cpusets.txt
2148F: include/linux/cpuset.h
2149F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002150
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002152W: http://sourceforge.net/projects/cramfs/
2153S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002154F: Documentation/filesystems/cramfs.txt
2155F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
2157CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002158M: Mikael Starvik <starvik@axis.com>
2159M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002160L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161W: http://developer.axis.com
2162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002163F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002164F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
2166CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002167M: Herbert Xu <herbert@gondor.apana.org.au>
2168M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002170T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002172F: Documentation/crypto/
2173F: arch/*/crypto/
2174F: crypto/
2175F: drivers/crypto/
2176F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Neil Horman5b07bd52009-02-05 16:03:04 +11002178CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002179M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002180L: linux-crypto@vger.kernel.org
2181S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002182F: crypto/ansi_cprng.c
2183F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002184
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002185CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002186M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002188F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002189
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002190CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002191M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002192L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002193L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002194T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002195W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002196W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002198F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002199F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002200F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002201
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002202CX88 VIDEO4LINUX DRIVER
2203M: Mauro Carvalho Chehab <mchehab@redhat.com>
2204L: linux-media@vger.kernel.org
2205W: http://linuxtv.org
2206T: git git://linuxtv.org/media_tree.git
2207S: Odd fixes
2208F: Documentation/video4linux/cx88/
2209F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002210
Antti Palosaari91952bc2012-10-01 12:28:46 -03002211CXD2820R MEDIA DRIVER
2212M: Antti Palosaari <crope@iki.fi>
2213L: linux-media@vger.kernel.org
2214W: http://linuxtv.org/
2215W: http://palosaari.fi/linux/
2216Q: http://patchwork.linuxtv.org/project/linux-media/list/
2217T: git git://linuxtv.org/anttip/media_tree.git
2218S: Maintained
2219F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002220
Steve Wisee5ec3782008-05-20 14:06:33 -07002221CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002222M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002223L: netdev@vger.kernel.org
2224W: http://www.chelsio.com
2225S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002226F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002227
2228CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002229M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002230L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002231W: http://www.openfabrics.org
2232S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002233F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002234
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002235CXGB4 ETHERNET DRIVER (CXGB4)
2236M: Dimitris Michailidis <dm@chelsio.com>
2237L: netdev@vger.kernel.org
2238W: http://www.chelsio.com
2239S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002240F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002241
2242CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2243M: Steve Wise <swise@chelsio.com>
2244L: linux-rdma@vger.kernel.org
2245W: http://www.openfabrics.org
2246S: Supported
2247F: drivers/infiniband/hw/cxgb4/
2248
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002249CXGB4VF ETHERNET DRIVER (CXGB4VF)
2250M: Casey Leedom <leedom@chelsio.com>
2251L: netdev@vger.kernel.org
2252W: http://www.chelsio.com
2253S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002254F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002255
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002256STMMAC ETHERNET DRIVER
2257M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2258L: netdev@vger.kernel.org
2259W: http://www.stlinux.com
2260S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002261F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002262
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002264M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002265L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266W: http://www.arm.linux.org.uk/
2267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002268F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002269
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002271M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002272W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002274F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
2276CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002278S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002279F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002280F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002281F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
2283CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002285S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002286F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002288CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002289M: Javier Martinez Canillas <javier@dowhile0.org>
2290L: linux-input@vger.kernel.org
2291S: Maintained
2292F: drivers/input/touchscreen/cyttsp*
2293F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002294
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002296M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297W: http://yaina.de/jreuter/
2298W: http://www.qsl.net/dl1bke/
2299L: linux-hams@vger.kernel.org
2300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002301F: net/ax25/af_ax25.c
2302F: net/ax25/ax25_dev.c
2303F: net/ax25/ax25_ds_*
2304F: net/ax25/ax25_in.c
2305F: net/ax25/ax25_out.c
2306F: net/ax25/ax25_timer.c
2307F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002309DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002310L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002311S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002312F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002313F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002314
2315DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002316M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002317W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002318M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002320F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002321
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002323M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002324M: Ali Akcaagac <aliakc@web.de>
2325M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002327L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328L: http://lists.twibble.org/mailman/listinfo/dc395x/
2329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002330F: Documentation/scsi/dc395x.txt
2331F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002333DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002334M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002335L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002336W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002338F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002339F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07002340F: include/linux/tfrc.h
2341F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002342
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344W: http://linux-decnet.sourceforge.net
2345L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002346S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002347F: Documentation/networking/decnet.txt
2348F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
2350DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002351M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002353F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002355DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002356M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05002357L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002359F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002360
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002362M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363W: http://www.debian.org/~dz/i8k/
2364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002365F: drivers/char/i8k.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002366F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Doug Warzecha90563ec2005-09-06 15:17:15 -07002368DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002369M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002371F: Documentation/dcdbas.txt
2372F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002373
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002374DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002375M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002376S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002377F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002378
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002379DESIGNWARE USB3 DRD IP DRIVER
2380M: Felipe Balbi <balbi@ti.com>
2381L: linux-usb@vger.kernel.org
2382L: linux-omap@vger.kernel.org
2383T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2384S: Maintained
2385F: drivers/usb/dwc3/
2386
Kyungmin Park89d07762012-01-10 15:09:09 -08002387DEVICE FREQUENCY (DEVFREQ)
2388M: MyungJoo Ham <myungjoo.ham@samsung.com>
2389M: Kyungmin Park <kyungmin.park@samsung.com>
2390L: linux-kernel@vger.kernel.org
2391S: Maintained
2392F: drivers/devfreq/
2393
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002395M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397S: Maintained
2398
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002399DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002400M: Alasdair Kergon <agk@redhat.com>
2401M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002402L: dm-devel@redhat.com
2403W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002404Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002405T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002407F: Documentation/device-mapper/
2408F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002409F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002410F: include/linux/device-mapper.h
2411F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002412
Guenter Roeck335d7c52011-01-26 11:45:49 -08002413DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002414M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002415L: linux-i2c@vger.kernel.org
2416S: Maintained
2417F: drivers/i2c/busses/i2c-diolan-u2c.c
2418
Randy Dunlape7839f22008-10-12 16:11:45 -07002419DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002420M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002422F: Documentation/filesystems/dnotify.txt
2423F: fs/notify/dnotify/
2424F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
2426DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002427M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2429W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2430W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2431S: Maintained
2432
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002433DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002434M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002436F: Documentation/filesystems/quota.txt
2437F: fs/quota/
2438F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002439F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
Bernie Thompson702686a2012-03-01 13:52:13 -08002441DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2442M: Bernie Thompson <bernie@plugable.com>
2443L: linux-fbdev@vger.kernel.org
2444S: Maintained
2445W: http://plugable.com/category/projects/udlfb/
2446F: drivers/video/udlfb.c
2447F: include/video/udlfb.h
2448F: Documentation/fb/udlfb.txt
2449
Randy Dunlape7839f22008-10-12 16:11:45 -07002450DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002451M: Christine Caulfield <ccaulfie@redhat.com>
2452M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002453L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002454W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002455T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002456S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002457F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002458
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302459DMA BUFFER SHARING FRAMEWORK
2460M: Sumit Semwal <sumit.semwal@linaro.org>
2461S: Maintained
2462L: linux-media@vger.kernel.org
2463L: dri-devel@lists.freedesktop.org
2464L: linaro-mm-sig@lists.linaro.org
2465F: drivers/base/dma-buf*
2466F: include/linux/dma-buf*
2467F: Documentation/dma-buf-sharing.txt
2468T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2469
Dan Williamsb3e5f262007-08-07 10:26:35 -07002470DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002471M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002472M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002473S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002474F: drivers/dma/
2475F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302476T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2477T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002478
Juerg Haefligerb8250372007-06-09 10:11:16 -04002479DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002480M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002481L: lm-sensors@lm-sensors.org
2482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002483F: Documentation/hwmon/dme1737
2484F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002485
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002486DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002487M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002488L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002489S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002490F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002491
Joe Perches7d2c86b2009-04-07 20:59:01 -07002492DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002493M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002494L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002495T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002497F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002498
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002500M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501L: blinux-list@redhat.com
2502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002503F: drivers/char/dtlk.c
2504F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002506DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002507M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002508L: linux-scsi@vger.kernel.org
2509W: http://www.adaptec.com/
2510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002511F: drivers/scsi/dpt*
2512F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002513
Philipp Reisnerb411b362009-09-25 16:07:19 -07002514DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002515P: Philipp Reisner
2516P: Lars Ellenberg
2517M: drbd-dev@lists.linbit.com
2518L: drbd-user@lists.linbit.com
2519W: http://www.drbd.org
2520T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2521T: git git://git.drbd.org/drbd-8.3.git
2522S: Supported
2523F: drivers/block/drbd/
2524F: lib/lru_cache.c
2525F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002526
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002527DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002528M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002529T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002531F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002532F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002533F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002534F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002535F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002536F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002537F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
2539DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002540M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002541L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002542T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002544F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002545F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002546F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
Chris Wilson8daf7472010-09-28 14:07:26 +01002548INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002549M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002550L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002551L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002552T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002553S: Supported
2554F: drivers/gpu/drm/i915
2555F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002556F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01002557
Kyungmin Park398a6d42011-11-02 11:33:16 +09002558DRM DRIVERS FOR EXYNOS
2559M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002560M: Joonyoung Shim <jy0922.shim@samsung.com>
2561M: Seung-Woo Kim <sw0312.kim@samsung.com>
2562M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002563L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002564T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002565S: Supported
2566F: drivers/gpu/drm/exynos
2567F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002568F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09002569
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002570DRM DRIVERS FOR NVIDIA TEGRA
2571M: Thierry Reding <thierry.reding@avionic-design.de>
2572L: dri-devel@lists.freedesktop.org
2573L: linux-tegra@vger.kernel.org
2574T: git git://gitorious.org/thierryreding/linux.git
2575S: Maintained
2576F: drivers/gpu/drm/tegra/
2577F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2578
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002580M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002581L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002583F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Antti Palosaari91952bc2012-10-01 12:28:46 -03002585DVB_USB_AF9015 MEDIA DRIVER
2586M: Antti Palosaari <crope@iki.fi>
2587L: linux-media@vger.kernel.org
2588W: http://linuxtv.org/
2589W: http://palosaari.fi/linux/
2590Q: http://patchwork.linuxtv.org/project/linux-media/list/
2591T: git git://linuxtv.org/anttip/media_tree.git
2592S: Maintained
2593F: drivers/media/usb/dvb-usb-v2/af9015*
2594
2595DVB_USB_AF9035 MEDIA DRIVER
2596M: Antti Palosaari <crope@iki.fi>
2597L: linux-media@vger.kernel.org
2598W: http://linuxtv.org/
2599W: http://palosaari.fi/linux/
2600Q: http://patchwork.linuxtv.org/project/linux-media/list/
2601T: git git://linuxtv.org/anttip/media_tree.git
2602S: Maintained
2603F: drivers/media/usb/dvb-usb-v2/af9035*
2604
2605DVB_USB_ANYSEE MEDIA DRIVER
2606M: Antti Palosaari <crope@iki.fi>
2607L: linux-media@vger.kernel.org
2608W: http://linuxtv.org/
2609W: http://palosaari.fi/linux/
2610Q: http://patchwork.linuxtv.org/project/linux-media/list/
2611T: git git://linuxtv.org/anttip/media_tree.git
2612S: Maintained
2613F: drivers/media/usb/dvb-usb-v2/anysee*
2614
2615DVB_USB_AU6610 MEDIA DRIVER
2616M: Antti Palosaari <crope@iki.fi>
2617L: linux-media@vger.kernel.org
2618W: http://linuxtv.org/
2619W: http://palosaari.fi/linux/
2620Q: http://patchwork.linuxtv.org/project/linux-media/list/
2621T: git git://linuxtv.org/anttip/media_tree.git
2622S: Maintained
2623F: drivers/media/usb/dvb-usb-v2/au6610*
2624
2625DVB_USB_CE6230 MEDIA DRIVER
2626M: Antti Palosaari <crope@iki.fi>
2627L: linux-media@vger.kernel.org
2628W: http://linuxtv.org/
2629W: http://palosaari.fi/linux/
2630Q: http://patchwork.linuxtv.org/project/linux-media/list/
2631T: git git://linuxtv.org/anttip/media_tree.git
2632S: Maintained
2633F: drivers/media/usb/dvb-usb-v2/ce6230*
2634
Michael Krufkyd099dea2012-10-02 00:56:20 -03002635DVB_USB_CXUSB MEDIA DRIVER
2636M: Michael Krufky <mkrufky@linuxtv.org>
2637L: linux-media@vger.kernel.org
2638W: http://linuxtv.org/
2639W: http://github.com/mkrufky
2640Q: http://patchwork.linuxtv.org/project/linux-media/list/
2641T: git git://linuxtv.org/media_tree.git
2642S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08002643F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002644
Antti Palosaari91952bc2012-10-01 12:28:46 -03002645DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2646M: Antti Palosaari <crope@iki.fi>
2647L: linux-media@vger.kernel.org
2648W: http://linuxtv.org/
2649W: http://palosaari.fi/linux/
2650Q: http://patchwork.linuxtv.org/project/linux-media/list/
2651T: git git://linuxtv.org/anttip/media_tree.git
2652S: Maintained
2653F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2654
2655DVB_USB_EC168 MEDIA DRIVER
2656M: Antti Palosaari <crope@iki.fi>
2657L: linux-media@vger.kernel.org
2658W: http://linuxtv.org/
2659W: http://palosaari.fi/linux/
2660Q: http://patchwork.linuxtv.org/project/linux-media/list/
2661T: git git://linuxtv.org/anttip/media_tree.git
2662S: Maintained
2663F: drivers/media/usb/dvb-usb-v2/ec168*
2664
Michael Krufky8856f5f2012-10-02 00:55:50 -03002665DVB_USB_MXL111SF MEDIA DRIVER
2666M: Michael Krufky <mkrufky@linuxtv.org>
2667L: linux-media@vger.kernel.org
2668W: http://linuxtv.org/
2669W: http://github.com/mkrufky
2670Q: http://patchwork.linuxtv.org/project/linux-media/list/
2671T: git git://linuxtv.org/mkrufky/mxl111sf.git
2672S: Maintained
2673F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2674
Antti Palosaari91952bc2012-10-01 12:28:46 -03002675DVB_USB_RTL28XXU MEDIA DRIVER
2676M: Antti Palosaari <crope@iki.fi>
2677L: linux-media@vger.kernel.org
2678W: http://linuxtv.org/
2679W: http://palosaari.fi/linux/
2680Q: http://patchwork.linuxtv.org/project/linux-media/list/
2681T: git git://linuxtv.org/anttip/media_tree.git
2682S: Maintained
2683F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2684
2685DVB_USB_V2 MEDIA DRIVER
2686M: Antti Palosaari <crope@iki.fi>
2687L: linux-media@vger.kernel.org
2688W: http://linuxtv.org/
2689W: http://palosaari.fi/linux/
2690Q: http://patchwork.linuxtv.org/project/linux-media/list/
2691T: git git://linuxtv.org/anttip/media_tree.git
2692S: Maintained
2693F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2694F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2695
Jason Baronac0ac382011-08-11 14:36:43 -04002696DYNAMIC DEBUG
2697M: Jason Baron <jbaron@redhat.com>
2698S: Maintained
2699F: lib/dynamic_debug.c
2700F: include/linux/dynamic_debug.h
2701
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002702DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002703M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002704S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002705F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002706
Antti Palosaari91952bc2012-10-01 12:28:46 -03002707E4000 MEDIA DRIVER
2708M: Antti Palosaari <crope@iki.fi>
2709L: linux-media@vger.kernel.org
2710W: http://linuxtv.org/
2711W: http://palosaari.fi/linux/
2712Q: http://patchwork.linuxtv.org/project/linux-media/list/
2713T: git git://linuxtv.org/anttip/media_tree.git
2714S: Maintained
2715F: drivers/media/tuners/e4000*
2716
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002718M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002719L: linux-eata@i-connect.net
2720L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002722F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
2724EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002725M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726L: linux-scsi@vger.kernel.org
2727S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002728F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729
2730EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002731M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002732L: linux-eata@i-connect.net
2733L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002735F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
2737EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002738M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002739L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740W: http://ebtables.sourceforge.net/
2741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002742F: include/linux/netfilter_bridge/ebt_*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002743F: include/uapi/linux/netfilter_bridge/ebt_*.h
Joe Perches679655d2009-04-07 20:44:32 -07002744F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745
Antti Palosaari91952bc2012-10-01 12:28:46 -03002746EC100 MEDIA DRIVER
2747M: Antti Palosaari <crope@iki.fi>
2748L: linux-media@vger.kernel.org
2749W: http://linuxtv.org/
2750W: http://palosaari.fi/linux/
2751Q: http://patchwork.linuxtv.org/project/linux-media/list/
2752T: git git://linuxtv.org/anttip/media_tree.git
2753S: Maintained
2754F: drivers/media/dvb-frontends/ec100*
2755
Michael Halcrow237fead2006-10-04 02:16:22 -07002756ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002757M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002758M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002759L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002760W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002761S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002762F: Documentation/filesystems/ecryptfs.txt
2763F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002764
Alan Coxda9bb1d2006-01-18 17:44:13 -08002765EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002766M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002767L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002768W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002769S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002770F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002771F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002772F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002773
Borislav Petkovc476c232009-05-20 20:31:58 +02002774EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002775M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002776M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002777L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002778W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002779S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002780F: drivers/edac/amd64_edac*
2781
Ralf Baechlef65aad42012-10-17 00:39:09 +02002782EDAC-CAVIUM
2783M: Ralf Baechle <ralf@linux-mips.org>
2784M: David Daney <david.daney@cavium.com>
2785L: linux-edac@vger.kernel.org
2786L: linux-mips@linux-mips.org
2787W: bluesmoke.sourceforge.net
2788S: Supported
2789F: drivers/edac/octeon_edac*
2790
Dave Peterson0e438e32006-03-26 01:38:55 -08002791EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002792M: Mark Gross <mark.gross@intel.com>
2793M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002794L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002795W: bluesmoke.sourceforge.net
2796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002797F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002798
2799EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002800M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002801L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002802W: bluesmoke.sourceforge.net
2803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002804F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002805
Douglas Thompson6bc78402007-07-19 01:50:12 -07002806EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002807M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002808L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002809W: bluesmoke.sourceforge.net
2810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002811F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002812
2813EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002814M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002815L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002816W: bluesmoke.sourceforge.net
2817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002818F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002819
2820EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002821M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002822L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002823W: bluesmoke.sourceforge.net
2824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002825F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002826
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002827EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002828M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002829L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002830W: bluesmoke.sourceforge.net
2831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002832F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002833
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002834EDAC-I7300
2835M: Mauro Carvalho Chehab <mchehab@redhat.com>
2836L: linux-edac@vger.kernel.org
2837W: bluesmoke.sourceforge.net
2838S: Maintained
2839F: drivers/edac/i7300_edac.c
2840
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002841EDAC-I7CORE
2842M: Mauro Carvalho Chehab <mchehab@redhat.com>
2843L: linux-edac@vger.kernel.org
2844W: bluesmoke.sourceforge.net
2845S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002846F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002847
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002848EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002849M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302850M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002851L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002852W: bluesmoke.sourceforge.net
2853S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002854F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002855
2856EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002857M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002858L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002859W: bluesmoke.sourceforge.net
2860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002861F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002862
Dave Peterson0e438e32006-03-26 01:38:55 -08002863EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002864M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002865L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002866W: bluesmoke.sourceforge.net
2867S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002868F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002869
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002870EDAC-SBRIDGE
2871M: Mauro Carvalho Chehab <mchehab@redhat.com>
2872L: linux-edac@vger.kernel.org
2873W: bluesmoke.sourceforge.net
2874S: Maintained
2875F: drivers/edac/sb_edac.c
2876
Clemens Ladischaf399172011-01-10 16:32:54 +01002877EDIROL UA-101/UA-1000 DRIVER
2878M: Clemens Ladisch <clemens@ladisch.de>
2879L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2880T: git git://git.alsa-project.org/alsa-kernel.git
2881S: Maintained
2882F: sound/usb/misc/ua101.c
2883
Matt Fleming1f7df952012-10-03 10:04:02 +01002884EXTENSIBLE FIRMWARE INTERFACE (EFI)
2885M: Matt Fleming <matt.fleming@intel.com>
2886L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002887T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002888S: Maintained
2889F: Documentation/x86/efi-stub.txt
2890F: arch/ia64/kernel/efi.c
2891F: arch/x86/boot/compressed/eboot.[ch]
2892F: arch/x86/include/asm/efi.h
2893F: arch/x86/platform/efi/*
2894F: drivers/firmware/efivars.c
2895F: include/linux/efi*.h
2896
Peter Jones85a00d92010-09-22 13:05:04 -07002897EFIFB FRAMEBUFFER DRIVER
2898L: linux-fbdev@vger.kernel.org
2899M: Peter Jones <pjones@redhat.com>
2900S: Maintained
2901F: drivers/video/efifb.c
2902
Josh Triplett0bee8d22006-07-30 03:03:58 -07002903EFS FILESYSTEM
2904W: http://aeschi.ch.eu.org/efs/
2905S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002906F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002907
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002908EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002909M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2910M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002911L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002912S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002913F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002914
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002915EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002916M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002917L: netdev@vger.kernel.org
2918S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002919F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002920
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02002921EM28XX VIDEO4LINUX DRIVER
2922M: Mauro Carvalho Chehab <mchehab@redhat.com>
2923L: linux-media@vger.kernel.org
2924W: http://linuxtv.org
2925T: git git://linuxtv.org/media_tree.git
2926S: Maintained
2927F: drivers/media/usb/em28xx/
2928
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002929EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002930M: Paul Gortmaker <paul.gortmaker@windriver.com>
2931M: Matt Mackall <mpm@selenic.com>
2932M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002933L: linux-embedded@vger.kernel.org
2934S: Maintained
2935
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002936EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002937M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002938L: linux-scsi@vger.kernel.org
2939W: http://sourceforge.net/projects/lpfcxxxx
2940S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002941F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002942
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002943ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002944M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002945S: Maintained
2946F: drivers/misc/cb710/
2947F: drivers/mmc/host/cb710-mmc.*
2948F: include/linux/cb710.h
2949
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002950ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2951M: Maxim Levitsky <maximlevitsky@gmail.com>
2952S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002953F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002954
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002955EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002956M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002957S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002958T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002959F: drivers/video/s1d13xxxfb.c
2960F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002961
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002963M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002964L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002966F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967
2968ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08002969M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07002970L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002971L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002972W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002974F: include/linux/netfilter_bridge/
2975F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002978M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002979L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002981F: Documentation/filesystems/ext2.txt
2982F: fs/ext2/
2983F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
2985EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002986M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002987M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002988M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002989L: linux-ext4@vger.kernel.org
2990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002991F: Documentation/filesystems/ext3.txt
2992F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08002993
2994EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002995M: "Theodore Ts'o" <tytso@mit.edu>
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
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002998W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002999Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003001F: Documentation/filesystems/ext4.txt
3002F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
Mimi Zoharc5532b02011-08-17 18:52:24 -04003004Extended Verification Module (EVM)
3005M: Mimi Zohar <zohar@us.ibm.com>
3006S: Supported
3007F: security/integrity/evm/
3008
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003009EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3010M: MyungJoo Ham <myungjoo.ham@samsung.com>
3011M: Chanwoo Choi <cw00.choi@samsung.com>
3012L: linux-kernel@vger.kernel.org
3013S: Maintained
3014F: drivers/extcon/
3015F: Documentation/extcon/
3016
Jingoo Han0a799512012-02-06 11:30:39 +09003017EXYNOS DP DRIVER
3018M: Jingoo Han <jg1.han@samsung.com>
3019L: linux-fbdev@vger.kernel.org
3020S: Maintained
3021F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003022F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003023
Donghwa Lee33ad3912012-03-06 11:44:58 +09003024EXYNOS MIPI DISPLAY DRIVERS
3025M: Inki Dae <inki.dae@samsung.com>
3026M: Donghwa Lee <dh09.lee@samsung.com>
3027M: Kyungmin Park <kyungmin.park@samsung.com>
3028L: linux-fbdev@vger.kernel.org
3029S: Maintained
3030F: drivers/video/exynos/exynos_mipi*
3031F: include/video/exynos_mipi*
3032
Jean Delvaree53004e2006-01-09 23:26:14 +01003033F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003034M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003035L: lm-sensors@lm-sensors.org
3036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003037F: Documentation/hwmon/f71805f
3038F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003039
Michael Büscheea977e2012-04-02 12:14:32 -03003040FC0011 TUNER DRIVER
3041M: Michael Buesch <m@bues.ch>
3042L: linux-media@vger.kernel.org
3043S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003044F: drivers/media/tuners/fc0011.h
3045F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003046
Antti Palosaari91952bc2012-10-01 12:28:46 -03003047FC2580 MEDIA DRIVER
3048M: Antti Palosaari <crope@iki.fi>
3049L: linux-media@vger.kernel.org
3050W: http://linuxtv.org/
3051W: http://palosaari.fi/linux/
3052Q: http://patchwork.linuxtv.org/project/linux-media/list/
3053T: git git://linuxtv.org/anttip/media_tree.git
3054S: Maintained
3055F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
Eric Paris88b2dbd2010-08-18 12:25:50 -04003057FANOTIFY
3058M: Eric Paris <eparis@redhat.com>
3059S: Maintained
3060F: fs/notify/fanotify/
3061F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003062F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04003063
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003065M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066W: http://www.farsite.co.uk/
3067S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003068F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069
Akinobu Mitac5408b82007-04-23 14:41:20 -07003070FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003071M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003072S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003073F: Documentation/fault-injection/
3074F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003075
Robert Lovecae727d2010-02-16 12:16:00 -08003076FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3077M: Robert Love <robert.w.love@intel.com>
3078L: devel@open-fcoe.org
3079W: www.Open-FCoE.org
3080S: Supported
3081F: drivers/scsi/libfc/
3082F: drivers/scsi/fcoe/
3083F: include/scsi/fc/
3084F: include/scsi/libfc.h
3085F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003086F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08003087
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003088FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003089M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003090L: linux-fsdevel@vger.kernel.org
3091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003092F: include/linux/fcntl.h
3093F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003094F: include/uapi/linux/fcntl.h
3095F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07003096F: fs/fcntl.c
3097F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003098
3099FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003100M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003101L: linux-fsdevel@vger.kernel.org
3102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003103F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003104
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003105FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003106M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003107L: lm-sensors@lm-sensors.org
3108S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003109F: drivers/hwmon/f75375s.c
3110F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003111
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003112FIREWIRE AUDIO DRIVERS
3113M: Clemens Ladisch <clemens@ladisch.de>
3114L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3115T: git git://git.alsa-project.org/alsa-kernel.git
3116S: Maintained
3117F: sound/firewire/
3118
Stefan Richtereb86ec52012-11-03 09:25:20 +01003119FIREWIRE MEDIA DRIVERS (firedtv)
3120M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3121L: linux-media@vger.kernel.org
3122L: linux1394-devel@lists.sourceforge.net
3123T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3124S: Maintained
3125F: drivers/media/firewire/
3126
Chris Boota511ce32012-04-14 17:50:35 -07003127FIREWIRE SBP-2 TARGET
3128M: Chris Boot <bootc@bootc.net>
3129L: linux-scsi@vger.kernel.org
3130L: target-devel@vger.kernel.org
3131L: linux1394-devel@lists.sourceforge.net
3132T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3133S: Maintained
3134F: drivers/target/sbp/
3135
Joe Perches7d2c86b2009-04-07 20:59:01 -07003136FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003137M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003138L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003139W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003140T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003142F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003143F: include/linux/firewire.h
3144F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003145F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003146
3147FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003148M: Ming Lei <ming.lei@canonical.com>
3149L: linux-kernel@vger.kernel.org
3150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003151F: Documentation/firmware_class/
3152F: drivers/base/firmware*.c
3153F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003154
Jiri Kosina8206f662012-05-18 13:52:29 +02003155FLOPPY DRIVER
3156M: Jiri Kosina <jkosina@suse.cz>
3157T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3158S: Odd fixes
3159F: drivers/block/floppy.c
3160
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003161FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003162M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003163W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003165F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003166
3167FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003168L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003169S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003170F: drivers/net/wan/dlci.c
3171F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003172
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003174M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003175L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003177Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003178T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003180F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003181F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003182F: drivers/video/
3183F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003184F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003185F: include/uapi/video/
3186F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187
Timur Tabia57c1882012-10-16 17:33:42 -05003188FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003189M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05003190L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003191S: Maintained
Timur Tabia57c1882012-10-16 17:33:42 -05003192F: drivers/video/fsl-diu-fb.*
3193
Zhang Wei173acc72008-03-01 07:42:48 -07003194FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003195M: Li Yang <leoli@freescale.com>
3196M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003197L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003199F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003200
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003201FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003202M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003203L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003204L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003206F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003207
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003208FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003209M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003210L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003211L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003212S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003213F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003214F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003215
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003216FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003217M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3218M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003219L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003220L: netdev@vger.kernel.org
3221S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003222F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003223F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003224
Timur Tabid9e9d822008-04-24 08:45:26 +10003225FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003226L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003227S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003228F: arch/powerpc/sysdev/qe_lib/
3229F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003230
Joe Perchesb55ef9292009-10-26 16:49:46 -07003231FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003232M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003233L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003234L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003235S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003236F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003237
Li Yangbeaf53b2007-05-25 13:54:02 +08003238FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003239M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003240L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003241L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003242S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003243F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003244
Timur Tabid9e9d822008-04-24 08:45:26 +10003245FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003246M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003247L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003248S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003249F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003250
3251FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003252M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07003253L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003254L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003255S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07003256F: sound/soc/fsl/fsl*
3257F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003258
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003260M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003263F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
Pavel Machek71038f52009-01-15 13:51:02 -08003265FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003266M: Pavel Machek <pavel@ucw.cz>
3267M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003268L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003269S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003270F: Documentation/power/freezing-of-tasks.txt
3271F: include/linux/freezer.h
3272F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003273
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003274FRONTSWAP API
3275M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3276L: linux-kernel@vger.kernel.org
3277S: Maintained
3278F: mm/frontswap.c
3279F: include/linux/frontswap.h
3280
David Howellsa5432f52009-04-20 15:46:45 +01003281FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003282M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003283L: linux-cachefs@redhat.com
3284S: Supported
3285F: Documentation/filesystems/caching/
3286F: fs/fscache/
3287F: include/linux/fscache*.h
3288
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003289F2FS FILE SYSTEM
3290M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3291L: linux-f2fs-devel@lists.sourceforge.net
3292W: http://en.wikipedia.org/wiki/F2FS
3293T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3294S: Maintained
3295F: Documentation/filesystems/f2fs.txt
3296F: fs/f2fs/
3297F: include/linux/f2fs_fs.h
3298
David Howells5ab7ffe2007-04-10 15:10:45 +01003299FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003300M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003302F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303
Jonathan Woithe20b93732008-06-11 10:14:56 +09303304FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303305M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd09448532010-02-11 10:40:13 -05003306L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003308F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303309
Heungjun Kim4da621b2011-11-11 08:05:33 -03003310FUJITSU M-5MO LS CAMERA ISP DRIVER
3311M: Kyungmin Park <kyungmin.park@samsung.com>
3312M: Heungjun Kim <riverful.kim@samsung.com>
3313L: linux-media@vger.kernel.org
3314S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003315F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003316F: include/media/m5mols.h
3317
Robert Gerlach2d24c492012-01-18 14:26:22 +01003318FUJITSU TABLET EXTRAS
3319M: Robert Gerlach <khnz@gmx.de>
3320L: platform-driver-x86@vger.kernel.org
3321S: Maintained
3322F: drivers/platform/x86/fujitsu-tablet.c
3323
Miklos Szeredi04578f12005-09-09 13:10:22 -07003324FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003325M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003326L: fuse-devel@lists.sourceforge.net
3327W: http://fuse.sourceforge.net/
3328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003329F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003330F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003331
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003333M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003335S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003336F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337
3338GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003339M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340L: linux-scsi@vger.kernel.org
3341W: http://www.icp-vortex.com/
3342S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003343F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003345GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003346M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003347S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003348F: drivers/i2c/busses/i2c-gpio.c
3349F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003350
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003351GENERIC GPIO I2C MULTIPLEXER DRIVER
3352M: Peter Korsgaard <peter.korsgaard@barco.com>
3353L: linux-i2c@vger.kernel.org
3354S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003355F: drivers/i2c/muxes/i2c-mux-gpio.c
3356F: include/linux/i2c-mux-gpio.h
3357F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003358
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003359GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003360M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003363F: drivers/net/wan/c101.c
3364F: drivers/net/wan/hd6457*
3365F: drivers/net/wan/hdlc*
3366F: drivers/net/wan/n2.c
3367F: drivers/net/wan/pc300too.c
3368F: drivers/net/wan/pci200syn.c
3369F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003371GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003372M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003373L: linux-arch@vger.kernel.org
3374T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3375S: Maintained
3376F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003377F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003378
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003379GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda2562c2009-10-26 16:49:39 -07003380M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003381L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003382S: Supported
3383F: drivers/uio/uio_pci_generic.c
3384
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003385GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003386M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003387L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003388W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003389T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3390T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003391S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003392F: Documentation/filesystems/gfs2*.txt
3393F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003394F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003395
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003396GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003397M: Hansjoerg Lipp <hjlipp@web.de>
3398M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003399L: gigaset307x-common@lists.sourceforge.net
3400W: http://gigaset307x.sourceforge.net/
3401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003402F: Documentation/isdn/README.gigaset
3403F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003404F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003405
Grant Likelya0dc00b2011-02-12 01:48:14 -07003406GPIO SUBSYSTEM
3407M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003408M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003409S: Maintained
3410T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003411F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003412F: drivers/gpio/
3413F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003414F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003415
Harry Wei71a6d0a2011-05-11 15:13:33 -07003416GRE DEMULTIPLEXER DRIVER
3417M: Dmitry Kozlov <xeb@mail.ru>
3418L: netdev@vger.kernel.org
3419S: Maintained
3420F: net/ipv4/gre.c
3421F: include/net/gre.h
3422
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003423GRETH 10/100/1G Ethernet MAC device driver
3424M: Kristoffer Glembo <kristoffer@gaisler.com>
3425L: netdev@vger.kernel.org
3426S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003427F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003428
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003429GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003430M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003431L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003432T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003433S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003434F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003435
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003436GSPCA GL860 SUBDRIVER
3437M: Olivier Lorin <o.lorin@laposte.net>
3438L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003439T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003440S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003441F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003442
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003443GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003444M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003445L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003446T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003447S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003448F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003449
3450GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003451M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003452L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003453T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003454S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003455F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003456
Brian Johnson261982f2009-07-19 15:58:56 -03003457GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003458M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003459L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003460T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003461S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003462F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003463
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003464GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003465M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003466L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003467T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003468S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003469F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003470
3471GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003472M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003473L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003474T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003475S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003476F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003477
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003478STK1160 USB VIDEO CAPTURE DRIVER
3479M: Ezequiel Garcia <elezegarcia@gmail.com>
3480L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003481T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003482S: Maintained
3483F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003484
Harry Wei71a6d0a2011-05-11 15:13:33 -07003485HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3486M: Frank Seidel <frank@f-seidel.de>
3487L: platform-driver-x86@vger.kernel.org
3488W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3489S: Maintained
3490F: drivers/platform/x86/hdaps.c
3491
3492HWPOISON MEMORY FAILURE HANDLING
3493M: Andi Kleen <andi@firstfloor.org>
3494L: linux-mm@kvack.org
3495T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3496S: Maintained
3497F: mm/memory-failure.c
3498F: mm/hwpoison-inject.c
3499
3500HYPERVISOR VIRTUAL CONSOLE DRIVER
3501L: linuxppc-dev@lists.ozlabs.org
3502S: Odd Fixes
3503F: drivers/tty/hvc/
3504
Michael Buesch844dd052006-06-26 00:24:59 -07003505HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003506M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003507M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003508L: lm-sensors@lm-sensors.org
3509W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003510T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003511T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003512S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003513F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003514F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003515F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003516
3517HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003518M: Matt Mackall <mpm@selenic.com>
3519M: Herbert Xu <herbert@gondor.apana.org.au>
3520S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003521F: Documentation/hw_random.txt
3522F: drivers/char/hw_random/
3523F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003524
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003525HARDWARE SPINLOCK CORE
3526M: Ohad Ben-Cohen <ohad@wizery.com>
3527S: Maintained
3528F: Documentation/hwspinlock.txt
3529F: drivers/hwspinlock/hwspinlock_*
3530F: include/linux/hwspinlock.h
3531
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003533L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003535F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536
Antti Palosaari91952bc2012-10-01 12:28:46 -03003537HD29L2 MEDIA DRIVER
3538M: Antti Palosaari <crope@iki.fi>
3539L: linux-media@vger.kernel.org
3540W: http://linuxtv.org/
3541W: http://palosaari.fi/linux/
3542Q: http://patchwork.linuxtv.org/project/linux-media/list/
3543T: git git://linuxtv.org/anttip/media_tree.git
3544S: Maintained
3545F: drivers/media/dvb-frontends/hd29l2*
3546
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003547HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003548M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003549L: iss_storagedev@hp.com
3550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003551F: Documentation/blockdev/cpqarray.txt
3552F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003553
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003554HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003555M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003556L: iss_storagedev@hp.com
3557S: Supported
3558F: Documentation/scsi/hpsa.txt
3559F: drivers/scsi/hpsa*.[ch]
3560F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003561F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003562
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003563HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003564M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003565L: iss_storagedev@hp.com
3566S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003567F: Documentation/blockdev/cciss.txt
3568F: drivers/block/cciss*
3569F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003570F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003571
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003573L: linux-fsdevel@vger.kernel.org
3574S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003575F: Documentation/filesystems/hfs.txt
3576F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
3578HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003579M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580L: linux-nvidia@lists.surfsouth.com
3581W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003583F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003585HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003586M: Pavel Machek <pavel@ucw.cz>
3587M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003588L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003589S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003590F: arch/x86/power/
3591F: drivers/base/power/
3592F: kernel/power/
3593F: include/linux/suspend.h
3594F: include/linux/freezer.h
3595F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003596F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003597
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003598HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003599M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003600L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003601T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003603F: drivers/hid/
3604F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003605F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003606
Ingo Molnar38bed542007-02-22 09:09:34 +01003607HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003608M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003609T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003611F: Documentation/timers/
3612F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003613F: kernel/time/clockevents.c
3614F: kernel/time/tick*.*
3615F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003616F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003617F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003618
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003621S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003622F: drivers/net/hamradio/dmascc.c
3623F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003625HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003626M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003627W: http://www.highpoint-tech.com
3628S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003629F: Documentation/scsi/hptiop.txt
3630F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003631
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003633M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634L: linux-hippi@sunsite.dk
3635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003636F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003637F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003638F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003639F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640
Jouni Malinenff1d2762005-05-12 22:54:16 -04003641HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003642M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003643L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003644L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003645W: http://hostap.epitest.fi/
3646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003647F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003648
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003649HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05003650L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003651S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003652F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003653
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003654HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003655M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003656S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003657F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003658
Joe Perches7d2c86b2009-04-07 20:59:01 -07003659HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003660M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003662F: Documentation/timers/hpet.txt
3663F: drivers/char/hpet.c
3664F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003665F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003666
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003667HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003668M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003670F: arch/x86/kernel/hpet.c
3671F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003672
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003674M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003677F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678
Joe Perches7d2c86b2009-04-07 20:59:01 -07003679HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003680M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003681W: http://www.pharscape.org
3682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003683F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003684
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003685HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003686M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003687L: linux-input@vger.kernel.org
3688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003689F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003690
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003692M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003694F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003696Hyper-V CORE AND DRIVERS
3697M: K. Y. Srinivasan <kys@microsoft.com>
3698M: Haiyang Zhang <haiyangz@microsoft.com>
3699L: devel@linuxdriverproject.org
3700S: Maintained
3701F: drivers/hv/
3702F: drivers/hid/hid-hyperv.c
3703F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003704
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003705I2C OVER PARALLEL PORT
3706M: Jean Delvare <khali@linux-fr.org>
3707L: linux-i2c@vger.kernel.org
3708S: Maintained
3709F: Documentation/i2c/busses/i2c-parport
3710F: Documentation/i2c/busses/i2c-parport-light
3711F: drivers/i2c/busses/i2c-parport.c
3712F: drivers/i2c/busses/i2c-parport-light.c
3713
3714I2C/SMBUS CONTROLLER DRIVERS FOR PC
3715M: Jean Delvare <khali@linux-fr.org>
3716L: linux-i2c@vger.kernel.org
3717S: Maintained
3718F: Documentation/i2c/busses/i2c-ali1535
3719F: Documentation/i2c/busses/i2c-ali1563
3720F: Documentation/i2c/busses/i2c-ali15x3
3721F: Documentation/i2c/busses/i2c-amd756
3722F: Documentation/i2c/busses/i2c-amd8111
3723F: Documentation/i2c/busses/i2c-i801
3724F: Documentation/i2c/busses/i2c-nforce2
3725F: Documentation/i2c/busses/i2c-piix4
3726F: Documentation/i2c/busses/i2c-sis5595
3727F: Documentation/i2c/busses/i2c-sis630
3728F: Documentation/i2c/busses/i2c-sis96x
3729F: Documentation/i2c/busses/i2c-via
3730F: Documentation/i2c/busses/i2c-viapro
3731F: drivers/i2c/busses/i2c-ali1535.c
3732F: drivers/i2c/busses/i2c-ali1563.c
3733F: drivers/i2c/busses/i2c-ali15x3.c
3734F: drivers/i2c/busses/i2c-amd756.c
3735F: drivers/i2c/busses/i2c-amd756-s4882.c
3736F: drivers/i2c/busses/i2c-amd8111.c
3737F: drivers/i2c/busses/i2c-i801.c
3738F: drivers/i2c/busses/i2c-isch.c
3739F: drivers/i2c/busses/i2c-nforce2.c
3740F: drivers/i2c/busses/i2c-nforce2-s4985.c
3741F: drivers/i2c/busses/i2c-piix4.c
3742F: drivers/i2c/busses/i2c-sis5595.c
3743F: drivers/i2c/busses/i2c-sis630.c
3744F: drivers/i2c/busses/i2c-sis96x.c
3745F: drivers/i2c/busses/i2c-via.c
3746F: drivers/i2c/busses/i2c-viapro.c
3747
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003748I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003749M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003750L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003751S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003752F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003753
Jean Delvare5b543962005-08-15 19:51:02 +02003754I2C SUBSYSTEM
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003755M: Wolfram Sang <w.sang@pengutronix.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003756M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003757L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003758W: http://i2c.wiki.kernel.org/
3759T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003760T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003762F: Documentation/i2c/
3763F: drivers/i2c/
3764F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003765F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003766F: include/uapi/linux/i2c.h
3767F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003769I2C-TAOS-EVM DRIVER
3770M: Jean Delvare <khali@linux-fr.org>
3771L: linux-i2c@vger.kernel.org
3772S: Maintained
3773F: Documentation/i2c/busses/i2c-taos-evm
3774F: drivers/i2c/busses/i2c-taos-evm.c
3775
Till Harbaume8c76ee2007-05-01 23:26:35 +02003776I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003777M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003778L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003779W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003781F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003782
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003784M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003786F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787
3788i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003789M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003790T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791S: Maintained
3792
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003794M: Tony Luck <tony.luck@intel.com>
3795M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003797T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003799F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800
Kent Yoder956c2032012-09-07 04:17:01 +08003801IBM Power in-Nest Crypto Acceleration
3802M: Kent Yoder <key@linux.vnet.ibm.com>
3803L: linux-crypto@vger.kernel.org
3804S: Supported
3805F: drivers/crypto/nx/
3806
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003807IBM Power 842 compression accelerator
3808M: Robert Jennings <rcj@linux.vnet.ibm.com>
3809S: Supported
3810F: drivers/crypto/nx/nx-842.c
3811F: include/linux/nx842.h
3812
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003814M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003816F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817
Santiago Leon9d348af2010-09-03 18:29:53 +00003818IBM Power Virtual Ethernet Device Driver
3819M: Santiago Leon <santil@linux.vnet.ibm.com>
3820L: netdev@vger.kernel.org
3821S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003822F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003823
Robert Jennings4b7652c2012-07-31 12:34:36 -05003824IBM Power Virtual SCSI/FC Device Drivers
3825M: Robert Jennings <rcj@linux.vnet.ibm.com>
3826L: linux-scsi@vger.kernel.org
3827S: Supported
3828F: drivers/scsi/ibmvscsi/
3829X: drivers/scsi/ibmvscsi/ibmvstgt.c
3830
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831IBM ServeRAID RAID DRIVER
3832P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003833M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003835S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003836F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003838ICH LPC AND GPIO DRIVER
3839M: Peter Tyser <ptyser@xes-inc.com>
3840S: Maintained
3841F: drivers/mfd/lpc_ich.c
3842F: drivers/gpio/gpio-ich.c
3843
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003844IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003845M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003847Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003848T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003850F: Documentation/ide/
3851F: drivers/ide/
3852F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853
Ike Panhc6cb8c132011-08-25 22:28:45 +08003854IDEAPAD LAPTOP EXTRAS DRIVER
3855M: Ike Panhc <ike.pan@canonical.com>
3856L: platform-driver-x86@vger.kernel.org
3857W: http://launchpad.net/ideapad-laptop
3858S: Maintained
3859F: drivers/platform/x86/ideapad-laptop.c
3860
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003861IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003862M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003863L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003865F: Documentation/cdrom/ide-cd
3866F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867
Andy Henroid27471fd2008-10-09 11:45:22 -07003868IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003869M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003870L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003871S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003872F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003873
Sergey Lapin02cf2282009-06-08 12:18:50 +00003874IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003875M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003876M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003877L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003878W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003879T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003880S: Maintained
3881F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003882F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08003883F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003884
Sean Young40ad4a32012-11-19 10:32:53 -03003885IGUANAWORKS USB IR TRANSCEIVER
3886M: Sean Young <sean@mess.org>
3887L: linux-media@vger.kernel.org
3888S: Maintained
3889F: drivers/media/rc/iguanair.c
3890
Ameya Palande9545f862012-01-10 09:00:58 -08003891IIO SUBSYSTEM AND DRIVERS
3892M: Jonathan Cameron <jic23@cam.ac.uk>
3893L: linux-iio@vger.kernel.org
3894S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003895F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003896F: drivers/staging/iio/
3897
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003898IKANOS/ADI EAGLE ADSL USB DRIVER
3899M: Matthieu Castet <castet.matthieu@free.fr>
3900M: Stanislaw Gruszka <stf_xl@wp.pl>
3901S: Maintained
3902F: drivers/usb/atm/ueagle-atm.c
3903
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01003904INDUSTRY PACK SUBSYSTEM (IPACK)
3905M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
3906M: Jens Taprogge <jens.taprogge@taprogge.org>
3907M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3908L: industrypack-devel@lists.sourceforge.net
3909W: http://industrypack.sourceforge.net
3910S: Maintained
3911F: drivers/ipack/
3912
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003913INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003914M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003915S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003916F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003917
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003919L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003920S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003921F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922
3923INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003924M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003925M: Sean Hefty <sean.hefty@intel.com>
3926M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003927L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003928W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003929Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003930T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003932F: Documentation/infiniband/
3933F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003934F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935
Robert Lovec9f04f52005-07-15 12:21:07 -04003936INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003937M: John McCutchan <john@johnmccutchan.com>
3938M: Robert Love <rlove@rlove.org>
3939M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003940S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003941F: Documentation/filesystems/inotify.txt
3942F: fs/notify/inotify/
3943F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003944F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003945
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003946INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003947M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3948M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003949L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003950Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003951T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003952S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003953F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003954F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003955F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003956F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003957
Henrik Rydberg3267a872010-06-24 19:10:40 -07003958INPUT MULTITOUCH (MT) PROTOCOL
3959M: Henrik Rydberg <rydberg@euromail.se>
3960L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003961T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003962S: Maintained
3963F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003964F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003965K: \b(ABS|SYN)_MT_
3966
Dave Jiang4ac13e12011-07-29 17:16:55 -07003967INTEL C600 SERIES SAS CONTROLLER DRIVER
3968M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003969M: Lukasz Dorau <lukasz.dorau@intel.com>
3970M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003971M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003972L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003973T: git git://git.code.sf.net/p/intel-sas/isci
3974S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003975F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07003976
Len Brown26717172010-03-08 14:07:30 -05003977INTEL IDLE DRIVER
3978M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003979L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003980T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003981S: Supported
3982F: drivers/idle/intel_idle.c
3983
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003984INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003985M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003986L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003987S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003988F: Documentation/fb/intelfb.txt
3989F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003990
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003992M: Antonino Daplas <adaplas@gmail.com>
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: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303997INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003998M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05003999L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304000W: http://www.lesswatts.org/projects/acpi/
4001S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004002F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304003
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004005M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004007F: arch/x86/kernel/microcode_core.c
4008F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004010INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004011M: Dan Williams <djbw@fb.com>
4012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004013F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004014
David Woodhouse6c8909b2008-10-18 16:12:17 +01004015INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004016M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004017L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004018T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004019S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004020F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004021F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004022
Dan Williamsb3e5f262007-08-07 10:26:35 -07004023INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004024M: Dan Williams <djbw@fb.com>
4025S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004026F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004027
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004028INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004029M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004031F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4032F: arch/arm/mach-ixp4xx/include/mach/npe.h
4033F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4034F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004035F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004036F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004037
Michael Buesch844dd052006-06-26 00:24:59 -07004038INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004039M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004041F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004042
Jeff Kirsher0d164402010-10-05 01:15:17 +00004043INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004044M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4045M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4046M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004047M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4048M: Don Skidmore <donald.c.skidmore@intel.com>
4049M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004050M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004051M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004052M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004053M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004054L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004055W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004056W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004057T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4058T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004060F: Documentation/networking/e100.txt
4061F: Documentation/networking/e1000.txt
4062F: Documentation/networking/e1000e.txt
4063F: Documentation/networking/igb.txt
4064F: Documentation/networking/igbvf.txt
4065F: Documentation/networking/ixgb.txt
4066F: Documentation/networking/ixgbe.txt
4067F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004068F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004070INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4071M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004072L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004074F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004075F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004076F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004077
Shane Wang4bd96a72010-03-10 14:36:10 +08004078INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004079M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4080M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004081M: Shane Wang <shane.wang@intel.com>
4082L: tboot-devel@lists.sourceforge.net
4083W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004084T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004085S: Supported
4086F: Documentation/intel_txt.txt
4087F: include/linux/tboot.h
4088F: arch/x86/kernel/tboot.c
4089
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004090INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004091M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004092M: linux-wimax@intel.com
4093L: wimax@linuxwimax.org
4094S: Supported
4095W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004096F: Documentation/wimax/README.i2400m
4097F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004098F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004099
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004100INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4101M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004102L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004103S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004104F: drivers/net/wireless/iwlegacy/
4105
Zhu Yib481de92007-09-25 17:54:57 -07004106INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004107M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004108M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004109M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004110L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004111W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07004112T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004113S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004114F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004115
Tomas Winklerde8fe022012-05-09 16:39:02 +03004116INTEL MANAGEMENT ENGINE (mei)
4117M: Tomas Winkler <tomas.winkler@intel.com>
4118L: linux-kernel@vger.kernel.org
4119S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004120F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004121F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a12013-01-04 15:35:36 -08004122F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004123
Ralf Baechlecb109a02007-08-30 23:56:30 -07004124IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004125M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126L: linux-mips@linux-mips.org
4127S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004128F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129
Ralf Baechlecb109a02007-08-30 23:56:30 -07004130IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004131M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004132L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004133S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004134F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004135
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004136IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004137M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004139F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140
Francois Romieu1202d6f2007-09-17 17:13:55 -07004141IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004142M: Francois Romieu <romieu@fr.zoreil.com>
4143M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004144L: netdev@vger.kernel.org
4145S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004146F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004147
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004148IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004149M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004150L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004152F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004153
Corey Minyard4409ebe2006-04-20 02:43:12 -07004154IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004155M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004156L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004157W: http://openipmi.sourceforge.net/
4158S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004159F: Documentation/IPMI.txt
4160F: drivers/char/ipmi/
4161F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004162F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004163
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004164IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004165M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004166L: linux-scsi@vger.kernel.org
4167W: http://www.adaptec.com/
4168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004169F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004170
4171IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004172M: Wensong Zhang <wensong@linux-vs.org>
4173M: Simon Horman <horms@verge.net.au>
4174M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004175L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004176L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004178F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004179F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004180F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004181F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182
Randy Dunlape7839f22008-10-12 16:11:45 -07004183IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004184M: Jiri Kosina <jkosina@suse.cz>
4185M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004186S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004187F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004188
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004189IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004190M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004191L: netdev@vger.kernel.org
4192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004193F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004194F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004195F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004196
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004198M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004199L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004200L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004202S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004203T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004204F: Documentation/networking/irda.txt
4205F: drivers/net/irda/
4206F: include/net/irda/
4207F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004209IRQ SUBSYSTEM
4210M: Thomas Gleixner <tglx@linutronix.de>
4211S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004212T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004213F: kernel/irq/
4214
Grant Likely7ab3a832012-02-14 14:06:47 -07004215IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4216M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4217M: Grant Likely <grant.likely@secretlab.ca>
4218T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4219S: Maintained
4220F: Documentation/IRQ-domain.txt
4221F: include/linux/irqdomain.h
4222F: kernel/irq/irqdomain.c
4223
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004224ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004225M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004227F: Documentation/isapnp.txt
4228F: drivers/pnp/isapnp/
4229F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004230
Harry Wei71a6d0a2011-05-11 15:13:33 -07004231iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4232M: Peter Jones <pjones@redhat.com>
4233M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4234S: Maintained
4235F: drivers/firmware/iscsi_ibft*
4236
Mike Christie14816b1e2007-11-28 16:22:06 -08004237ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004238M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004239L: open-iscsi@googlegroups.com
4240W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004241T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004243F: drivers/scsi/*iscsi*
4244F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004245
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004247M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004248L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004249L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004251T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004253F: Documentation/isdn/
4254F: drivers/isdn/
4255F: include/linux/isdn.h
4256F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004257F: include/uapi/linux/isdn.h
4258F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259
4260ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004261M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004262L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263W: http://www.melware.de
4264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004265F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266
Jean Delvared6248702010-03-05 22:17:20 +01004267IT87 HARDWARE MONITORING DRIVER
4268M: Jean Delvare <khali@linux-fr.org>
4269L: lm-sensors@lm-sensors.org
4270S: Maintained
4271F: Documentation/hwmon/it87
4272F: drivers/hwmon/it87.c
4273
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004274IT913X MEDIA DRIVER
4275M: Malcolm Priestley <tvboxspy@gmail.com>
4276L: linux-media@vger.kernel.org
4277W: http://linuxtv.org/
4278Q: http://patchwork.linuxtv.org/project/linux-media/list/
4279S: Maintained
4280F: drivers/media/usb/dvb-usb-v2/it913x*
4281
4282IT913X FE MEDIA DRIVER
4283M: Malcolm Priestley <tvboxspy@gmail.com>
4284L: linux-media@vger.kernel.org
4285W: http://linuxtv.org/
4286Q: http://patchwork.linuxtv.org/project/linux-media/list/
4287S: Maintained
4288F: drivers/media/dvb-frontends/it913x-fe*
4289
Hans Verkuil91821ff2007-12-02 09:35:33 -03004290IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004291M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004292L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004293L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004294T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004295W: http://www.ivtvdriver.org
4296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004297F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004298F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004299F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004300
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004301IX2505V MEDIA DRIVER
4302M: Malcolm Priestley <tvboxspy@gmail.com>
4303L: linux-media@vger.kernel.org
4304W: http://linuxtv.org/
4305Q: http://patchwork.linuxtv.org/project/linux-media/list/
4306S: Maintained
4307F: drivers/media/dvb-frontends/ix2505v*
4308
Guenter Roeck4453d732010-08-09 17:21:08 -07004309JC42.4 TEMPERATURE SENSOR DRIVER
4310M: Guenter Roeck <linux@roeck-us.net>
4311L: lm-sensors@lm-sensors.org
4312S: Maintained
4313F: drivers/hwmon/jc42.c
4314F: Documentation/hwmon/jc42
4315
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004316JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004317M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004318L: jfs-discussion@lists.sourceforge.net
4319W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004320T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004322F: Documentation/filesystems/jfs.txt
4323F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004324
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004325JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004326M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004327L: netdev@vger.kernel.org
4328S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004329F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004330
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004332M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004333L: linux-mtd@lists.infradead.org
4334W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004336F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004337F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338
Josh Triplettde456d32006-07-30 03:04:00 -07004339JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004340M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004341M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004342L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004343S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004344F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004345F: include/linux/jbd.h
4346
4347JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4348M: "Theodore Ts'o" <tytso@mit.edu>
4349L: linux-ext4@vger.kernel.org
4350S: Maintained
4351F: fs/jbd2/
4352F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004353
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004354JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004355M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004356L: linux-serial@vger.kernel.org
4357S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004358F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004359
Clemens Ladischaf399172011-01-10 16:32:54 +01004360K10TEMP HARDWARE MONITORING DRIVER
4361M: Clemens Ladisch <clemens@ladisch.de>
4362L: lm-sensors@lm-sensors.org
4363S: Maintained
4364F: Documentation/hwmon/k10temp
4365F: drivers/hwmon/k10temp.c
4366
Rudolf Marek4660cb32006-10-08 22:01:26 +02004367K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004368M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004369L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004371F: Documentation/hwmon/k8temp
4372F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373
4374KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004375M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004376L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004377S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004378F: Documentation/kbuild/kconfig-language.txt
4379F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380
Vivek Goyalea6c2082006-05-20 14:59:55 -07004381KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004382M: Vivek Goyal <vgoyal@redhat.com>
4383M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004384L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004385W: http://lse.sourceforge.net/kdump/
4386S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004387F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004388
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004390M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004391L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004393F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394
Michal Marek70fb7ba2010-01-29 14:22:43 +01004395KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004396M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004397T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4398T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004399L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004401F: Documentation/kbuild/
4402F: Makefile
4403F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004404F: scripts/basic/
4405F: scripts/mk*
4406F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407
4408KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004409L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004410W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004411S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004413KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004414M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004415L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004417S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004418F: fs/nfsd/
4419F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004420F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004421F: fs/lockd/
4422F: fs/nfs_common/
4423F: net/sunrpc/
4424F: include/linux/lockd/
4425F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004426F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427
Avi Kivity426d62e2006-12-13 00:34:03 -08004428KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004429M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004430M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004431L: kvm@vger.kernel.org
4432W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004433S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004434F: Documentation/*/kvm.txt
4435F: arch/*/kvm/
4436F: arch/*/include/asm/kvm*
4437F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004438F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004439F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004440
Joerg Roedelad8003d2008-09-10 20:01:07 +02004441KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004442M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004443L: kvm@vger.kernel.org
4444W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004446F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004447F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004448
Hollis Blanchard513014b2008-04-16 23:28:08 -05004449KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004450M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004451L: kvm-ppc@vger.kernel.org
4452W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004453T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004454S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004455F: arch/powerpc/include/asm/kvm*
4456F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004457
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004458KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004459M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004460L: kvm-ia64@vger.kernel.org
4461W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004462S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004463F: Documentation/ia64/kvm.txt
4464F: arch/ia64/include/asm/kvm*
4465F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004466
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004467KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004468M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004469M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004470M: linux390@de.ibm.com
4471L: linux-s390@vger.kernel.org
4472W: http://www.ibm.com/developerworks/linux/linux390/
4473S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004474F: Documentation/s390/kvm.txt
4475F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004476F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004477F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004478
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004479KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004480M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004481W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004482L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004484F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004485F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004486F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004487
David Howellse9714612010-03-29 23:42:09 +01004488KEYS/KEYRINGS:
4489M: David Howells <dhowells@redhat.com>
4490L: keyrings@linux-nfs.org
4491S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004492F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004493F: include/linux/key.h
4494F: include/linux/key-type.h
4495F: include/keys/
4496F: security/keys/
4497
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004498KEYS-TRUSTED
4499M: David Safford <safford@watson.ibm.com>
4500M: Mimi Zohar <zohar@us.ibm.com>
4501L: linux-security-module@vger.kernel.org
4502L: keyrings@linux-nfs.org
4503S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004504F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004505F: include/keys/trusted-type.h
4506F: security/keys/trusted.c
4507F: security/keys/trusted.h
4508
4509KEYS-ENCRYPTED
4510M: Mimi Zohar <zohar@us.ibm.com>
4511M: David Safford <safford@watson.ibm.com>
4512L: linux-security-module@vger.kernel.org
4513L: keyrings@linux-nfs.org
4514S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004515F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004516F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004517F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004518
Jason Wessel5b778da2010-05-20 21:04:28 -05004519KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004520M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004521W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004522L: kgdb-bugreport@lists.sourceforge.net
4523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004524F: Documentation/DocBook/kgdb.tmpl
4525F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004526F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004527F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004528F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004529F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004530
Pekka Enberg456db8c2008-04-28 22:47:29 +03004531KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004532M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004533M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004534S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004535F: Documentation/kmemcheck.txt
4536F: arch/x86/include/asm/kmemcheck.h
4537F: arch/x86/mm/kmemcheck/
4538F: include/linux/kmemcheck.h
4539F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004540
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004541KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004542M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004543S: Maintained
4544F: Documentation/kmemleak.txt
4545F: include/linux/kmemleak.h
4546F: mm/kmemleak.c
4547F: mm/kmemleak-test.c
4548
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004549KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004550M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4551M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4552M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004553M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004555F: Documentation/kprobes.txt
4556F: include/linux/kprobes.h
4557F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004558
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004559KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004560M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004561W: http://miguelojeda.es/auxdisplay.htm
4562W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004564F: Documentation/auxdisplay/ks0108
4565F: drivers/auxdisplay/ks0108.c
4566F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004567
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004570S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004571F: Documentation/networking/lapb-module.txt
4572F: include/*/lapb.h
4573F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574
4575LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004576M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577L: linux-scsi@vger.kernel.org
4578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004579F: Documentation/scsi/53c700.txt
4580F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581
Richard Purdie263de9b2006-05-15 09:44:16 -07004582LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004583M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004584M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004585L: linux-leds@vger.kernel.org
4586T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004588F: drivers/leds/
4589F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004590
Jean Delvareb0461a42011-06-15 15:08:46 -07004591LEGACY EEPROM DRIVER
4592M: Jean Delvare <khali@linux-fr.org>
4593S: Maintained
4594F: Documentation/misc-devices/eeprom
4595F: drivers/misc/eeprom/eeprom.c
4596
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004598M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599L: legousb-devel@lists.sourceforge.net
4600W: http://legousb.sourceforge.net/
4601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004602F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603
Michael Krufky055616a2012-10-02 00:56:06 -03004604LG2160 MEDIA DRIVER
4605M: Michael Krufky <mkrufky@linuxtv.org>
4606L: linux-media@vger.kernel.org
4607W: http://linuxtv.org/
4608W: http://github.com/mkrufky
4609Q: http://patchwork.linuxtv.org/project/linux-media/list/
4610T: git git://linuxtv.org/mkrufky/tuners.git
4611S: Maintained
4612F: drivers/media/dvb-frontends/lg2160.*
4613
Michael Krufky6f0e7722012-10-02 00:56:00 -03004614LGDT3305 MEDIA DRIVER
4615M: Michael Krufky <mkrufky@linuxtv.org>
4616L: linux-media@vger.kernel.org
4617W: http://linuxtv.org/
4618W: http://github.com/mkrufky
4619Q: http://patchwork.linuxtv.org/project/linux-media/list/
4620T: git git://linuxtv.org/mkrufky/tuners.git
4621S: Maintained
4622F: drivers/media/dvb-frontends/lgdt3305.*
4623
Rusty Russell568a17f2007-10-25 14:12:24 +10004624LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004625M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004626L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004627W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004628S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004629F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004630F: arch/x86/lguest/
4631F: drivers/lguest/
4632F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004633F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004634
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004636M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637W: http://www.ibm.com/linux/ltc/projects/ppc
4638S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004639F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004641LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004642M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4643M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004645L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004646Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004647T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004649F: Documentation/powerpc/
4650F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651
4652LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004653M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004655L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004657F: arch/powerpc/platforms/powermac/
4658F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659
Grant Likely77a76362008-07-12 12:11:43 -06004660LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004661M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004662L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004663T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004665F: arch/powerpc/platforms/512x/
4666F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667
4668LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004669M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004670M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004672L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004673T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004675F: arch/powerpc/platforms/40x/
4676F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677
Grant Likely260c02a2007-10-02 12:15:34 +10004678LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004679M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004680W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004681L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004682T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004684F: arch/powerpc/*/*virtex*
4685F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686
Tom Rinie93adf12005-07-26 12:49:53 -07004687LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004688M: Vitaly Bordug <vitb@kernel.crashing.org>
4689M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004690W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004691L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004692S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004693F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004694
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004696M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004697W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004698L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004699S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004700F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004701F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702
Olof Johanssonab06ff32006-09-06 14:44:54 -05004703LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004704M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004705L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004706S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004707F: arch/powerpc/platforms/pasemi/
4708F: drivers/*/*pasemi*
4709F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004710
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004712M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004713L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714S: Supported
4715
Harry Weia23ce6d2011-02-11 16:52:20 +01004716LIS3LV02D ACCELEROMETER DRIVER
4717M: Eric Piel <eric.piel@tremplin-utc.net>
4718S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004719F: Documentation/misc-devices/lis3lv02d
4720F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004721F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004722
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004723LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004724M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004726F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004727F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07004728F: include/net/llc*
4729F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004730
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004731LM73 HARDWARE MONITOR DRIVER
4732M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4733L: lm-sensors@lm-sensors.org
4734S: Maintained
4735F: drivers/hwmon/lm73.c
4736
Jean Delvare156e2d12011-07-25 21:46:11 +02004737LM78 HARDWARE MONITOR DRIVER
4738M: Jean Delvare <khali@linux-fr.org>
4739L: lm-sensors@lm-sensors.org
4740S: Maintained
4741F: Documentation/hwmon/lm78
4742F: drivers/hwmon/lm78.c
4743
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004745M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004746L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004748F: Documentation/hwmon/lm83
4749F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750
4751LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004752M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004753L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004755F: Documentation/hwmon/lm90
4756F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004758LME2510 MEDIA DRIVER
4759M: Malcolm Priestley <tvboxspy@gmail.com>
4760L: linux-media@vger.kernel.org
4761W: http://linuxtv.org/
4762Q: http://patchwork.linuxtv.org/project/linux-media/list/
4763S: Maintained
4764F: drivers/media/usb/dvb-usb-v2/lmedm04*
4765
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004766LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004767M: Peter Zijlstra <peterz@infradead.org>
4768M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004769T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004771F: Documentation/lockdep*.txt
4772F: Documentation/lockstat.txt
4773F: include/linux/lockdep.h
4774F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004775
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004776LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004777M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004778L: linux-ntfs-dev@lists.sourceforge.net
4779W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004781F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004782F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783
Joern Engelef6ada32009-11-20 22:17:12 +01004784LogFS
4785M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304786M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004787L: logfs@logfs.org
4788W: logfs.org
4789S: Maintained
4790F: fs/logfs/
4791
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004792LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304793M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
4794M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004795M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004796L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004797L: linux-scsi@vger.kernel.org
4798W: http://www.lsilogic.com/support
4799S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004800F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304801F: drivers/scsi/mpt2sas/
4802F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004803
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004805M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806L: linux-scsi@vger.kernel.org
4807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004808F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809
Guenter Roecke5f5c992010-06-25 11:59:54 -07004810LTC4261 HARDWARE MONITOR DRIVER
4811M: Guenter Roeck <linux@roeck-us.net>
4812L: lm-sensors@lm-sensors.org
4813S: Maintained
4814F: Documentation/hwmon/ltc4261
4815F: drivers/hwmon/ltc4261.c
4816
Mike Frysinger81365c32008-10-29 14:01:12 -07004817LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004818M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004819M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004820M: Cyril Hrubis <chrubis@suse.cz>
4821M: Caspar Zhang <caspar@casparzhang.com>
4822M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004823L: ltp-list@lists.sourceforge.net (subscribers-only)
4824W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004825T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004826T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004827S: Maintained
4828
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004829M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004830M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004831L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004832L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4833W: http://www.linux-m32r.org/
4834S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004835F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004836
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004838M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839L: linux-m68k@lists.linux-m68k.org
4840W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004841T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004843F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004844F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845
4846M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004847M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004849L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004851F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852
4853M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004854M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855W: http://www.tazenda.demon.co.uk/phil/linux-hp
4856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004857F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004859M88RS2000 MEDIA DRIVER
4860M: Malcolm Priestley <tvboxspy@gmail.com>
4861L: linux-media@vger.kernel.org
4862W: http://linuxtv.org/
4863Q: http://patchwork.linuxtv.org/project/linux-media/list/
4864S: Maintained
4865F: drivers/media/dvb-frontends/m88rs2000*
4866
Jiri Benc64a327a2007-05-05 11:47:08 -07004867MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004868M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004869L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004870W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004871T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4872T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004874F: Documentation/networking/mac80211-injection.txt
4875F: include/net/mac80211.h
4876F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004877
Stefano Brivio1036d862007-12-23 04:46:27 +01004878MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004879M: Stefano Brivio <stefano.brivio@polimi.it>
4880M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004881L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004882W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004883T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4884T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004886F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004887
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004888MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004889M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004890L: netdev@vger.kernel.org
4891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004892F: drivers/net/macvlan.c
4893F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004894
Michael Kerriskfaf16682005-07-31 22:34:47 -07004895MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004896M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004897W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004898L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004899S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004900
stephen hemminger44c14c12012-04-02 12:59:47 +00004901MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4902M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08004903M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00004904L: netdev@vger.kernel.org
4905S: Maintained
4906F: drivers/net/ethernet/marvell/sk*
4907
Stefano Brivio74cda162007-11-19 20:27:46 +01004908MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004909M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004910L: libertas-dev@lists.infradead.org
4911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004912F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004913
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004914MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004915M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004916L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004917S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004918F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004919F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02004921MARVELL MVNETA ETHERNET DRIVER
4922M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4923L: netdev@vger.kernel.org
4924S: Maintained
4925F: drivers/net/ethernet/marvell/mvneta.*
4926
Bing Zhaofcad5842011-07-13 13:11:58 -07004927MARVELL MWIFIEX WIRELESS DRIVER
4928M: Bing Zhao <bzhao@marvell.com>
4929L: linux-wireless@vger.kernel.org
4930S: Maintained
4931F: drivers/net/wireless/mwifiex/
4932
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004933MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004934M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004935L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004936S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004937F: drivers/net/wireless/mwl8k.c
4938
Pierre Ossman2a695672009-03-16 19:52:26 +01004939MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004940M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004941S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004942F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004943
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004945L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004946S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004947F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004948F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004949
Guenter Roeckca462082012-06-01 23:28:23 -07004950MAX16065 HARDWARE MONITOR DRIVER
4951M: Guenter Roeck <linux@roeck-us.net>
4952L: lm-sensors@lm-sensors.org
4953S: Maintained
4954F: Documentation/hwmon/max16065
4955F: drivers/hwmon/max16065.c
4956
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004957MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004958M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004959L: lm-sensors@lm-sensors.org
4960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004961F: Documentation/hwmon/max6650
4962F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004963
Joe Perches127c49a2009-04-08 08:34:04 -07004964MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004965M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07004966P: LinuxTV.org Project
4967L: linux-media@vger.kernel.org
4968W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004969Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004970T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07004971S: Maintained
4972F: Documentation/dvb/
4973F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004974F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004975F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004976F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004977F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02004978F: include/uapi/linux/dvb/
4979F: include/uapi/linux/videodev2.h
4980F: include/uapi/linux/media.h
4981F: include/uapi/linux/v4l2-*
4982F: include/uapi/linux/meye.h
4983F: include/uapi/linux/ivtv*
4984F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004985
4986MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004987M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004988L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004989W: http://megaraid.lsilogic.com
4990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004991F: Documentation/scsi/megaraid.txt
4992F: drivers/scsi/megaraid.*
4993F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004994
Amir Vadai2c46c9d2012-12-02 03:49:21 +00004995MELLANOX ETHERNET DRIVER (mlx4_en)
4996M: Amir Vadai <amirv@mellanox.com>
4997L: netdev@vger.kernel.org
4998S: Supported
4999W: http://www.mellanox.com
5000Q: http://patchwork.ozlabs.org/project/netdev/list/
5001F: drivers/net/ethernet/mellanox/mlx4/en_*
5002
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005003MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005W: http://www.linux-mm.org
5006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005007F: include/linux/mm.h
5008F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005009
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005010MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005011M: Johannes Weiner <hannes@cmpxchg.org>
5012M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005013M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005014M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005015L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005016L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005018F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005019F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005020
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005022M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005024W: http://www.linux-mtd.infradead.org/
5025Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08005026T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005028F: drivers/mtd/
5029F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005030F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031
Michal Simekc6375b02009-03-27 14:25:52 +01005032MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005033M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005034L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005035W: http://www.monstr.eu/fdt/
5036T: git git://git.monstr.eu/linux-2.6-microblaze.git
5037S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005038F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039
5040MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005041M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005043F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044
5045MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005046M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005048W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005049T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005050Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005051S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005052F: Documentation/mips/
5053F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005056M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005058F: include/linux/module.h
5059F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060
5061MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005063S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005064F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005065F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005066F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067
Jiri Slabyb9705b62008-04-30 00:53:48 -07005068MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005069M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005071F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005072F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005073
Alexey Klimov889b2f82012-11-16 17:43:59 -03005074MR800 AVERMEDIA USB FM RADIO DRIVER
5075M: Alexey Klimov <klimov.linux@gmail.com>
5076L: linux-media@vger.kernel.org
5077T: git git://linuxtv.org/media_tree.git
5078S: Maintained
5079F: drivers/media/radio/radio-mr800.c
5080
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005081MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005082M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05005083L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005085F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005086
Anisse Astier0f1006b2009-12-17 11:28:49 +01005087MSI WMI SUPPORT
5088M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd09448532010-02-11 10:40:13 -05005089L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005090S: Supported
5091F: drivers/platform/x86/msi-wmi.c
5092
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005093MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005094M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005095T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005096S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005097F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005098
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005099MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005100M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005101L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005102T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005104F: drivers/mmc/
5105F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005106F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005107
David Brownell15a05802007-08-08 09:12:54 -07005108MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005109S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005110F: drivers/mmc/host/mmc_spi.c
5111F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005112
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005114M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005116F: Documentation/sound/oss/MultiSound
5117F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118
Jiri Slabyd7354102006-12-08 02:38:35 -08005119MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005120S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005121F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005122F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005123
Felipe Balbi550a7372008-07-24 12:27:36 +03005124MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005125M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005126L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005127T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005129F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005130
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005131MXL5007T MEDIA DRIVER
5132M: Michael Krufky <mkrufky@linuxtv.org>
5133L: linux-media@vger.kernel.org
5134W: http://linuxtv.org/
5135W: http://github.com/mkrufky
5136Q: http://patchwork.linuxtv.org/project/linux-media/list/
5137T: git git://linuxtv.org/mkrufky/tuners.git
5138S: Maintained
5139F: drivers/media/tuners/mxl5007t.*
5140
Brice Goglin2d3cf582008-05-17 12:45:36 +02005141MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005142M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005143L: netdev@vger.kernel.org
5144W: http://www.myri.com/scs/download-Myri10GE.html
5145S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005146F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005147
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005149S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005150F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151
Daniel Mack23dc05a2011-05-18 11:28:38 +02005152NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5153M: Daniel Mack <zonque@gmail.com>
5154S: Maintained
5155L: alsa-devel@alsa-project.org
5156W: http://www.native-instruments.com
5157F: sound/usb/caiaq/
5158
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005160M: Petr Vandrovec <petr@vandrovec.name>
5161S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005162F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163
5164NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005165M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166L: linux-scsi@vger.kernel.org
5167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005168F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005170NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005171M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005172L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005173W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005174S: Supported
5175F: drivers/infiniband/hw/nes/
5176
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005177NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005178M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005179L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005181F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005182
Jon Masonb2f5a052010-07-15 08:47:27 +00005183NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005184M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005185L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005186S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005187F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005188F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005189F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005190
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192P: Harald Welte
5193P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005194M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005195M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005196L: netfilter-devel@vger.kernel.org
5197L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005198L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199W: http://www.netfilter.org/
5200W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005201T: git git://1984.lsi.us.es/nf
5202T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005203S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005204F: include/linux/netfilter*
5205F: include/linux/netfilter/
5206F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005207F: include/uapi/linux/netfilter*
5208F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005209F: net/*/netfilter.c
5210F: net/*/netfilter/
5211F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212
Paul Moore4cc67732006-09-25 15:57:13 -07005213NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005214M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005215W: http://netlabel.sf.net
5216L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005217S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005218F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005219F: include/net/netlabel.h
5220F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005221
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005223M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005225W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005227F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005228F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005229F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005231NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005232M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005234F: Documentation/blockdev/nbd.txt
5235F: drivers/block/nbd.c
5236F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005237F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238
Neil Horman6e436502009-10-05 03:56:55 +00005239NETWORK DROP MONITOR
5240M: Neil Horman <nhorman@tuxdriver.com>
5241L: netdev@vger.kernel.org
5242S: Maintained
5243W: https://fedorahosted.org/dropwatch/
5244F: net/core/drop_monitor.c
5245
Linus Torvalds1da177e2005-04-16 15:20:36 -07005246NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005247M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005248L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005249W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005250Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005251T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5252T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005254F: net/
5255F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005256F: include/linux/in.h
5257F: include/linux/net.h
5258F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005259F: include/uapi/linux/in.h
5260F: include/uapi/linux/net.h
5261F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262
5263NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005264M: "David S. Miller" <davem@davemloft.net>
5265M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005266M: James Morris <jmorris@namei.org>
5267M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5268M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005269L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005270T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005272F: net/ipv4/
5273F: net/ipv6/
5274F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005275F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276
David S. Miller73b76562012-10-16 14:08:40 -04005277NETWORKING [IPSEC]
5278M: Steffen Klassert <steffen.klassert@secunet.com>
5279M: Herbert Xu <herbert@gondor.apana.org.au>
5280M: "David S. Miller" <davem@davemloft.net>
5281L: netdev@vger.kernel.org
5282T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5283S: Maintained
5284F: net/xfrm/
5285F: net/key/
5286F: net/ipv4/xfrm*
5287F: net/ipv6/xfrm*
5288F: include/uapi/linux/xfrm.h
5289F: include/net/xfrm.h
5290
James Morris10e2ff12007-08-25 14:41:28 -07005291NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005292M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005293L: netdev@vger.kernel.org
5294S: Maintained
5295
John W. Linville29f8f632006-01-18 14:52:48 -08005296NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005297M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005298L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005299Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005300T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005301S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005302F: net/mac80211/
5303F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005304F: net/wireless/
5305F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005306F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005307F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005308F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005309F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005310
Joe Perches788873a2009-04-16 09:38:45 +00005311NETWORKING DRIVERS
5312L: netdev@vger.kernel.org
5313W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005314Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005315T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5316T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005317S: Odd Fixes
5318F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005319F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005320F: include/linux/netdevice.h
5321F: include/linux/arcdevice.h
5322F: include/linux/etherdevice.h
5323F: include/linux/fcdevice.h
5324F: include/linux/fddidevice.h
5325F: include/linux/hippidevice.h
5326F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005327F: include/uapi/linux/if_*
5328F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005329
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005330NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005331M: Sony Chacko <sony.chacko@qlogic.com>
5332M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005333L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005334W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005335S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005336F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005337
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005338NFC SUBSYSTEM
5339M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5340M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5341M: Samuel Ortiz <sameo@linux.intel.com>
5342L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005343L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005344S: Maintained
5345F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005346F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005347F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005348F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005349F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005351NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005352M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005353L: linux-nfs@vger.kernel.org
5354W: http://client.linux-nfs.org
5355T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005357F: fs/lockd/
5358F: fs/nfs/
5359F: fs/nfs_common/
5360F: net/sunrpc/
5361F: include/linux/lockd/
5362F: include/linux/nfs*
5363F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005364F: include/uapi/linux/nfs*
5365F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005366
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005367NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005368M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005369L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005370W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005371T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005372S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005373F: Documentation/filesystems/nilfs2.txt
5374F: fs/nilfs2/
5375F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005376
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005378M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005381F: Documentation/scsi/NinjaSCSI.txt
5382F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383
5384NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005385M: GOTO Masanori <gotom@debian.or.jp>
5386M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005389F: Documentation/scsi/NinjaSCSI.txt
5390F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005393M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005395W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005396T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005397S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005398F: Documentation/filesystems/ntfs.txt
5399F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005401NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005402M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005403L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005405F: drivers/video/riva/
5406F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407
Tony Lindgrenf5525782009-05-28 13:23:53 -07005408OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005409M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005410L: linux-omap@vger.kernel.org
5411W: http://www.muru.com/linux/omap/
5412W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005413Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005414T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005415S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005416F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005417F: drivers/i2c/busses/i2c-omap.c
5418F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005419
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005420OMAP DEVICE TREE SUPPORT
5421M: Benoît Cousson <b-cousson@ti.com>
5422M: Tony Lindgren <tony@atomide.com>
5423L: linux-omap@vger.kernel.org
5424L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5425S: Maintained
5426F: arch/arm/boot/dts/*omap*
5427F: arch/arm/boot/dts/*am3*
5428
Tony Lindgrenf5525782009-05-28 13:23:53 -07005429OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005430M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005431L: linux-omap@vger.kernel.org
5432S: Maintained
5433F: arch/arm/*omap*/*clock*
5434
5435OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005436M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005437L: linux-omap@vger.kernel.org
5438S: Maintained
5439F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005440F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005441
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005442OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5443M: Rajendra Nayak <rnayak@ti.com>
5444M: Paul Walmsley <paul@pwsan.com>
5445L: linux-omap@vger.kernel.org
5446S: Maintained
5447F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5448F: arch/arm/mach-omap2/powerdomain44xx.c
5449F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5450F: arch/arm/mach-omap2/clockdomain44xx.c
5451
Tony Lindgrenf5525782009-05-28 13:23:53 -07005452OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005453M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005454M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005455L: alsa-devel@alsa-project.org (subscribers-only)
5456L: linux-omap@vger.kernel.org
5457S: Maintained
5458F: sound/soc/omap/
5459
5460OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005461M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005462L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005463L: linux-omap@vger.kernel.org
5464S: Maintained
5465F: drivers/video/omap/
5466
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005467OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005468M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005469L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005470L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005471S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005472F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005473F: Documentation/arm/OMAP/DSS
5474
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005475OMAP HARDWARE SPINLOCK SUPPORT
5476M: Ohad Ben-Cohen <ohad@wizery.com>
5477L: linux-omap@vger.kernel.org
5478S: Maintained
5479F: drivers/hwspinlock/omap_hwspinlock.c
5480F: arch/arm/mach-omap2/hwspinlock.c
5481
Tony Lindgrenf5525782009-05-28 13:23:53 -07005482OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005483M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005484L: linux-omap@vger.kernel.org
5485S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005486F: drivers/mmc/host/omap.c
5487
5488OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305489M: Venkatraman S <svenkatr@ti.com>
5490L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005491L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305492S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005493F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005494
5495OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005496M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005497S: Maintained
5498F: drivers/char/hw_random/omap-rng.c
5499
Paul Walmsleyf400c822010-12-06 19:08:54 -07005500OMAP HWMOD SUPPORT
5501M: Benoît Cousson <b-cousson@ti.com>
5502M: Paul Walmsley <paul@pwsan.com>
5503L: linux-omap@vger.kernel.org
5504S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005505F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005506
5507OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5508M: Benoît Cousson <b-cousson@ti.com>
5509L: linux-omap@vger.kernel.org
5510S: Maintained
5511F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5512
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005513OMAP IMAGE SIGNAL PROCESSOR (ISP)
5514M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5515L: linux-media@vger.kernel.org
5516S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005517F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005518
Tony Lindgrenf5525782009-05-28 13:23:53 -07005519OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005520M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005521L: linux-usb@vger.kernel.org
5522L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005523T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005524S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005525F: drivers/usb/*/*omap*
5526F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005527
Kevin Hilman6d994712012-07-16 10:05:07 -07005528OMAP GPIO DRIVER
5529M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5530M: Kevin Hilman <khilman@ti.com>
5531L: linux-omap@vger.kernel.org
5532S: Maintained
5533F: drivers/gpio/gpio-omap.c
5534
Bob Copeland0ad122d2008-07-25 19:45:18 -07005535OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005536M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005537L: linux-karma-devel@lists.sourceforge.net
5538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005539F: Documentation/filesystems/omfs.txt
5540F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005541
Harald Weltec1986ee2005-11-13 16:06:29 -08005542OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005543M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005545F: drivers/char/pcmcia/cm4000_cs.c
5546F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005547F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005548
Harald Welte77c44ab2005-11-13 16:06:26 -08005549OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005550M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005552F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005553
Jonathan Corbet77d51402007-03-22 19:44:17 -03005554OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005555M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005556L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005557T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005558S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005559F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005560
Thomas Gleixner431bca72007-05-02 09:31:35 +02005561ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005562M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005563L: linux-mtd@lists.infradead.org
5564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005565F: drivers/mtd/onenand/
5566F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005567
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005569M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570L: osst-users@lists.sourceforge.net
5571L: linux-scsi@vger.kernel.org
5572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005573F: drivers/scsi/osst*
5574F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005575
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005576OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005577M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005578L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005580F: Documentation/i2c/busses/i2c-ocores
5581F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005582
Grant Likely860c44c2009-10-26 16:49:49 -07005583OPEN FIRMWARE AND FLATTENED DEVICE TREE
5584M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005585M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005586L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005587W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005588T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005589S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005590F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005591F: drivers/of
5592F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005593F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005594K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005595K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005596
Jonas Bonn19f9d392011-06-04 22:00:38 +03005597OPENRISC ARCHITECTURE
5598M: Jonas Bonn <jonas@southpole.se>
5599W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005600L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005601S: Maintained
5602T: git git://openrisc.net/~jonas/linux
5603F: arch/openrisc
5604
Jesse Grossccb13522011-10-25 19:26:31 -07005605OPENVSWITCH
5606M: Jesse Gross <jesse@nicira.com>
5607L: dev@openvswitch.org
5608W: http://openvswitch.org
5609T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5610S: Maintained
5611F: net/openvswitch/
5612
Clemens Ladischaf399172011-01-10 16:32:54 +01005613OPL4 DRIVER
5614M: Clemens Ladisch <clemens@ladisch.de>
5615L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5616T: git git://git.alsa-project.org/alsa-kernel.git
5617S: Maintained
5618F: sound/drivers/opl4/
5619
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005621M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005622L: oprofile-list@lists.sf.net
5623S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005624F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005625F: arch/*/oprofile/
5626F: drivers/oprofile/
5627F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005628
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005629ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005630M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005631M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005632L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5633W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005634T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005635S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005636F: Documentation/filesystems/ocfs2.txt
5637F: Documentation/filesystems/dlmfs.txt
5638F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005639
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005641L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005642W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005643W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005644S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005645F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005647OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005648M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005649M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005650L: osd-dev@open-osd.org
5651W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005652T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005653S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005654F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005655F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005656F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005657
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005658P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005659M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005660L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005661W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005663F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005664
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005665PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005666M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005667L: netdev@vger.kernel.org
5668S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005669F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005670
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005671PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005672M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005673L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005675F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005676
Steffen Klassert48fc2672010-08-13 10:10:46 -04005677PADATA PARALLEL EXECUTION MECHANISM
5678M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005679L: linux-crypto@vger.kernel.org
5680S: Maintained
5681F: kernel/padata.c
5682F: include/linux/padata.h
5683F: Documentation/padata.txt
5684
Harald Welte709ee532008-09-23 17:46:57 +02005685PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005686M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05005687L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005689F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005690
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005691PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005692M: David Howells <dhowells@redhat.com>
5693M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005694L: linux-am33-list@redhat.com (moderated for non-subscribers)
5695W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5696S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005697F: Documentation/mn10300/
5698F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005699
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005701L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005702S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005703F: drivers/parport/
5704F: include/linux/parport*.h
5705F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005706F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005708PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005709M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005710M: Chris Wright <chrisw@sous-sol.org>
5711M: Alok Kataria <akataria@vmware.com>
5712M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005713L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005714S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005715F: Documentation/ia64/paravirt_ops.txt
5716F: arch/*/kernel/paravirt*
5717F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005718
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005720M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005721L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005722W: http://www.torque.net/linux-pp.html
5723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005724F: Documentation/blockdev/paride.txt
5725F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726
5727PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005728M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005729M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005730L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005731W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005732Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005733T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005735F: arch/parisc/
5736F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005737
Jim Cromie1662d322006-10-06 00:43:59 -07005738PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005739M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005740L: lm-sensors@lm-sensors.org
5741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005742F: Documentation/hwmon/pc87360
5743F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005744
5745PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005746M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005748F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005749
Jean Delvare1ad107f2010-08-14 21:09:00 +02005750PC87427 HARDWARE MONITORING DRIVER
5751M: Jean Delvare <khali@linux-fr.org>
5752L: lm-sensors@lm-sensors.org
5753S: Maintained
5754F: Documentation/hwmon/pc87427
5755F: drivers/hwmon/pc87427.c
5756
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005757PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005758M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005759S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005760F: drivers/leds/leds-pca9532.c
5761F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005762
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005763PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005764M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005765L: linux-i2c@vger.kernel.org
5766S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005767F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005768
Wolfram Sanga1867d32009-09-18 22:45:51 +02005769PCA9564/PCA9665 I2C BUS DRIVER
5770M: Wolfram Sang <w.sang@pengutronix.de>
5771L: linux-i2c@vger.kernel.org
5772S: Maintained
5773F: drivers/i2c/algos/i2c-algo-pca.c
5774F: drivers/i2c/busses/i2c-pca-*
5775F: include/linux/i2c-algo-pca.h
5776F: include/linux/i2c-pca-platform.h
5777
Khalid Aziz3971dae2012-04-12 12:49:13 -07005778PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005779M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005780S: Maintained
5781F: drivers/firmware/pcdp.*
5782
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005783PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005784M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005785L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005786S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005787F: Documentation/PCI/pci-error-recovery.txt
5788F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005789
Linus Torvalds1da177e2005-04-16 15:20:36 -07005790PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005791M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005792L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005793Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005794T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005796F: Documentation/PCI/
5797F: drivers/pci/
5798F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005799
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005801P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005802L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005803W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005804T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005806F: Documentation/pcmcia/
5807F: drivers/pcmcia/
5808F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005809
5810PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005811M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005812L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005814F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815
Steffen Klassert48fc2672010-08-13 10:10:46 -04005816PCRYPT PARALLEL CRYPTO ENGINE
5817M: Steffen Klassert <steffen.klassert@secunet.com>
5818L: linux-crypto@vger.kernel.org
5819S: Maintained
5820F: crypto/pcrypt.c
5821F: include/crypto/pcrypt.h
5822
Tejun Heoe72df0b2010-12-10 17:02:49 +01005823PER-CPU MEMORY ALLOCATOR
5824M: Tejun Heo <tj@kernel.org>
5825M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005826T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5827S: Maintained
5828F: include/linux/percpu*.h
5829F: mm/percpu*.c
5830F: arch/*/include/asm/percpu.h
5831
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005832PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005833M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005834S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005835F: include/linux/delayacct.h
5836F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005837
Ingo Molnar57c0c152009-09-21 12:20:38 +02005838PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005839M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5840M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005841M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005842M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005843T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005844S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005845F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005846F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005847F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005848F: arch/*/kernel/perf_event*.c
5849F: arch/*/kernel/*/perf_event*.c
5850F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005851F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02005852F: arch/*/kernel/perf_callchain.c
5853F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005854
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005855PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005856M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005857L: linux-abi-devel@lists.sourceforge.net
5858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005859F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005860F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005861
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005862PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005863M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005864S: Supported
5865F: Documentation/networking/phonet.txt
5866F: include/linux/phonet.h
5867F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005868F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005869F: net/phonet/
5870
Linus Torvalds1da177e2005-04-16 15:20:36 -07005871PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005872M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005873L: linux-mtd@lists.infradead.org
5874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005875F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876
Bruno Prémontefdbb102012-07-30 21:39:03 +02005877PICOLCD HID DRIVER
5878M: Bruno Prémont <bonbons@linux-vserver.org>
5879L: linux-input@vger.kernel.org
5880S: Maintained
5881F: drivers/hid/hid-picolcd*
5882
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005883PICOXCELL SUPPORT
5884M: Jamie Iles <jamie@jamieiles.com>
5885L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5886T: git git://github.com/jamieiles/linux-2.6-ji.git
5887S: Supported
5888F: arch/arm/mach-picoxcell
5889F: drivers/*/picoxcell*
5890F: drivers/*/*/picoxcell*
5891
Linus Walleij2744e8a2011-05-02 20:50:54 +02005892PIN CONTROL SUBSYSTEM
5893M: Linus Walleij <linus.walleij@linaro.org>
5894S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005895F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005896F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005897
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02005898PIN CONTROLLER - ATMEL AT91
5899M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
5900L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5901S: Maintained
5902F: drivers/pinctrl/pinctrl-at91.c
5903
Viresh Kumardeda8282012-03-28 22:27:07 +05305904PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005905M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305906L: spear-devel@list.st.com
5907L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5908W: http://www.st.com/spear
5909S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005910F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305911
Peter Osterlund249a6772005-09-27 21:45:30 -07005912PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005913M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005914S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005915F: drivers/block/pktcdvd.c
5916F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005917F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005918
GuanXuetaob31d8272011-01-16 00:35:49 +08005919PKUNITY SOC DRIVERS
5920M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5921W: http://mprc.pku.edu.cn/~guanxuetao/linux
5922S: Maintained
5923T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5924F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005925F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005926F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005927F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005928
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005929PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005930M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005931L: lm-sensors@lm-sensors.org
5932W: http://www.lm-sensors.org/
5933W: http://www.roeck-us.net/linux/drivers/
5934T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5935S: Maintained
5936F: Documentation/hwmon/pmbus
5937F: drivers/hwmon/pmbus/
5938F: include/linux/i2c/pmbus.h
5939
Anil Ravindranath89a36812009-08-25 17:35:18 -07005940PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005941M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005942L: linux-scsi@vger.kernel.org
5943W: http://www.pmc-sierra.com/
5944S: Supported
5945F: drivers/scsi/pmcraid.*
5946
jack wangdbf9bfe2009-10-14 16:19:21 +08005947PMC SIERRA PM8001 DRIVER
5948M: jack_wang@usish.com
5949M: lindar_liu@usish.com
5950L: linux-scsi@vger.kernel.org
5951S: Supported
5952F: drivers/scsi/pm8001/
5953
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005955M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005956T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005958F: fs/timerfd.c
5959F: include/linux/timer*
5960F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961
Anton Vorontsov3be86142007-07-15 04:43:36 +04005962POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005963M: Anton Vorontsov <cbou@mail.ru>
5964M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005965T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005967F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005968F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005969
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005971M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005972M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005974F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975
Vitaly Wool999445d2007-01-04 13:07:03 +01005976PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005977M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005978L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005980F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005981
Linus Torvalds1da177e2005-04-16 15:20:36 -07005982PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005983M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984L: linux-ppp@vger.kernel.org
5985S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005986F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987
5988PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005989M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005991F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005992F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993
5994PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005995M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005997F: drivers/net/ppp/pppoe.c
5998F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999
James Chapmana6d23702007-06-27 15:53:17 -07006000PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006001M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006002S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006003F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006004F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006005F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006006
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006007PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006008M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006009W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6010L: linuxpps@ml.enneenne.com (subscribers-only)
6011S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006012F: Documentation/pps/
6013F: drivers/pps/
6014F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006015
Harry Wei71a6d0a2011-05-11 15:13:33 -07006016PPTP DRIVER
6017M: Dmitry Kozlov <xeb@mail.ru>
6018L: netdev@vger.kernel.org
6019S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006020F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006021W: http://sourceforge.net/projects/accel-pptp
6022
Linus Torvalds1da177e2005-04-16 15:20:36 -07006023PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006024M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006025L: kpreempt-tech@lists.sourceforge.net
6026W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6027S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006028F: Documentation/preempt-locking.txt
6029F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030
6031PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006032M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006033L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006034W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006035S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006036F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006038PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006039M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006040L: linux-ide@vger.kernel.org
6041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006042F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006043
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006044PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006045M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006046L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006047L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006048S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006049F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006050
Geoff Levandf58a9d12006-11-23 00:46:51 +01006051PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006052M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006053L: linuxppc-dev@lists.ozlabs.org
6054L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006056F: arch/powerpc/boot/ps3*
6057F: arch/powerpc/include/asm/lv1call.h
6058F: arch/powerpc/include/asm/ps3*.h
6059F: arch/powerpc/platforms/ps3/
6060F: drivers/*/ps3*
6061F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006062F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006063F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006064F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006065
Jim Pariscffb4add2009-01-06 11:32:10 +00006066PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006067M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006068L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006069S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006070F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006071
Anton Vorontsov8defe592012-08-03 18:07:20 -07006072PSTORE FILESYSTEM
6073M: Anton Vorontsov <cbouatmailru@gmail.com>
6074M: Colin Cross <ccross@android.com>
6075M: Kees Cook <keescook@chromium.org>
6076M: Tony Luck <tony.luck@intel.com>
6077S: Maintained
6078T: git git://git.infradead.org/users/cbou/linux-pstore.git
6079F: fs/pstore/
6080F: include/linux/pstore*
6081F: drivers/firmware/efivars.c
6082F: drivers/acpi/apei/erst.c
6083
Richard Cochran7fbc4152012-03-10 01:55:53 +00006084PTP HARDWARE CLOCK SUPPORT
6085M: Richard Cochran <richardcochran@gmail.com>
6086S: Maintained
6087W: http://linuxptp.sourceforge.net/
6088F: Documentation/ABI/testing/sysfs-ptp
6089F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006090F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006091F: drivers/net/phy/dp83640*
6092F: drivers/ptp/*
6093F: include/linux/ptp_cl*
6094
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006095PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006096M: Roland McGrath <roland@redhat.com>
6097M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006098S: Maintained
6099F: include/asm-generic/syscall.h
6100F: include/linux/ptrace.h
6101F: include/linux/regset.h
6102F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006103F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006104F: kernel/ptrace.c
6105
Michael Krufky83202042006-07-03 00:24:18 -07006106PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006107M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006108L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006109L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006110W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006111T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006113F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006114F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006115
Hans de Goede39532e62012-11-04 17:05:59 -03006116PWC WEBCAM DRIVER
6117M: Hans de Goede <hdegoede@redhat.com>
6118L: linux-media@vger.kernel.org
6119T: git git://linuxtv.org/media_tree.git
6120S: Maintained
6121F: drivers/media/usb/pwc/*
6122
Thierry Reding200efed2012-03-27 13:16:18 +02006123PWM SUBSYSTEM
6124M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006125L: linux-kernel@vger.kernel.org
6126S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006127W: http://gitorious.org/linux-pwm
6128T: git git://gitorious.org/linux-pwm/linux-pwm.git
6129F: Documentation/pwm.txt
6130F: Documentation/devicetree/bindings/pwm/
6131F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006132F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006133F: drivers/video/backlight/pwm_bl.c
6134F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006135
Eric Miao30ec2612008-06-12 15:21:41 -07006136PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006137M: Eric Miao <eric.y.miao@gmail.com>
6138M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006139M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006140L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006141T: git git://github.com/hzhuang1/linux.git
6142T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006144F: arch/arm/mach-pxa/
6145F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006146F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006147F: drivers/usb/gadget/pxa2*
6148F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006149F: sound/arm/pxa*
6150F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006152MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006153M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006154M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006155L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006156T: git git://github.com/hzhuang1/linux.git
6157T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006158S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006159F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006160
Pierre Ossman272f1332007-05-14 21:25:26 +02006161PXA MMCI DRIVER
6162S: Orphan
6163
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006164PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006165M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006166L: rtc-linux@googlegroups.com
6167S: Maintained
6168
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006169QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006170M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006171L: linux-rdma@vger.kernel.org
6172S: Supported
6173F: drivers/infiniband/hw/qib/
6174
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006175QLOGIC QLA1280 SCSI DRIVER
6176M: Michael Reed <mdr@sgi.com>
6177L: linux-scsi@vger.kernel.org
6178S: Maintained
6179F: drivers/scsi/qla1280.[ch]
6180
Linus Torvalds1da177e2005-04-16 15:20:36 -07006181QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006182M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006183M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006184L: linux-scsi@vger.kernel.org
6185S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006186F: Documentation/scsi/LICENSE.qla2xxx
6187F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006188
Ravi Anand883c98f2010-04-28 11:45:49 +05306189QLOGIC QLA4XXX iSCSI DRIVER
6190M: Ravi Anand <ravi.anand@qlogic.com>
6191M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6192M: iscsi-driver@qlogic.com
6193L: linux-scsi@vger.kernel.org
6194S: Supported
6195F: drivers/scsi/qla4xxx/
6196
Ron Mercer5a4faa872006-07-25 00:40:21 -07006197QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006198M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006199M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006200M: linux-driver@qlogic.com
6201L: netdev@vger.kernel.org
6202S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006203F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006204F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006205
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006206QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006207M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006208M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006209M: linux-driver@qlogic.com
6210L: netdev@vger.kernel.org
6211S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006212F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006213
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006214QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006215M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006216M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006217M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006218L: netdev@vger.kernel.org
6219S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006220F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006221
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006223M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224W: http://www.alarsen.net/linux/qnx4fs/
6225S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006226F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006227F: include/uapi/linux/qnx4_fs.h
6228F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006229
Antti Palosaari91952bc2012-10-01 12:28:46 -03006230QT1010 MEDIA DRIVER
6231M: Antti Palosaari <crope@iki.fi>
6232L: linux-media@vger.kernel.org
6233W: http://linuxtv.org/
6234W: http://palosaari.fi/linux/
6235Q: http://patchwork.linuxtv.org/project/linux-media/list/
6236T: git git://linuxtv.org/anttip/media_tree.git
6237S: Maintained
6238F: drivers/media/tuners/qt1010*
6239
Richard Kuo4f4567c2011-10-31 18:56:38 -05006240QUALCOMM HEXAGON ARCHITECTURE
6241M: Richard Kuo <rkuo@codeaurora.org>
6242L: linux-hexagon@vger.kernel.org
6243S: Supported
6244F: arch/hexagon/
6245
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006246RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006247M: Yehuda Sadeh <yehuda@inktank.com>
6248M: Sage Weil <sage@inktank.com>
6249M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006250M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006251W: http://ceph.com/
6252T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006253S: Supported
6254F: drivers/block/rbd.c
6255F: drivers/block/rbd_types.h
6256
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006258M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006259L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006260S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006261F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006262F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006263
Hans de Goedec6c9b342012-11-04 17:03:58 -03006264RADIOSHARK RADIO DRIVER
6265M: Hans de Goede <hdegoede@redhat.com>
6266L: linux-media@vger.kernel.org
6267T: git git://linuxtv.org/media_tree.git
6268S: Maintained
6269F: drivers/media/radio/radio-shark.c
6270
6271RADIOSHARK2 RADIO DRIVER
6272M: Hans de Goede <hdegoede@redhat.com>
6273L: linux-media@vger.kernel.org
6274T: git git://linuxtv.org/media_tree.git
6275S: Maintained
6276F: drivers/media/radio/radio-shark2.c
6277F: drivers/media/radio/radio-tea5777.c
6278
Linus Torvalds1da177e2005-04-16 15:20:36 -07006279RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006280M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006281L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006283F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006284
Randy Dunlape7839f22008-10-12 16:11:45 -07006285RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006286P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006287M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006288M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006289M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006290L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006291L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006292W: http://rt2x00.serialmonkey.com/
6293S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006294T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006295F: drivers/net/wireless/rt2x00/
6296
Nick Piggin9db55792008-02-08 04:19:49 -08006297RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006298M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006300F: Documentation/blockdev/ramdisk.txt
6301F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006302
Matt Mackall9e95ce22005-04-16 15:25:56 -07006303RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006304M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006306F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006307
Matt Porter394b7012005-11-07 01:00:15 -08006308RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006309M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006310M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006312F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006313
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006314RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006315L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006316S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006317F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006318
6319RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006320M: Josh Triplett <josh@freedesktop.org>
6321M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006322S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006323T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006324F: Documentation/RCU/torture.txt
6325F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006326
Florian Fainellic1f766b2008-02-06 22:39:44 +01006327RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006328M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006329S: Maintained
6330
Florian Fainellidb17f392007-12-19 11:30:30 +01006331RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006332M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006333L: netdev@vger.kernel.org
6334S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006335F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006336
Andy Grovera09ed662009-02-24 15:30:41 +00006337RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006338M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006339L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006340S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006341F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006342
Josh Triplett595182b2006-10-04 02:17:21 -07006343READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006344M: Dipankar Sarma <dipankar@in.ibm.com>
6345M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006346W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006347S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006348T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006349F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006350X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006351F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006352F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006353X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006354
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006355REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006356M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006357L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006358Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006360F: Documentation/rtc.txt
6361F: drivers/rtc/
6362F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006363F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006364
Linus Torvalds1da177e2005-04-16 15:20:36 -07006365REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006366L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006367S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006368F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006369
Mark Brownb83a3132011-05-11 19:59:58 +02006370REGISTER MAP ABSTRACTION
6371M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6372T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6373S: Supported
6374F: drivers/base/regmap/
6375F: include/linux/regmap.h
6376
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006377REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6378M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006379T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006380S: Maintained
6381F: drivers/remoteproc/
6382F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006383F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006384
Ivo van Doorne08976452008-04-12 19:23:55 +02006385RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006386M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006387L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006388W: http://wireless.kernel.org/
6389T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6390T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006391S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006392F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006393F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006394
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006395RICOH SMARTMEDIA/XD DRIVER
6396M: Maxim Levitsky <maximlevitsky@gmail.com>
6397S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006398F: drivers/mtd/nand/r852.c
6399F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006400
Maxim Levitsky92634122011-03-25 01:56:59 -07006401RICOH R5C592 MEMORYSTICK DRIVER
6402M: Maxim Levitsky <maximlevitsky@gmail.com>
6403S: Maintained
6404F: drivers/memstick/host/r592.*
6405
Linus Torvalds1da177e2005-04-16 15:20:36 -07006406ROCKETPORT DRIVER
6407P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006408W: http://www.comtrol.com
6409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006410F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006411F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006412
6413ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006414M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006415L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006416W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006418F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006419F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006420F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421
Antti Palosaari91952bc2012-10-01 12:28:46 -03006422RTL2830 MEDIA DRIVER
6423M: Antti Palosaari <crope@iki.fi>
6424L: linux-media@vger.kernel.org
6425W: http://linuxtv.org/
6426W: http://palosaari.fi/linux/
6427Q: http://patchwork.linuxtv.org/project/linux-media/list/
6428T: git git://linuxtv.org/anttip/media_tree.git
6429S: Maintained
6430F: drivers/media/dvb-frontends/rtl2830*
6431
Larry Finger59840482008-11-12 17:13:09 -06006432RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006433M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006434L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006435W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006436T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006437S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006438F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006439
Larry Finger59840482008-11-12 17:13:09 -06006440RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006441M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006442M: Hin-Tak Leung <htl10@users.sourceforge.net>
6443M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006444L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006445W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006446T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006447S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006448F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006449
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006450RTL8192CE WIRELESS DRIVER
6451M: Larry Finger <Larry.Finger@lwfinger.net>
6452M: Chaoming Li <chaoming_li@realsil.com.cn>
6453L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006454W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006455T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6456S: Maintained
6457F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006458F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006459
6460S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006461M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006462L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006464F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006465
Linus Torvalds1da177e2005-04-16 15:20:36 -07006466S390
Joe Perches8b58be82009-07-29 15:04:30 -07006467M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6468M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006470L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006471W: http://www.ibm.com/developerworks/linux/linux390/
6472S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006473F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006474F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006475F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006476F: Documentation/s390/
6477F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006478
6479S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006480M: Ursula Braun <ursula.braun@de.ibm.com>
6481M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006482M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006483L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006484W: http://www.ibm.com/developerworks/linux/linux390/
6485S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006486F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006487
Felix Beckfeed9b62009-03-26 15:24:23 +01006488S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006489M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006490M: linux390@de.ibm.com
6491L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006492W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006493S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006494F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006495
Heiko Carstens5238da42006-02-11 17:56:01 -08006496S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006497M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006498M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006499L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006500W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006501S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006502F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006503
Ursula Braundd96df22007-09-19 13:09:02 +02006504S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006505M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006506M: linux390@de.ibm.com
6507L: linux-s390@vger.kernel.org
6508W: http://www.ibm.com/developerworks/linux/linux390/
6509S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006510F: drivers/s390/net/*iucv*
6511F: include/net/iucv/
6512F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006513
Ben Dooks4dde7f72008-06-30 22:40:38 +01006514S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006515M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006516L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006517S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006518F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006519
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006520SAA7134 VIDEO4LINUX DRIVER
6521M: Mauro Carvalho Chehab <mchehab@redhat.com>
6522L: linux-media@vger.kernel.org
6523W: http://linuxtv.org
6524T: git git://linuxtv.org/media_tree.git
6525S: Odd fixes
6526F: Documentation/video4linux/saa7134/
6527F: drivers/media/pci/saa7134/
6528
Linus Torvalds1da177e2005-04-16 15:20:36 -07006529SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006530M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006531L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006532T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006533W: http://www.mihu.de/linux/saa7146
6534S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006535F: drivers/media/common/saa7146/
6536F: drivers/media/pci/saa7146/
6537F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006538
Corentin Chary92304a42011-12-05 12:38:35 -05006539SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006540M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006541L: platform-driver-x86@vger.kernel.org
6542S: Maintained
6543F: drivers/platform/x86/samsung-laptop.c
6544
Mark Brown4a109cc2010-09-24 10:50:46 +01006545SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006546M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006547L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6548S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006549F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006550
Jingoo Han0d89a282011-12-19 11:09:35 +09006551SAMSUNG FRAMEBUFFER DRIVER
6552M: Jingoo Han <jg1.han@samsung.com>
6553L: linux-fbdev@vger.kernel.org
6554S: Maintained
6555F: drivers/video/s3c-fb.c
6556
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006557SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6558M: Sangbeom Kim <sbkim73@samsung.com>
6559L: linux-kernel@vger.kernel.org
6560S: Supported
6561F: drivers/mfd/sec*.c
6562F: drivers/regulator/s2m*.c
6563F: drivers/regulator/s5m*.c
6564F: drivers/rtc/rtc-sec.c
6565F: include/linux/mfd/samsung/
6566
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006567SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6568M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6569L: linux-media@vger.kernel.org
6570L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6571S: Maintained
6572F: drivers/media/platform/s3c-camif/
6573F: include/media/s3c_camif.h
6574
Alan Coxca749e22011-03-18 13:56:14 +00006575SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006576M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00006577L: linux-serial@vger.kernel.org
6578S: Maintained
6579F: drivers/tty/serial
6580
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306581SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006582M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306583S: Maintained
6584F: include/linux/dw_dmac.h
6585F: drivers/dma/dw_dmac_regs.h
6586F: drivers/dma/dw_dmac.c
6587
Thomas Gleixner88606e82010-12-14 21:37:13 +01006588TIMEKEEPING, NTP
6589M: John Stultz <johnstul@us.ibm.com>
6590M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006591T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006592S: Supported
6593F: include/linux/clocksource.h
6594F: include/linux/time.h
6595F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006596F: include/uapi/linux/time.h
6597F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006598F: kernel/time/clocksource.c
6599F: kernel/time/time*.c
6600F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006601F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006602
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006603TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006604M: Huang Shijie <shijie8@gmail.com>
6605M: Kang Yong <kangyong@telegent.com>
6606M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006607S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006608F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006609
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006611M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006613F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006614
6615SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006616M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006617M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006618T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006619S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006620F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006621F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006622F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623
Chen Liqin6bcf6732009-06-13 15:24:33 +08006624SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006625M: Chen Liqin <liqin.chen@sunplusct.com>
6626M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006627W: http://www.sunplusct.com
6628S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006629F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006630
Linus Torvalds1da177e2005-04-16 15:20:36 -07006631SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006632M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006633L: linux-scsi@vger.kernel.org
6634W: http://www.kernel.dk
6635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006636F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006637
Roland Dreierfb50a832010-10-07 09:54:53 -07006638SCSI RDMA PROTOCOL (SRP) INITIATOR
6639M: David Dillow <dillowda@ornl.gov>
6640L: linux-rdma@vger.kernel.org
6641S: Supported
6642W: http://www.openfabrics.org
6643Q: http://patchwork.kernel.org/project/linux-rdma/list/
6644T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6645F: drivers/infiniband/ulp/srp/
6646F: include/scsi/srp.h
6647
Linus Torvalds1da177e2005-04-16 15:20:36 -07006648SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006649M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006650L: linux-scsi@vger.kernel.org
6651W: http://www.torque.net/sg
6652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006653F: drivers/scsi/sg.c
6654F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006655
6656SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006657M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006658L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006659T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6660T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6661T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006663F: drivers/scsi/
6664F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006665
6666SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006667M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006668L: linux-scsi@vger.kernel.org
6669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006670F: Documentation/scsi/st.txt
6671F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006672
6673SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006674M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006675M: Sridhar Samudrala <sri@us.ibm.com>
Neil Horman02c38d02012-10-24 09:26:51 +00006676M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006677L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006678W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006680F: Documentation/networking/sctp.txt
6681F: include/linux/sctp.h
6682F: include/net/sctp/
6683F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006684
6685SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006686M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006687S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006688F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006689F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006690F: drivers/watchdog/scx200_wdt.c
6691F: drivers/i2c/busses/scx200*
6692F: drivers/mtd/maps/scx200_docflash.c
6693F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006694
6695SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006696M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006697S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006698F: drivers/char/scx200_gpio.c
6699F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006700
6701SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006702M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006704F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006705
Sascha Sommer6a369132008-07-15 14:21:29 +02006706SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006707M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006708L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006710F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006711
Randy Dunlape7839f22008-10-12 16:11:45 -07006712SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006713M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006714L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006715T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6716S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006717F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006718F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006719
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006720SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006721M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006722L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006723L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006724S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006725F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006726
Ben Dooks0d1bb412009-06-14 13:52:37 +01006727SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006728M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006729L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006730S: Maintained
6731F: drivers/mmc/host/sdhci-s3c.c
6732
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006733SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006734M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006735L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006736L: linux-mmc@vger.kernel.org
6737S: Maintained
6738F: drivers/mmc/host/sdhci-spear.c
6739
James Morris8711cca2008-12-04 03:19:45 +11006740SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006741M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006742L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006743T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006744W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006745S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006746F: security/
James Morris8711cca2008-12-04 03:19:45 +11006747
Linus Torvalds1da177e2005-04-16 15:20:36 -07006748SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006749M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006750S: Supported
6751
6752SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006753M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006754M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006755M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006756L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006757W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006758T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006759S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006760F: include/linux/selinux*
6761F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006762F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006763
John Johansenc1c124e2010-07-29 14:48:09 -07006764APPARMOR SECURITY MODULE
6765M: John Johansen <john.johansen@canonical.com>
6766L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6767W: apparmor.wiki.kernel.org
6768T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6769S: Supported
6770F: security/apparmor/
6771
Jiri Slabycef2cf02007-05-08 00:31:45 -07006772SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006773M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006775F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006776F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006777
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006778SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006779M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006780L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006781T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006782S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006783F: drivers/ata/
6784F: include/linux/ata.h
6785F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006786
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306787SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006788M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006789L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006790W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006791S: Supported
6792F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306793
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006794SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006795M: Sathya Perla <sathya.perla@emulex.com>
6796M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6797M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006798L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006799W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006800S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006801F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006802
Ben Hutchings8ceee662008-04-27 12:55:59 +01006803SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006804M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006805M: Ben Hutchings <bhutchings@solarflare.com>
6806L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006807S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006808F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006809
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006810SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006811M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006813F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006814
6815SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006816M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006817L: linux-ia64@vger.kernel.org
6818S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006819F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006820F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006821F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006822
Linus Torvalds1da177e2005-04-16 15:20:36 -07006823SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006824M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006825L: linux-visws-devel@lists.sf.net
6826W: http://linux-visws.sf.net
6827S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006828F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006829
Jack Steiner75312612008-08-15 00:40:42 -07006830SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006831M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006833F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006834
Len Brown6349d992009-08-14 15:07:14 -04006835SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006836M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006837L: sfi-devel@simplefirmware.org
6838W: http://simplefirmware.org/
6839T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006840S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006841F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006842F: drivers/sfi/
6843F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006844
Linus Torvalds1da177e2005-04-16 15:20:36 -07006845SIMTEC EB110ATX (Chalice CATS)
6846P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006847P: Vincent Sanders <vince@simtec.co.uk>
6848M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006849W: http://www.simtec.co.uk/products/EB110ATX/
6850S: Supported
6851
6852SIMTEC EB2410ITX (BAST)
6853P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006854P: Vincent Sanders <vince@simtec.co.uk>
6855M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006856W: http://www.simtec.co.uk/products/EB2410ITX/
6857S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006858F: arch/arm/mach-s3c2410/mach-bast.c
6859F: arch/arm/mach-s3c2410/bast-ide.c
6860F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006861
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006862TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006863M: Sekhar Nori <nsekhar@ti.com>
6864M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306865L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306866T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006867Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006868S: Supported
6869F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006870F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006871
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03006872TI DAVINCI SERIES MEDIA DRIVER
6873M: Manjunath Hadli <manjunath.hadli@ti.com>
6874M: Prabhakar Lad <prabhakar.lad@ti.com>
6875L: linux-media@vger.kernel.org
6876L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
6877W: http://linuxtv.org/
6878Q: http://patchwork.linuxtv.org/project/linux-media/list/
6879T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
6880S: Supported
6881F: drivers/media/platform/davinci/
6882F: include/media/davinci/
6883
Francois Romieu92aab3c2005-07-30 13:11:18 +02006884SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006885M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006886L: netdev@vger.kernel.org
6887S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006888F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006889
Linus Torvalds1da177e2005-04-16 15:20:36 -07006890SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006891M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006892W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006893L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006894S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006895F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006896
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006897SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006898M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006899L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006901F: Documentation/i2c/busses/i2c-sis96x
6902F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006903
Linus Torvalds1da177e2005-04-16 15:20:36 -07006904SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006905M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006906W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006908F: Documentation/fb/sisfb.txt
6909F: drivers/video/sis/
6910F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006911
6912SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006913M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006914W: http://www.winischhofer.at/linuxsisusbvga.shtml
6915S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006916F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006917
Christoph Lameter415ad262007-07-26 10:40:56 -07006918SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006919M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006920M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006921M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07006922L: linux-mm@kvack.org
6923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006924F: include/linux/sl?b*.h
6925F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07006926
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006927SLEEPABLE READ-COPY UPDATE (SRCU)
6928M: Lai Jiangshan <laijs@cn.fujitsu.com>
6929M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6930W: http://www.rdrop.com/users/paulmck/RCU/
6931S: Supported
6932T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6933F: include/linux/srcu*
6934F: kernel/srcu*
6935
Casey Schaufler66372842012-05-23 18:34:52 -07006936SMACK SECURITY MODULE
6937M: Casey Schaufler <casey@schaufler-ca.com>
6938L: linux-security-module@vger.kernel.org
6939W: http://schaufler-ca.com
6940T: git git://git.gitorious.org/smack-next/kernel.git
6941S: Maintained
6942F: Documentation/security/Smack.txt
6943F: security/smack/
6944
Linus Torvalds1da177e2005-04-16 15:20:36 -07006945SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006946M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006947S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006948F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006949
Sakari Ailuse8e31622012-11-12 18:14:39 -03006950SMIA AND SMIA++ IMAGE SENSOR DRIVER
6951M: Sakari Ailus <sakari.ailus@iki.fi>
6952L: linux-media@vger.kernel.org
6953S: Maintained
6954F: drivers/media/i2c/smiapp
6955F: include/media/smiapp.h
6956F: drivers/media/i2c/smiapp-pll.c
6957F: drivers/media/i2c/smiapp-pll.h
6958
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006959SMM665 HARDWARE MONITOR DRIVER
6960M: Guenter Roeck <linux@roeck-us.net>
6961L: lm-sensors@lm-sensors.org
6962S: Maintained
6963F: Documentation/hwmon/smm665
6964F: drivers/hwmon/smm665.c
6965
Steve Glendinning9df73052010-08-14 21:08:54 +02006966SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006967M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006968L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006969S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006970F: Documentation/hwmon/emc2103
6971F: drivers/hwmon/emc2103.c
6972
Hans de Goedea98d5062011-03-21 17:59:36 +01006973SMSC SCH5627 HARDWARE MONITOR DRIVER
6974M: Hans de Goede <hdegoede@redhat.com>
6975L: lm-sensors@lm-sensors.org
6976S: Supported
6977F: Documentation/hwmon/sch5627
6978F: drivers/hwmon/sch5627.c
6979
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006980SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006981M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006982L: lm-sensors@lm-sensors.org
6983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006984F: Documentation/hwmon/smsc47b397
6985F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006986
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006987SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006988M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006989L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006991F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006992F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006993
Steve Glendinning2cb37722008-12-11 20:54:30 -08006994SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006995M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006996L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006997S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006998F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006999
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007000SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007001M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007002L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007003S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007004F: drivers/video/smscufx.c
7005
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007006SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07007007M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007008L: linux-altix@sgi.com
7009L: linux-ia64@vger.kernel.org
7010W: http://www.sgi.com/altix
7011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007012F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007013
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007014SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007015M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007016L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007017T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007018S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007019F: include/media/soc*
7020F: drivers/media/i2c/soc_camera/
7021F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007022
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007023SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007024M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007026F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007027
Linus Torvalds1da177e2005-04-16 15:20:36 -07007028SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007029M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007030L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007031S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007032F: drivers/md/
7033F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007034F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007035
Linus Torvalds1da177e2005-04-16 15:20:36 -07007036SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007037M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007038L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007039S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007040F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007041
Michael Buesch61e115a2007-09-18 15:12:50 -04007042SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007043M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007044L: netdev@vger.kernel.org
7045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007046F: drivers/ssb/
7047F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007048
Linus Torvalds1da177e2005-04-16 15:20:36 -07007049SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007050M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd09448532010-02-11 10:40:13 -05007051L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007052W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007054F: Documentation/laptops/sony-laptop.txt
7055F: drivers/char/sonypi.c
7056F: drivers/platform/x86/sony-laptop.c
7057F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007058
Alex Dubovbaf85322008-02-09 10:20:54 -08007059SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007060M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007061W: http://tifmxx.berlios.de/
7062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007063F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007064
Linus Torvalds1da177e2005-04-16 15:20:36 -07007065SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007066M: Jaroslav Kysela <perex@perex.cz>
7067M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007068L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007069W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007070T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007071T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007072S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007073F: Documentation/sound/
7074F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007075F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007076F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007077
Mark Brownbd903bd2008-11-19 19:16:05 +00007078SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00007079M: Liam Girdwood <lgirdwood@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007080M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00007081T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007082L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007083W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007084S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007085F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007086F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007087
Sam Ravnborg473321f2009-01-04 15:47:49 -08007088SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007089M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007090L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007091Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007092T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7093T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007095F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007096F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007097
David S. Miller6404fcc2010-03-16 01:00:17 -07007098SPARC SERIAL DRIVERS
7099M: "David S. Miller" <davem@davemloft.net>
7100L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007101T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7102T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007103S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007104F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007105F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007106F: drivers/tty/serial/sunhv.c
7107F: drivers/tty/serial/sunsab.c
7108F: drivers/tty/serial/sunsab.h
7109F: drivers/tty/serial/sunsu.c
7110F: drivers/tty/serial/sunzilog.c
7111F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007112
Christopher Li389325b2012-04-05 14:25:14 -07007113SPARSE CHECKER
7114M: "Christopher Li" <sparse@chrisli.org>
7115L: linux-sparse@vger.kernel.org
7116W: https://sparse.wiki.kernel.org/
7117T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7118T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7119S: Maintained
7120F: include/linux/compiler.h
7121
viresh kumarfc0c1952010-04-01 12:31:21 +01007122SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007123M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307124M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007125L: spear-devel@list.st.com
7126L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007127W: http://www.st.com/spear
7128S: Maintained
7129F: arch/arm/plat-spear/
7130
Viresh Kumar71e09a92012-04-20 22:39:48 +05307131SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007132M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307133M: Shiraz Hashim <shiraz.hashim@st.com>
7134L: spear-devel@list.st.com
7135L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7136W: http://www.st.com/spear
7137S: Maintained
7138F: arch/arm/mach-spear13xx/
7139
viresh kumarfc0c1952010-04-01 12:31:21 +01007140SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007141M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307142M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007143L: spear-devel@list.st.com
7144L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007145W: http://www.st.com/spear
7146S: Maintained
7147F: arch/arm/mach-spear3xx/
7148
7149SPEAR6XX MACHINE SUPPORT
7150M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307151M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007152M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007153L: spear-devel@list.st.com
7154L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007155W: http://www.st.com/spear
7156S: Maintained
7157F: arch/arm/mach-spear6xx/
7158
7159SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007160M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007161L: spear-devel@list.st.com
7162L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007163W: http://www.st.com/spear
7164S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307165F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007166
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007167SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007168M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007169L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08007170Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06007171T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007173F: Documentation/spi/
7174F: drivers/spi/
7175F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007176F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007177
Jim Lewis2752e4012006-09-29 02:01:19 -07007178SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007179M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7180M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e4012006-09-29 02:01:19 -07007181L: netdev@vger.kernel.org
7182S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007183F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007184F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e4012006-09-29 02:01:19 -07007185
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007186SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007187M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007188L: linuxppc-dev@lists.ozlabs.org
7189L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007190W: http://www.ibm.com/developerworks/power/cell/
7191S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007192F: Documentation/filesystems/spufs.txt
7193F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007194
Phillip Lougherfc555842009-01-05 08:46:29 +00007195SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007196M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007197L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7198W: http://squashfs.org.uk
7199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007200F: Documentation/filesystems/squashfs.txt
7201F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007202
Linus Torvalds1da177e2005-04-16 15:20:36 -07007203SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007204M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007206F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007207
Linus Torvalds26e9a392008-10-17 09:50:12 -07007208STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007209M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007210L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007211S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007212
Linus Torvalds26e9a392008-10-17 09:50:12 -07007213STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007214M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007215T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007216L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007217S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007218F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007219
Joe Perchesc8c8b102011-07-05 09:42:12 -07007220STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7221M: Henk de Groot <pe1dnn@amsat.org>
7222S: Odd Fixes
7223F: drivers/staging/wlags49_h2/
7224F: drivers/staging/wlags49_h25/
7225
Joe Perchesc9555152011-07-05 09:42:01 -07007226STAGING - ASUS OLED
7227M: Jakub Schmidtke <sjakub@gmail.com>
7228S: Odd Fixes
7229F: drivers/staging/asus_oled/
7230
Joe Perchesebd3d012011-07-05 09:42:02 -07007231STAGING - COMEDI
7232M: Ian Abbott <abbotti@mev.co.uk>
7233M: Mori Hess <fmhess@users.sourceforge.net>
7234S: Odd Fixes
7235F: drivers/staging/comedi/
7236
Joe Perches8ca572c2011-07-05 09:42:03 -07007237STAGING - CRYSTAL HD VIDEO DECODER
7238M: Naren Sankar <nsankar@broadcom.com>
7239M: Jarod Wilson <jarod@wilsonet.com>
7240M: Scott Davilla <davilla@4pi.com>
7241M: Manu Abraham <abraham.manu@gmail.com>
7242S: Odd Fixes
7243F: drivers/staging/crystalhd/
7244
Joe Perches0f16ffc2011-07-05 09:42:04 -07007245STAGING - ECHO CANCELLER
7246M: Steve Underwood <steveu@coppice.org>
7247M: David Rowe <david@rowetel.com>
7248S: Odd Fixes
7249F: drivers/staging/echo/
7250
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007251STAGING - ET131X NETWORK DRIVER
7252M: Mark Einon <mark.einon@gmail.com>
7253S: Odd Fixes
7254F: drivers/staging/et131x/
7255
Joe Perchesa0138162011-07-05 15:21:34 -07007256STAGING - FLARION FT1000 DRIVERS
7257M: Marek Belisko <marek.belisko@gmail.com>
7258S: Odd Fixes
7259F: drivers/staging/ft1000/
7260
Joe Perchesec3fab92011-07-05 09:42:05 -07007261STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7262M: David Täht <d@teklibre.com>
7263S: Odd Fixes
7264F: drivers/staging/frontier/
7265
Joe Perches6c1bb422011-07-05 09:42:07 -07007266STAGING - INDUSTRIAL IO
7267M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007268L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007269S: Odd Fixes
7270F: drivers/staging/iio/
7271
Joe Perchesa0138162011-07-05 15:21:34 -07007272STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7273M: Jarod Wilson <jarod@wilsonet.com>
7274W: http://www.lirc.org/
7275S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007276F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007277
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007278STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007279M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007280M: Marc Dietrich <marvin24@gmx.de>
7281L: ac100@lists.launchpad.net (moderated for non-subscribers)
7282S: Maintained
7283F: drivers/staging/nvec/
7284
Joe Perchesa0138162011-07-05 15:21:34 -07007285STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7286M: Andres Salomon <dilinger@queued.net>
7287M: Chris Ball <cjb@laptop.org>
7288M: Jon Nettleton <jon.nettleton@gmail.com>
7289W: http://wiki.laptop.org/go/DCON
7290S: Odd Fixes
7291F: drivers/staging/olpc_dcon/
7292
Chris Kelly94cfdd12012-03-14 10:55:42 +00007293STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00007294M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007295M: Chris Kelly <ckelly@ozmodevices.com>
7296S: Maintained
7297F: drivers/staging/ozwpan/
7298
Joe Perchesa0138162011-07-05 15:21:34 -07007299STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007300M: Willy Tarreau <willy@meta-x.org>
7301S: Odd Fixes
7302F: drivers/staging/panel/
7303
Joe Perchesa0138162011-07-05 15:21:34 -07007304STAGING - REALTEK RTL8712U DRIVERS
7305M: Larry Finger <Larry.Finger@lwfinger.net>
7306M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7307S: Odd Fixes
7308F: drivers/staging/rtl8712/
7309
Joe Perches9629fa82011-07-05 09:42:09 -07007310STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7311M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7312S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007313F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007314
Joe Perchesa0138162011-07-05 15:21:34 -07007315STAGING - SOFTLOGIC 6x10 MPEG CODEC
7316M: Ben Collins <bcollins@bluecherry.net>
7317S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007318F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007319
7320STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7321M: William Hubbs <w.d.hubbs@gmail.com>
7322M: Chris Brannon <chris@the-brannons.com>
7323M: Kirk Reiser <kirk@braille.uwo.ca>
7324M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7325L: speakup@braille.uwo.ca
7326W: http://www.linux-speakup.org/
7327S: Odd Fixes
7328F: drivers/staging/speakup/
7329
7330STAGING - TI DSP BRIDGE DRIVERS
Chen Ganga8906b02013-01-11 14:32:17 -08007331M: Omar Ramirez Luna <omar.ramirez@copitl.com>
Joe Perchesa0138162011-07-05 15:21:34 -07007332S: Odd Fixes
7333F: drivers/staging/tidspbridge/
7334
Joe Perchesa0138162011-07-05 15:21:34 -07007335STAGING - USB ENE SM/MS CARD READER DRIVER
7336M: Al Cho <acho@novell.com>
7337S: Odd Fixes
7338F: drivers/staging/keucr/
7339
Joe Perchesb3e871c2011-07-05 09:42:10 -07007340STAGING - VIA VT665X DRIVERS
7341M: Forest Bond <forest@alittletooquiet.net>
7342S: Odd Fixes
7343F: drivers/staging/vt665?/
7344
Joe Perches81a9a5262011-07-05 09:42:11 -07007345STAGING - WINBOND IS89C35 WLAN USB DRIVER
7346M: Pavel Machek <pavel@ucw.cz>
7347S: Odd Fixes
7348F: drivers/staging/winbond/
7349
Joe Perches709bcb02011-07-05 09:42:13 -07007350STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007351M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007352S: Odd Fixes
7353F: drivers/staging/xgifb/
7354
Linus Torvalds1da177e2005-04-16 15:20:36 -07007355STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007356M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007357S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007358F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007359
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007360SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007361M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007362W: http://sammy.net/sun3/
7363S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007364F: arch/m68k/kernel/*sun3*
7365F: arch/m68k/sun3*/
7366F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007367F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007368
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007369SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007370M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007371L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007372W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007373Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007374T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007375S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007376F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007377F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007378F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007379
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007380SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007381M: Len Brown <len.brown@intel.com>
7382M: Pavel Machek <pavel@ucw.cz>
7383M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007384L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007385S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007386F: Documentation/power/
7387F: arch/x86/kernel/acpi/
7388F: drivers/base/power/
7389F: kernel/power/
7390F: include/linux/suspend.h
7391F: include/linux/freezer.h
7392F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007393
7394SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007395M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007396L: linux-video@atrey.karlin.mff.cuni.cz
7397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007398F: Documentation/svga.txt
7399F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007400
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007401SWIOTLB SUBSYSTEM
7402M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7403L: linux-kernel@vger.kernel.org
7404S: Supported
7405F: lib/swiotlb.c
7406F: arch/*/kernel/pci-swiotlb.c
7407F: include/linux/swiotlb.h
7408
Linus Torvalds1da177e2005-04-16 15:20:36 -07007409SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007410M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007412F: Documentation/filesystems/sysv-fs.txt
7413F: fs/sysv/
7414F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007415
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007416TARGET SUBSYSTEM
7417M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7418L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007419L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007420L: http://groups.google.com/group/linux-iscsi-target-dev
7421W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007422T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007423S: Supported
7424F: drivers/target/
7425F: include/target/
7426F: Documentation/target/
7427
Alan Cox4e688522008-04-30 00:52:11 -07007428TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007429M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007431F: Documentation/accounting/taskstats*
7432F: include/linux/taskstats*
7433F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007434
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007435TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007436M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007437L: netdev@vger.kernel.org
7438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007439F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007440F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07007441F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007442
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007443TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007444M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7445M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007446W: http://tcp-lp-mod.sourceforge.net/
7447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007448F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007449
Antti Palosaari91952bc2012-10-01 12:28:46 -03007450TDA10071 MEDIA DRIVER
7451M: Antti Palosaari <crope@iki.fi>
7452L: linux-media@vger.kernel.org
7453W: http://linuxtv.org/
7454W: http://palosaari.fi/linux/
7455Q: http://patchwork.linuxtv.org/project/linux-media/list/
7456T: git git://linuxtv.org/anttip/media_tree.git
7457S: Maintained
7458F: drivers/media/dvb-frontends/tda10071*
7459
7460TDA18212 MEDIA DRIVER
7461M: Antti Palosaari <crope@iki.fi>
7462L: linux-media@vger.kernel.org
7463W: http://linuxtv.org/
7464W: http://palosaari.fi/linux/
7465Q: http://patchwork.linuxtv.org/project/linux-media/list/
7466T: git git://linuxtv.org/anttip/media_tree.git
7467S: Maintained
7468F: drivers/media/tuners/tda18212*
7469
7470TDA18218 MEDIA DRIVER
7471M: Antti Palosaari <crope@iki.fi>
7472L: linux-media@vger.kernel.org
7473W: http://linuxtv.org/
7474W: http://palosaari.fi/linux/
7475Q: http://patchwork.linuxtv.org/project/linux-media/list/
7476T: git git://linuxtv.org/anttip/media_tree.git
7477S: Maintained
7478F: drivers/media/tuners/tda18218*
7479
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007480TDA18271 MEDIA DRIVER
7481M: Michael Krufky <mkrufky@linuxtv.org>
7482L: linux-media@vger.kernel.org
7483W: http://linuxtv.org/
7484W: http://github.com/mkrufky
7485Q: http://patchwork.linuxtv.org/project/linux-media/list/
7486T: git git://linuxtv.org/mkrufky/tuners.git
7487S: Maintained
7488F: drivers/media/tuners/tda18271*
7489
Michael Krufkye48307a2012-10-02 00:56:33 -03007490TDA827x MEDIA DRIVER
7491M: Michael Krufky <mkrufky@linuxtv.org>
7492L: linux-media@vger.kernel.org
7493W: http://linuxtv.org/
7494W: http://github.com/mkrufky
7495Q: http://patchwork.linuxtv.org/project/linux-media/list/
7496T: git git://linuxtv.org/mkrufky/tuners.git
7497S: Maintained
7498F: drivers/media/tuners/tda8290.*
7499
Michael Krufky66cf9212012-10-02 00:56:28 -03007500TDA8290 MEDIA DRIVER
7501M: Michael Krufky <mkrufky@linuxtv.org>
7502L: linux-media@vger.kernel.org
7503W: http://linuxtv.org/
7504W: http://github.com/mkrufky
7505Q: http://patchwork.linuxtv.org/project/linux-media/list/
7506T: git git://linuxtv.org/mkrufky/tuners.git
7507S: Maintained
7508F: drivers/media/tuners/tda8290.*
7509
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007510TEA5761 TUNER DRIVER
7511M: Mauro Carvalho Chehab <mchehab@redhat.com>
7512L: linux-media@vger.kernel.org
7513W: http://linuxtv.org
7514T: git git://linuxtv.org/media_tree.git
7515S: Odd fixes
7516F: drivers/media/tuners/tea5761.*
7517
7518TEA5767 TUNER DRIVER
7519M: Mauro Carvalho Chehab <mchehab@redhat.com>
7520L: linux-media@vger.kernel.org
7521W: http://linuxtv.org
7522T: git git://linuxtv.org/media_tree.git
7523S: Maintained
7524F: drivers/media/tuners/tea5767.*
7525
Jiri Pirko3d249d42011-11-11 22:16:48 +00007526TEAM DRIVER
7527M: Jiri Pirko <jpirko@redhat.com>
7528L: netdev@vger.kernel.org
7529S: Supported
7530F: drivers/net/team/
7531F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007532F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00007533
Sean Young40ad4a32012-11-19 10:32:53 -03007534TECHNOTREND USB IR RECEIVER
7535M: Sean Young <sean@mess.org>
7536L: linux-media@vger.kernel.org
7537S: Maintained
7538F: drivers/media/rc/ttusbir.c
7539
Erik Gilling84b94142010-06-09 15:35:53 -07007540TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007541M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007542L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007543Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7544T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007545S: Supported
7546F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007547F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007548F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007549
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007550TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007551M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007552L: netdev@vger.kernel.org
7553S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007554F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007555
Alan Cox4e688522008-04-30 00:52:11 -07007556Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007557M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007558S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007559F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007560
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007561TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007562M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007563M: Max Filippov <jcmvbkbc@gmail.com>
7564L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007566F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007567
Zhang Ruid3fb6952012-11-15 08:58:27 +08007568THERMAL
7569M: Zhang Rui <rui.zhang@intel.com>
7570L: linux-pm@vger.kernel.org
7571T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7572S: Supported
7573F: drivers/thermal/
7574F: include/linux/thermal.h
7575
Alan Cox4e688522008-04-30 00:52:11 -07007576THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007577M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007578L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05007579L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007580W: http://ibm-acpi.sourceforge.net
7581W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007582T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007584F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007585
Alex Dubov4020f2d2006-10-04 02:15:37 -07007586TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007587M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007589F: drivers/misc/tifm*
7590F: drivers/mmc/host/tifm_sd.c
7591F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007592
M R Swami Reddy152ad442012-04-02 20:02:31 +05307593TI LM49xxx FAMILY ASoC CODEC DRIVERS
7594M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307595M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307596L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7597S: Maintained
7598F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307599F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307600
Kim, Milo0edd8072012-12-17 16:01:17 -08007601TI LP855x BACKLIGHT DRIVER
7602M: Milo Kim <milo.kim@ti.com>
7603S: Maintained
7604F: Documentation/backlight/lp855x-driver.txt
7605F: drivers/video/backlight/lp855x_bl.c
7606F: include/linux/platform_data/lp855x.h
7607
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007608TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007609M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007610L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7611S: Maintained
7612F: sound/soc/codecs/twl4030*
7613
Luciano Coelho90921012011-11-20 21:40:41 +02007614TI WILINK WIRELESS DRIVERS
7615M: Luciano Coelho <coelho@ti.com>
7616L: linux-wireless@vger.kernel.org
7617W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7618W: http://wireless.kernel.org/en/users/Drivers/wl1251
7619T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7620S: Maintained
7621F: drivers/net/wireless/ti/
7622F: include/linux/wl12xx.h
7623
Per Lidene86eaa32006-01-12 16:45:18 +01007624TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007625M: Jon Maloy <jon.maloy@ericsson.com>
7626M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007627L: netdev@vger.kernel.org (core kernel code)
7628L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007629W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007630S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007631F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007632F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007633
Chris Metcalf867e3592010-05-28 23:09:12 -04007634TILE ARCHITECTURE
7635M: Chris Metcalf <cmetcalf@tilera.com>
7636W: http://www.tilera.com/scm/
7637S: Supported
7638F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007639F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007640F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007641F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007642
Linus Torvalds1da177e2005-04-16 15:20:36 -07007643TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007644M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007645L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007646W: http://sourceforge.net/projects/tlan/
7647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007648F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007649F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007650
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007651TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007652M: Kentaro Takeda <takedakn@nttdata.co.jp>
7653M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007654L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7655L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007656L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7657L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7658W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007659T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007661F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007662
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007663TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007664M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05007665L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007666S: Maintained
7667F: drivers/platform/x86/topstar-laptop.c
7668
Linus Torvalds1da177e2005-04-16 15:20:36 -07007669TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05007670L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007671S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007672F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007673
7674TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007675M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007676L: tlinux-users@tce.toshiba-dme.co.jp
7677W: http://www.buzzard.org.uk/toshiba/
7678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007679F: drivers/char/toshiba.c
7680F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007681F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007682
Pierre Ossmand719f902009-03-24 21:06:09 +01007683TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007684M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007685M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007686L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007687S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007688F: drivers/mmc/host/tmio_mmc*
7689F: drivers/mmc/host/sh_mobile_sdhi.c
7690F: include/linux/mmc/tmio.h
7691F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007692
Hugh Dickins98f32602009-05-21 20:33:58 +01007693TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007694M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007695L: linux-mm@kvack.org
7696S: Maintained
7697F: include/linux/shmem_fs.h
7698F: mm/shmem.c
7699
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02007700TM6000 VIDEO4LINUX DRIVER
7701M: Mauro Carvalho Chehab <mchehab@redhat.com>
7702L: linux-media@vger.kernel.org
7703W: http://linuxtv.org
7704T: git git://linuxtv.org/media_tree.git
7705S: Odd fixes
7706F: drivers/media/usb/tm6000/
7707
Alan Cox4e688522008-04-30 00:52:11 -07007708TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007709M: Kent Yoder <key@linux.vnet.ibm.com>
7710M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007711W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007712M: Marcel Selhorst <tpmdd@selhorst.net>
7713M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007714W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007715L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007717F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007718
Joe Perchesd6f005a2009-10-26 16:49:40 -07007719TRACING
7720M: Steven Rostedt <rostedt@goodmis.org>
7721M: Frederic Weisbecker <fweisbec@gmail.com>
7722M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007723T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007724S: Maintained
7725F: Documentation/trace/ftrace.txt
7726F: arch/*/*/*/ftrace.h
7727F: arch/*/kernel/ftrace.c
7728F: include/*/ftrace.h
7729F: include/linux/trace*.h
7730F: include/trace/
7731F: kernel/trace/
7732
Linus Torvalds1da177e2005-04-16 15:20:36 -07007733TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007734M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007735T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007736S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007737K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007738
Alan Cox4e688522008-04-30 00:52:11 -07007739TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007740M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01007741M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08007742S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007743T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007744F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007745F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007746F: include/linux/serial_core.h
7747F: include/linux/serial.h
7748F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007749F: include/uapi/linux/serial_core.h
7750F: include/uapi/linux/serial.h
7751F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007752
Antti Palosaari91952bc2012-10-01 12:28:46 -03007753TUA9001 MEDIA DRIVER
7754M: Antti Palosaari <crope@iki.fi>
7755L: linux-media@vger.kernel.org
7756W: http://linuxtv.org/
7757W: http://palosaari.fi/linux/
7758Q: http://patchwork.linuxtv.org/project/linux-media/list/
7759T: git git://linuxtv.org/anttip/media_tree.git
7760S: Maintained
7761F: drivers/media/tuners/tua9001*
7762
Grant Grundler740db6d2008-02-17 11:53:49 -07007763TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007764M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007765L: netdev@vger.kernel.org
7766S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007767F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007768
7769TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00007770M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007771W: http://vtun.sourceforge.net/tun
7772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007773F: Documentation/networking/tuntap.txt
7774F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007775
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007776TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007777M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007779F: drivers/tc/
7780F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007781
Linus Torvalds1da177e2005-04-16 15:20:36 -07007782U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007783M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007784L: linux-scsi@vger.kernel.org
7785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007786F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007787
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007788UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007789M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007790M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007791L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007792T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007793W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007795F: Documentation/filesystems/ubifs.txt
7796F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007797
Alan Coxcc2020e2008-05-19 14:21:51 +01007798UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007799M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007800W: http://www.uclinux.org/
7801L: uclinux-dev@uclinux.org (subscribers-only)
7802S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007803F: arch/m68k/*/*_no.*
7804F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007805
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007806UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007807M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007808W: http://uclinux-h8.sourceforge.jp/
7809S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007810F: arch/h8300/
7811F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007812F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007813
Linus Torvalds1da177e2005-04-16 15:20:36 -07007814UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007815M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007817F: Documentation/filesystems/udf.txt
7818F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007819
Alan Coxcc2020e2008-05-19 14:21:51 +01007820UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007821M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007823F: Documentation/filesystems/ufs.txt
7824F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007825
David Herrmann0a09d3a2012-06-10 15:16:28 +02007826UHID USERSPACE HID IO DRIVER:
7827M: David Herrmann <dh.herrmann@googlemail.com>
7828L: linux-input@vger.kernel.org
7829S: Maintained
7830F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007831F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02007832
David Vrabel18332a82008-09-17 16:34:44 +01007833ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007834L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007835S: Orphan
David Vrabel355ffe692009-12-22 13:13:28 +00007836F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007837F: include/linux/uwb.h
7838F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007839
GuanXuetaob31d8272011-01-16 00:35:49 +08007840UNICORE32 ARCHITECTURE:
7841M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7842W: http://mprc.pku.edu.cn/~guanxuetao/linux
7843S: Maintained
7844T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7845F: arch/unicore32/
7846
Tony Finchd8379ab2009-11-27 15:50:30 +00007847UNIFDEF
7848M: Tony Finch <dot@dotat.at>
7849W: http://dotat.at/prog/unifdef
7850S: Maintained
7851F: scripts/unifdef.c
7852
Linus Torvalds1da177e2005-04-16 15:20:36 -07007853UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007854M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007855W: http://www.kernel.dk
7856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007857F: Documentation/cdrom/
7858F: drivers/cdrom/cdrom.c
7859F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007860F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007861
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307862UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7863M: Vinayak Holikatti <vinholikatti@gmail.com>
7864M: Santosh Y <santoshsy@gmail.com>
7865L: linux-scsi@vger.kernel.org
7866S: Supported
7867F: Documentation/scsi/ufs.txt
7868F: drivers/scsi/ufs/
7869
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007870UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007871M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007872W: http://www.linux-mtd.infradead.org/
7873L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007874T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007875S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007876F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007877F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007878F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007879
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007880UNSORTED BLOCK IMAGES (UBI) Fastmap
7881M: Richard Weinberger <richard@nod.at>
7882L: linux-mtd@lists.infradead.org
7883S: Maintained
7884F: drivers/mtd/ubi/fastmap.c
7885
Linus Torvalds1da177e2005-04-16 15:20:36 -07007886USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007887M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007888L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007890F: Documentation/usb/acm.txt
7891F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007892
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02007893USB AR5523 WIRELESS DRIVER
7894M: Pontus Fuchs <pontus.fuchs@gmail.com>
7895L: linux-wireless@vger.kernel.org
7896S: Maintained
7897F: drivers/net/wireless/ath/ar5523/
7898
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007899USB ATTACHED SCSI
7900M: Matthew Wilcox <willy@linux.intel.com>
7901M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7902L: linux-usb@vger.kernel.org
7903L: linux-scsi@vger.kernel.org
7904S: Supported
7905F: drivers/usb/storage/uas.c
7906
Linus Torvalds1da177e2005-04-16 15:20:36 -07007907USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007908M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007909L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007911F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007912F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007913
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007914USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007915M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007916L: linux-usb@vger.kernel.org
7917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007918F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007919
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007920USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007921M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007922L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007923W: http://www.linux-usb.org/usbnet
7924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007925F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007926
Alan Coxcc2020e2008-05-19 14:21:51 +01007927USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007928M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007929L: rio500-users@lists.sourceforge.net
7930W: http://rio500.sourceforge.net
7931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007932F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007933
Linus Torvalds1da177e2005-04-16 15:20:36 -07007934USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007935M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007936L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007938F: Documentation/usb/ehci.txt
7939F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007940
David Brownell69ae9e32006-11-14 02:03:31 -08007941USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007942M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007943L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007944W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007945T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007947F: drivers/usb/gadget/
7948F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007949
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007950USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007951M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007952L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007953T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007954S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007955F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007956F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007957
matt mooney857aab32011-06-17 15:50:46 -07007958USB/IP DRIVERS
7959M: Matt Mooney <mfm@muteddisk.com>
7960L: linux-usb@vger.kernel.org
7961S: Maintained
7962F: drivers/staging/usbip/
7963
Olav Kongas959eea22005-11-03 17:38:14 +02007964USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007965M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007966L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007968F: drivers/usb/host/isp116x*
7969F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007970
Linus Torvalds1da177e2005-04-16 15:20:36 -07007971USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007972M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007973L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007975F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007976
7977USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007978M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007979L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007980L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007981S: Maintained
7982W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007983F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007984
Clemens Ladischaf399172011-01-10 16:32:54 +01007985USB MIDI DRIVER
7986M: Clemens Ladisch <clemens@ladisch.de>
7987L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7988T: git git://git.alsa-project.org/alsa-kernel.git
7989S: Maintained
7990F: sound/usb/midi.*
7991
Linus Torvalds1da177e2005-04-16 15:20:36 -07007992USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007993M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007994L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007996F: Documentation/usb/ohci.txt
7997F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007998
Matthias Urlichsba460e42005-07-14 00:33:47 -07007999USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008000M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008001L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008003F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008004
Linus Torvalds1da177e2005-04-16 15:20:36 -07008005USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008006M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008007L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008008L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008009W: http://pegasus2.sourceforge.net/
8010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008011F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008012
Felipe Balbid3ad5582012-05-21 16:24:49 +03008013USB PHY LAYER
8014M: Felipe Balbi <balbi@ti.com>
8015L: linux-usb@vger.kernel.org
8016T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8017S: Maintained
8018F: drivers/usb/phy/
8019F: drivers/usb/otg/
8020
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008021USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008022M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008023L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008024S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008025F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008026
8027USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008028M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008029L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008030L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008031W: http://pegasus2.sourceforge.net/
8032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008033F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008034
Alan Cox4e688522008-04-30 00:52:11 -07008035USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008036M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008037L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008039F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008040
8041USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008042M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008043L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008044S: Maintained
8045W: http://geocities.com/i0xox0i
8046W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008047F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008048
Linus Torvalds1da177e2005-04-16 15:20:36 -07008049USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008050M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008051W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008053F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008054
8055USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008056M: Peter Berger <pberger@brimson.com>
8057M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008058L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008060F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008061
8062USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008063M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008064L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008065S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008066F: Documentation/usb/usb-serial.txt
8067F: drivers/usb/serial/generic.c
8068F: drivers/usb/serial/usb-serial.c
8069F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008070
Linus Torvalds1da177e2005-04-16 15:20:36 -07008071USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008072M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008073L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008075F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008076
8077USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008078M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008079L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008081F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008082
8083USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008084M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008085L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008086W: http://www.connecttech.com
8087S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008088F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008089
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008090USB SMSC75XX ETHERNET DRIVER
8091M: Steve Glendinning <steve.glendinning@shawell.net>
8092L: netdev@vger.kernel.org
8093S: Maintained
8094F: drivers/net/usb/smsc75xx.*
8095
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008096USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008097M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008098L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008100F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008101
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008102USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008103M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008104L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008105L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008106T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008107W: http://www.linux-projects.org
8108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008109F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008110F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008111
8112USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008113M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008114L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008115W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008116T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008117S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008118F: Documentation/usb/
8119F: drivers/net/usb/
8120F: drivers/usb/
8121F: include/linux/usb.h
8122F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008123
8124USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008125M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008126L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008128F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008129
David Brownell69ae9e32006-11-14 02:03:31 -08008130USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008131M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008132L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008133W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008135F: drivers/net/usb/usbnet.c
8136F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008137
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008138USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008139M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008140L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008141L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008142T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008143W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008144S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008145F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008146F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008147
Laurent Pinchart8282da42012-10-04 02:32:42 +02008148USB WEBCAM GADGET
8149M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8150L: linux-usb@vger.kernel.org
8151S: Maintained
8152F: drivers/usb/gadget/*uvc*.c
8153F: drivers/usb/gadget/webcam.c
8154
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008155USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008156M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008157L: linux-wireless@vger.kernel.org
8158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008159F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008160
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008161USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008162M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008163L: linux-usb@vger.kernel.org
8164S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008165F: drivers/usb/host/xhci*
8166F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008167
Linus Torvalds1da177e2005-04-16 15:20:36 -07008168USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008169L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008170W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008171S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008172F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008173
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008174USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008175M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008176L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008177L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008178T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008179W: http://royale.zerezo.com/zr364xx/
8180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008181F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008182F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008183
Randy Dunlape7839f22008-10-12 16:11:45 -07008184USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008185M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008186M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008187L: user-mode-linux-devel@lists.sourceforge.net
8188L: user-mode-linux-user@lists.sourceforge.net
8189W: http://user-mode-linux.sourceforge.net
8190S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008191F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008192F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008193F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008194F: fs/hostfs/
8195F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008196
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008197USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008198M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008199M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008201F: Documentation/DocBook/uio-howto.tmpl
8202F: drivers/uio/
8203F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008204
Karel Zak256cccb2012-06-01 10:13:09 +02008205UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008206M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008207L: util-linux@vger.kernel.org
8208W: http://en.wikipedia.org/wiki/Util-linux
8209T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008210S: Maintained
8211
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008212UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008213M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008214L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008215W: http://dev.gentoo.org/~spock/projects/uvesafb/
8216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008217F: Documentation/fb/uvesafb.txt
8218F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008219
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008220VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008221M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008223F: Documentation/filesystems/vfat.txt
8224F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008225
Alex Williamsoncba33452012-07-31 08:16:22 -06008226VFIO DRIVER
8227M: Alex Williamson <alex.williamson@redhat.com>
8228L: kvm@vger.kernel.org
8229S: Maintained
8230F: Documentation/vfio.txt
8231F: drivers/vfio/
8232F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008233F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008234
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008235VIDEOBUF2 FRAMEWORK
8236M: Pawel Osciak <pawel@osciak.com>
8237M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008238M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008239L: linux-media@vger.kernel.org
8240S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008241F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008242F: include/media/videobuf2-*
8243
Amit Shah9a824462010-03-23 18:23:09 +05308244VIRTIO CONSOLE DRIVER
8245M: Amit Shah <amit.shah@redhat.com>
8246L: virtualization@lists.linux-foundation.org
8247S: Maintained
8248F: drivers/char/virtio_console.c
8249F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008250F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308251
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308252VIRTIO CORE, NET AND BLOCK DRIVERS
8253M: Rusty Russell <rusty@rustcorp.com.au>
8254M: "Michael S. Tsirkin" <mst@redhat.com>
8255L: virtualization@lists.linux-foundation.org
8256S: Maintained
8257F: drivers/virtio/
8258F: drivers/net/virtio_net.c
8259F: drivers/block/virtio_blk.c
8260F: include/linux/virtio_*.h
8261
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008262VIRTIO HOST (VHOST)
8263M: "Michael S. Tsirkin" <mst@redhat.com>
8264L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008265L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008266L: netdev@vger.kernel.org
8267S: Maintained
8268F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008269F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008270
Linus Torvalds1da177e2005-04-16 15:20:36 -07008271VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008272M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008273S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008274F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008275
Harald Weltef0bf7f62009-06-17 20:22:39 +02008276VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008277M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008278M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008279S: Maintained
8280F: drivers/mmc/host/via-sdmmc.c
8281
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008282VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008283M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008284L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008285S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008286F: include/linux/via-core.h
8287F: include/linux/via-gpio.h
8288F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008289F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008290
Francois Romieu01f20732007-01-26 00:57:17 -08008291VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008292M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008293L: netdev@vger.kernel.org
8294S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008295F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008296
Patrick McHardybe7f8272007-10-23 20:26:36 -07008297VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008298M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008299L: netdev@vger.kernel.org
8300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008301F: drivers/net/macvlan.c
8302F: include/linux/if_*vlan.h
8303F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008304
Florian Fainelli55e331c2009-06-16 15:33:53 -07008305VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008306M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008307L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008308S: Maintained
8309F: drivers/vlynq/vlynq.c
8310F: include/linux/vlynq.h
8311
Martyn Welch390beae2012-05-03 17:52:36 +01008312VME SUBSYSTEM
8313M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008314M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008315M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8316L: devel@driverdev.osuosl.org
8317S: Maintained
8318T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8319F: Documentation/vme_api.txt
8320F: drivers/staging/vme/
8321F: drivers/vme/
8322F: include/linux/vme*
8323
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008324VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008325M: Shreyas Bhatewara <sbhatewara@vmware.com>
8326M: "VMware, Inc." <pv-drivers@vmware.com>
8327L: netdev@vger.kernel.org
8328S: Maintained
8329F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008330
Alok Kataria851b1642009-10-13 14:51:05 -07008331VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008332M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008333M: VMware PV-Drivers <pv-drivers@vmware.com>
8334L: linux-scsi@vger.kernel.org
8335S: Maintained
8336F: drivers/scsi/vmw_pvscsi.c
8337F: drivers/scsi/vmw_pvscsi.h
8338
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008339VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008340M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008341M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008342W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008343W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008344T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008345S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008346F: drivers/regulator/
8347F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008348
Juerg Haefligerab413192006-09-24 20:54:04 +02008349VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008350M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008351L: lm-sensors@lm-sensors.org
8352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008353F: Documentation/hwmon/vt1211
8354F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008355
Roger Lucas1de9e372005-11-26 20:20:05 +01008356VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008357M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008358L: lm-sensors@lm-sensors.org
8359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008360F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008361
Tony Olech88095e72011-05-14 16:48:13 -04008362VUB300 USB to SDIO/SD/MMC bridge chip
8363M: Tony Olech <tony.olech@elandigitalsystems.com>
8364L: linux-mmc@vger.kernel.org
8365L: linux-usb@vger.kernel.org
8366S: Supported
8367F: drivers/mmc/host/vub300.c
8368
Linus Torvalds1da177e2005-04-16 15:20:36 -07008369W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008370M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008372F: Documentation/w1/
8373F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008374
Charles Spirakis13927072006-07-05 18:05:15 +02008375W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008376M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008377L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008379F: Documentation/hwmon/w83791d
8380F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008381
Rudolf Marek61db0112006-12-12 18:18:30 +01008382W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008383M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008384L: lm-sensors@lm-sensors.org
8385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008386F: Documentation/hwmon/w83793
8387F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008388
Jean Delvaree3760b42010-10-28 20:31:49 +02008389W83795 HARDWARE MONITORING DRIVER
8390M: Jean Delvare <khali@linux-fr.org>
8391L: lm-sensors@lm-sensors.org
8392S: Maintained
8393F: drivers/hwmon/w83795.c
8394
Linus Torvalds1da177e2005-04-16 15:20:36 -07008395W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008396M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008398F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008399
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008400WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008401M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008402L: linux-watchdog@vger.kernel.org
8403W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008404T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008406F: Documentation/watchdog/
8407F: drivers/watchdog/
8408F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008409F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008410
Linus Torvalds1da177e2005-04-16 15:20:36 -07008411WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008412M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008413L: linux-scsi@vger.kernel.org
8414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008415F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008416
David Herrmannb22e00f2011-09-06 13:50:40 +02008417WIIMOTE HID DRIVER
8418M: David Herrmann <dh.herrmann@googlemail.com>
8419L: linux-input@vger.kernel.org
8420S: Maintained
8421F: drivers/hid/hid-wiimote*
8422
David Härdemane258b802009-09-21 17:04:53 -07008423WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008424M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008425S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008426F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008427
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008428WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008429M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008430M: linux-wimax@intel.com
8431L: wimax@linuxwimax.org
8432S: Supported
8433W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008434F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07008435F: include/linux/wimax/debug.h
8436F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008437F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07008438F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008439
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008440WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008441M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008443F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008444
Linus Torvalds1da177e2005-04-16 15:20:36 -07008445WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008446M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008447L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008448W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008450F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008451
Mark Brownfebf1df2008-04-02 00:51:09 -04008452WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008453M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8454M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008455L: linux-input@vger.kernel.org
8456T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8457W: http://opensource.wolfsonmicro.com/node/7
8458S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008459F: drivers/input/touchscreen/*wm97*
8460F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008461
Mark Brown055bcbc2010-08-13 14:18:12 +01008462WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008463M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008464L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008465T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008466T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008467W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008468S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008469F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008470F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008471F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008472F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008473F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008474F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008475F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008476F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008477F: drivers/input/misc/wm831x-on.c
8478F: drivers/input/touchscreen/wm831x-ts.c
8479F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008480F: drivers/mfd/arizona*
8481F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008482F: drivers/power/wm83*.c
8483F: drivers/rtc/rtc-wm83*.c
8484F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008485F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008486F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008487F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008488F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008489F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008490F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008491F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008492F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008493F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008494F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008495
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008496WORKQUEUE
8497M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008498T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8499S: Maintained
8500F: include/linux/workqueue.h
8501F: kernel/workqueue.c
8502F: Documentation/workqueue.txt
8503
Linus Torvalds1da177e2005-04-16 15:20:36 -07008504X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008505M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008506L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008507S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008508F: Documentation/networking/x25*
8509F: include/net/x25*
8510F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008511
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008512X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008513M: Thomas Gleixner <tglx@linutronix.de>
8514M: Ingo Molnar <mingo@redhat.com>
8515M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008516M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008517T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008519F: Documentation/x86/
8520F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008521
Matthew Garrettd09448532010-02-11 10:40:13 -05008522X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05008523M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05008524L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008525T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd09448532010-02-11 10:40:13 -05008526S: Maintained
8527F: drivers/platform/x86
8528
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008529X86 MCE INFRASTRUCTURE
8530M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008531M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008532L: linux-edac@vger.kernel.org
8533S: Maintained
8534F: arch/x86/kernel/cpu/mcheck/*
8535
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008536XC2028/3028 TUNER DRIVER
8537M: Mauro Carvalho Chehab <mchehab@redhat.com>
8538L: linux-media@vger.kernel.org
8539W: http://linuxtv.org
8540T: git git://linuxtv.org/media_tree.git
8541S: Maintained
8542F: drivers/media/tuners/tuner-xc2028.*
8543
Ian Campbellc4468082011-04-27 15:26:46 -07008544XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008545M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008546M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008547L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8548L: virtualization@lists.linux-foundation.org
8549S: Supported
8550F: arch/x86/xen/
8551F: drivers/*/xen-*front.c
8552F: drivers/xen/
8553F: arch/x86/include/asm/xen/
8554F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008555F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07008556
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008557XEN HYPERVISOR ARM
8558M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8559L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8560S: Supported
8561F: arch/arm/xen/
8562F: arch/arm/include/asm/xen/
8563
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008564XEN NETWORK BACKEND DRIVER
8565M: Ian Campbell <ian.campbell@citrix.com>
8566L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8567L: netdev@vger.kernel.org
8568S: Supported
8569F: drivers/net/xen-netback/*
8570
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008571XEN PCI SUBSYSTEM
8572M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008573L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008574S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008575F: arch/x86/pci/*xen*
8576F: drivers/pci/*xen*
8577
8578XEN SWIOTLB SUBSYSTEM
8579M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008580L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008581S: Supported
8582F: arch/x86/xen/*swiotlb*
8583F: drivers/xen/*swiotlb*
8584
Linus Torvalds1da177e2005-04-16 15:20:36 -07008585XFS FILESYSTEM
8586P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008587M: Ben Myers <bpm@sgi.com>
8588M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008589M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008590L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008591W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008592T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008593S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008594F: Documentation/filesystems/xfs.txt
8595F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008596
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008597XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008598M: Anirudha Sarangi <anirudh@xilinx.com>
8599M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008600S: Maintained
8601F: drivers/net/ethernet/xilinx/xilinx_axienet*
8602
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008603XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008604M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008605W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008607F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008608
Peter Korsgaard238b8722006-12-06 20:35:17 -08008609XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008610M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008611L: linux-serial@vger.kernel.org
8612S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008613F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008614
Linus Torvalds1da177e2005-04-16 15:20:36 -07008615YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008616M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008617L: linux-hams@vger.kernel.org
8618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008619F: drivers/net/hamradio/yam*
8620F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008621
Henkaf64a5e2005-10-12 15:02:56 +02008622YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008623M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008624L: usbb2k-api-dev@nongnu.org
8625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008626F: Documentation/input/yealink.txt
8627F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008628
Linus Torvalds1da177e2005-04-16 15:20:36 -07008629Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008630M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008631W: http://yaina.de/jreuter/
8632W: http://www.qsl.net/dl1bke/
8633L: linux-hams@vger.kernel.org
8634S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008635F: Documentation/networking/z8530drv.txt
8636F: drivers/net/hamradio/*scc.c
8637F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008638
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008639ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008640M: Daniel Drake <dsd@gentoo.org>
8641M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008642W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008643L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008644L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008646F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008647
Linus Torvalds1da177e2005-04-16 15:20:36 -07008648ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008649L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008650L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008651W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008652T: Mercurial http://linuxtv.org/hg/v4l-dvb
8653S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008654F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008655
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008656ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008657M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008658S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008659F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008660
Linus Torvalds1da177e2005-04-16 15:20:36 -07008661THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008662M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008663L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008664Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008665T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008666S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008667F: *
8668F: */