blob: 386fce6715c458e75e492b8fd0ca5ca76ca91cae [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93 X: Files and directories that are NOT maintained, same rules as F:
94 Files exclusions are tested before file matches.
95 Can be useful for excluding a specific subdirectory, for instance:
96 F: net/
97 X: net/ipv6/
98 matches all files in and below net excluding net/ipv6/
99 K: Keyword perl extended regex pattern to match content in a
100 patch or file. For instance:
101 K: of_get_profile
102 matches patches or files that contain "of_get_profile"
103 K: \b(printk|pr_(info|err))\b
104 matches patches or files that contain one or more of the words
105 printk, pr_info or pr_err
106 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108Note: For the hard of thinking, this list is meant to remain in alphabetical
109order. If you could add yourselves to it in alphabetical order that would be
110so much easier [Ed]
111
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700114 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163C505 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700117M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700118L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -0700120F: drivers/net/ethernet/i825xx/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Steffen Klasserta6d89912007-08-10 14:05:27 -07001223C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700123M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700124L: netdev@vger.kernel.org
125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700127F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700130M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700131L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700133F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
adam radfordc4de0ce2010-03-08 12:40:36 -08001353WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
136M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800138W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800140F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
14253C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700143M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144L: linux-scsi@vger.kernel.org
145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700146F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
1486PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700149M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150L: linux-hams@vger.kernel.org
151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700152F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700155M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700156M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700157L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700159F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
1618250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800162M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163L: linux-serial@vger.kernel.org
164W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700165S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700166T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800167F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700168F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
1708390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700171L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000172S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700173F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001759P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700176M: Eric Van Hensbergen <ericvh@gmail.com>
177M: Ron Minnich <rminnich@sandia.gov>
178M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100179L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500180W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800181Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800182T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700184F: Documentation/filesystems/9p.txt
185F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800186
Antti Palosaari91952bc2012-10-01 12:28:46 -0300187A8293 MEDIA DRIVER
188M: Antti Palosaari <crope@iki.fi>
189L: linux-media@vger.kernel.org
190W: http://linuxtv.org/
191W: http://palosaari.fi/linux/
192Q: http://patchwork.linuxtv.org/project/linux-media/list/
193T: git git://linuxtv.org/anttip/media_tree.git
194S: Maintained
195F: drivers/media/dvb-frontends/a8293*
196
Randy Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-10-12 16:11:31 -0700199L: linux-scsi@vger.kernel.org
200W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700202F: Documentation/scsi/aacraid.txt
203F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100206M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207L: lm-sensors@lm-sensors.org
208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700209F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200210
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700212M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213L: lm-sensors@lm-sensors.org
214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700215F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700218M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219L: linux-acenic@sunsite.dk
220S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700221F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Peter Feuerere86435e2009-06-21 18:53:03 +0200223ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700224M: Peter Feuerer <peter@piie.net>
Matthew Garrettd09448532010-02-11 10:40:13 -0500225L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700226W: http://piie.net/?section=acerhdf
227S: Maintained
228F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200229
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230ACER WMI LAPTOP EXTRAS
Carlos Corbachod9269a72011-05-02 09:57:18 +0100231M: Joey Lee <jlee@novell.com>
Matthew Garrettd09448532010-02-11 10:40:13 -0500232L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700234F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700237M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200238M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500239L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400240W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800241Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400242T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500243S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700244F: drivers/acpi/
245F: drivers/pnp/pnpacpi/
246F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700247F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500248
Len Brown8b59a452007-01-08 19:03:28 -0500249ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700250M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500251L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300252W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500253S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700254F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Len Brown8b59a452007-01-08 19:03:28 -0500256ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700257M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500258L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300259W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700261F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700262
Len Brown359acec2007-02-10 01:59:24 -0500263ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700264M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500265L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300266W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500269
Carlos Corbachobff431e2008-02-05 02:17:04 +0000270ACPI WMI DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -0500271L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100272S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700273F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000274
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100275AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700276M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200277W: http://wiki.parisc-linux.org/AD1889
278L: linux-parisc@vger.kernel.org
279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700280F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100281
Michael Hennerich527a1a82010-10-28 11:31:28 +0000282AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
283M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100284L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700285W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000286S: Supported
287F: drivers/misc/ad525x_dpot.c
288
289AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
290M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100291L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700292W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000293S: Supported
294F: drivers/regulator/ad5398.c
295
296AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
297M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100298L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700299W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000300S: Supported
301F: drivers/input/misc/ad714x.c
302
303AD7877 TOUCHSCREEN DRIVER
304M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100305L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700306W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000307S: Supported
308F: drivers/input/touchscreen/ad7877.c
309
310AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
311M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100312L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700313W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000314S: Supported
315F: drivers/input/touchscreen/ad7879.c
316
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700317ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
318M: Jiri Kosina <jkosina@suse.cz>
319S: Maintained
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700322M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200323L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700325F: Documentation/hwmon/adm1025
326F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Corentin Labbecae2caa2007-02-14 21:15:04 +0100328ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700329M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330L: lm-sensors@lm-sensors.org
331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700332F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100333
Michael Wucc0b88c2007-08-31 01:15:25 -0400334ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400335L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200336W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400337S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700338F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400339
Michael Hennerich527a1a82010-10-28 11:31:28 +0000340ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
341M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100342L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700343W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000344S: Supported
345F: drivers/mfd/adp5520.c
346F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700347F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800348F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000349F: drivers/input/keyboard/adp5520-keys.c
350
351ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
352M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100353L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700354W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000355S: Supported
356F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800357F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000358
359ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
360M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100361L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700362W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000363S: Supported
364F: drivers/video/backlight/adp8860_bl.c
365
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100366ADS1015 HARDWARE MONITOR DRIVER
367M: Dirk Eibach <eibach@gdsys.de>
368L: lm-sensors@lm-sensors.org
369S: Maintained
370F: Documentation/hwmon/ads1015
371F: drivers/hwmon/ads1015.c
372F: include/linux/i2c/ads1015.h
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700375M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700377F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Jean Delvareb058b852009-12-09 20:36:08 +0100379ADT7475 HARDWARE MONITOR DRIVER
380M: Jean Delvare <khali@linux-fr.org>
381L: lm-sensors@lm-sensors.org
382S: Maintained
383F: Documentation/hwmon/adt7475
384F: drivers/hwmon/adt7475.c
385
Michael Hennerich527a1a82010-10-28 11:31:28 +0000386ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
387M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100388L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700389W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000390S: Supported
391F: drivers/input/misc/adxl34x.c
392
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400393ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700394M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400395L: linux-scsi@vger.kernel.org
396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700397F: Documentation/scsi/advansys.txt
398F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700401M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700403F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Antti Palosaari91952bc2012-10-01 12:28:46 -0300405AF9013 MEDIA DRIVER
406M: Antti Palosaari <crope@iki.fi>
407L: linux-media@vger.kernel.org
408W: http://linuxtv.org/
409W: http://palosaari.fi/linux/
410Q: http://patchwork.linuxtv.org/project/linux-media/list/
411T: git git://linuxtv.org/anttip/media_tree.git
412S: Maintained
413F: drivers/media/dvb-frontends/af9013*
414
415AF9033 MEDIA DRIVER
416M: Antti Palosaari <crope@iki.fi>
417L: linux-media@vger.kernel.org
418W: http://linuxtv.org/
419W: http://palosaari.fi/linux/
420Q: http://patchwork.linuxtv.org/project/linux-media/list/
421T: git git://linuxtv.org/anttip/media_tree.git
422S: Maintained
423F: drivers/media/dvb-frontends/af9033*
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200426L: linux-fsdevel@vger.kernel.org
427S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700428F: Documentation/filesystems/affs.txt
429F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Randy Dunlape2d1d6c02008-10-12 16:11:31 -0700431AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700432M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -0700433L: linux-afs@lists.infradead.org
434S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700435F: fs/afs/
436F: include/net/af_rxrpc.h
437F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c02008-10-12 16:11:31 -0700438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700440M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700441T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700443F: drivers/char/agp/
444F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700447M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448L: linux-scsi@vger.kernel.org
449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700450F: drivers/scsi/aha152x*
451F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Hannes Reinecke64624d4f2007-10-19 10:32:29 +0200453AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700454M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d4f2007-10-19 10:32:29 +0200455L: linux-scsi@vger.kernel.org
456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700457F: drivers/scsi/aic7xxx/
458F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d4f2007-10-19 10:32:29 +0200459
Randy Dunlape2d1d6c02008-10-12 16:11:31 -0700460AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700461M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -0700462L: linux-aio@kvack.org
463S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700464F: fs/aio.c
465F: include/linux/*aio*.h
Randy Dunlape2d1d6c02008-10-12 16:11:31 -0700466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700468M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700469L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470W: http://www.linux-usb.org/SpeedTouch/
471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700472F: drivers/usb/atm/speedtch.c
473F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Pierre Ossman272f1332007-05-14 21:25:26 +0200475ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700476M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700478F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200479
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000480ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700481M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100482L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700484F: Documentation/i2c/busses/i2c-ali1563
485F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700488M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700489M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500490M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700491S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700492L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700493F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Tobias Klauseradf92512011-02-09 10:58:29 +0100495ALTERA UART/JTAG UART SERIAL DRIVERS
496M: Tobias Klauser <tklauser@distanz.ch>
497L: linux-serial@vger.kernel.org
498L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
499S: Maintained
500F: drivers/tty/serial/altera_uart.c
501F: drivers/tty/serial/altera_jtaguart.c
502F: include/linux/altera_uart.h
503F: include/linux/altera_jtaguart.h
504
Andreas Herrmann512d1022011-05-25 20:43:31 +0200505AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100506M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200507L: lm-sensors@lm-sensors.org
508S: Maintained
509F: Documentation/hwmon/fam15h_power
510F: drivers/hwmon/fam15h_power.c
511
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700512AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700513M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700514L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700516F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700517
Jordan Crousef90b8112006-01-06 00:12:14 -0800518AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800519P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700520L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800521W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
522S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700523F: drivers/char/hw_random/geode-rng.c
524F: drivers/crypto/geode*
525F: drivers/video/geode/
526F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800527
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200528AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200529M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200530L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100531T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200532S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800533F: drivers/iommu/amd_iommu*.[ch]
534F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200535
Peter Orubae7f5b302008-07-28 18:44:11 +0200536AMD MICROCODE UPDATE SUPPORT
Andreas Herrmann943482d2012-10-29 18:51:38 +0100537M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700538L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700540F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200541
Stelian Pop284f42b2006-12-12 18:18:31 +0100542AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700543M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100544S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200545F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100546
Tom Tuckerf94b5332006-09-22 15:22:48 -0700547AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700548M: Tom Tucker <tom@opengridcomputing.com>
549M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700550L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700552F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700553
Michael Hennerich527a1a82010-10-28 11:31:28 +0000554ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200555M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100556L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000557L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700558W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000559S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100560F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200561F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000562F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000563F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100564F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000565
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400566ANALOG DEVICES INC ASOC DRIVERS
567L: uclinux-dist-devel@blackfin.uclinux.org
568L: alsa-devel@alsa-project.org (moderated for non-subscribers)
569W: http://blackfin.uclinux.org/
570S: Supported
571F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400572
Johannes Berg42269062006-07-25 16:15:50 +0200573AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700574M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000575L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700576L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700578F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200581M: Jiri Kosina <jkosina@suse.cz>
582S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700583F: arch/x86/kernel/apm_32.c
584F: include/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200585F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700587APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700588M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700589L: linux-input@vger.kernel.org
590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700591F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700592
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700593APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200594M: Henrik Rydberg <rydberg@euromail.se>
595L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700597F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700600M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700602F: drivers/net/appletalk/
603F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Viresh Kumara4801672011-02-22 15:46:07 +0530605ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700606M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530607L: linux-ide@vger.kernel.org
608S: Maintained
609F: include/linux/pata_arasan_cf_data.h
610F: drivers/ata/pata_arasan_cf.c
611
Jaya Kumar1154ea72005-06-21 17:17:04 -0700612ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700613M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700615F: drivers/video/arcfb.c
616F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700619M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700621F: arch/arm/lib/floppydma.S
622F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Will Deacon6f965212011-07-01 14:38:53 +0100624ARM PMU PROFILING AND DEBUGGING
625M: Will Deacon <will.deacon@arm.com>
626S: Maintained
627F: arch/arm/kernel/perf_event*
628F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100629F: arch/arm/include/asm/pmu.h
630F: arch/arm/kernel/hw_breakpoint.c
631F: arch/arm/include/asm/hw_breakpoint.h
632
Russell Kingd4275352009-04-16 14:05:27 +0100633ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700634M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700635L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100636W: http://www.arm.linux.org.uk/
637S: Maintained
638F: arch/arm/
639
Stephen Boydd323c2432012-10-24 11:00:29 -0700640ARM SUB-ARCHITECTURES
641L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
642S: MAINTAINED
643F: arch/arm/mach-*/
644F: arch/arm/plat-*/
645T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
646
Russell Kingcefbf4e2009-11-22 17:40:28 +0000647ARM PRIMECELL AACI PL041 DRIVER
648M: Russell King <linux@arm.linux.org.uk>
649S: Maintained
650F: sound/arm/aaci.*
651
652ARM PRIMECELL CLCD PL110 DRIVER
653M: Russell King <linux@arm.linux.org.uk>
654S: Maintained
655F: drivers/video/amba-clcd.*
656
657ARM PRIMECELL KMI PL050 DRIVER
658M: Russell King <linux@arm.linux.org.uk>
659S: Maintained
660F: drivers/input/serio/ambakmi.*
661F: include/linux/amba/kmi.h
662
Russell King2761f5c2007-05-24 06:56:08 +0200663ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200664S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700665F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200666
Russell Kingcefbf4e2009-11-22 17:40:28 +0000667ARM PRIMECELL BUS SUPPORT
668M: Russell King <linux@arm.linux.org.uk>
669S: Maintained
670F: drivers/amba/
671F: include/linux/amba/bus.h
672
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800673ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700674M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700675L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800676S: Maintained
677
Sergey Lapin9c784f92008-08-03 02:29:48 +0100678ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700679M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700680L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100681S: Maintained
682
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800683ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700684M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700685L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800686S: Maintained
687
Maxime Ripard1b106692012-11-15 21:51:26 +0100688ARM/Allwinner A1X SoC support
689M: Maxime Ripard <maxime.ripard@free-electrons.com>
690L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
691S: Maintained
692F: arch/arm/mach-sunxi/
693
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800694ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700695M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800696M: Nicolas Ferre <nicolas.ferre@atmel.com>
697M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700698L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200699W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800700W: http://www.linux4sam.org
701S: Supported
702F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100703
Rob Herring986cf2e2011-06-22 11:28:53 -0500704ARM/CALXEDA HIGHBANK ARCHITECTURE
705M: Rob Herring <rob.herring@calxeda.com>
706L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
707S: Maintained
708F: arch/arm/mach-highbank/
709
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300710ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
711M: Anton Vorontsov <avorontsov@mvista.com>
712S: Maintained
713F: arch/arm/mach-cns3xxx/
714T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
715
Alexander Shiyan386ab512012-11-17 17:57:24 +0400716ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
717M: Alexander Shiyan <shc_work@mail.ru>
718L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
719S: Odd Fixes
720F: arch/arm/mach-clps711x/
721
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800722ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100723M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000724M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700725L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800726S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100727F: arch/arm/mach-ep93xx/
728F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800729
730ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700731M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700732L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800733S: Maintained
734
Russell Kingd4275352009-04-16 14:05:27 +0100735ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700736M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700737L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700738S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100739F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700740F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100741
Mike Rapoportd48134e2008-08-20 09:03:26 +0100742ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700743M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700744L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100745S: Maintained
746
Hubert Feurstein94150092009-10-07 08:36:07 +0100747ARM/CONTEC MICRO9 MACHINE SUPPORT
748M: Hubert Feurstein <hubert.feurstein@contec.at>
749S: Maintained
750F: arch/arm/mach-ep93xx/micro9.c
751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700753M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754S: Maintained
755
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200756ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100757M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700758L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100759T: git git://git.berlios.de/gemini-board
760S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300761F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200762
Barry Songa990cbd2011-07-12 21:44:10 +0800763ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
764M: Barry Song <baohua.song@csr.com>
765L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
766S: Maintained
767F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800768F: drivers/dma/sirf-dma.c
769F: drivers/i2c/busses/i2c-sirf.c
770F: drivers/pinctrl/pinctrl-sirf.c
771F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800772
Russell Kingd4275352009-04-16 14:05:27 +0100773ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700774M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700775L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100776W: http://www.arm.linux.org.uk/
777S: Maintained
778F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700779F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100780
Russell Kinga9da4f72008-07-12 21:42:04 +0100781ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700782M: Daniel Ribeiro <drwyrm@gmail.com>
783M: Stefan Schmidt <stefan@openezx.org>
784M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200785L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100786W: http://www.openezx.org/
787S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200788T: topgit git://git.openezx.org/openezx.git
789F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100790
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200791ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100792M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700793L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100794S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700795T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300796F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200797
Russell Kingd4275352009-04-16 14:05:27 +0100798ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700799M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700800L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100801W: http://www.arm.linux.org.uk/
802S: Maintained
803F: arch/arm/include/asm/hardware/dec21285.h
804F: arch/arm/mach-footbridge/
805
Sascha Hauer86183a52008-07-24 23:50:35 +0200806ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700807M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700808L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200809S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700810T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100811F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700812F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200813
Shawn Guo8bcb97652011-10-07 22:24:18 +0800814ARM/FREESCALE IMX6
815M: Shawn Guo <shawn.guo@linaro.org>
816L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
817S: Maintained
818T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
819F: arch/arm/mach-imx/*imx6*
820
Shawn Guoa9866a02011-10-21 11:53:34 +0800821ARM/FREESCALE MXS ARM ARCHITECTURE
822M: Shawn Guo <shawn.guo@linaro.org>
823L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
824S: Maintained
825T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
826F: arch/arm/mach-mxs/
827
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800828ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700829M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700830L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800831S: Maintained
832
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100833ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700834M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700835L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100836S: Maintained
837
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200838ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700839M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100840M: Paul Parsons <lost.distance@yahoo.com>
841L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200842S: Maintained
843F: arch/arm/mach-pxa/hx4700.c
844F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100845F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200846
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100847ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700848M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200849W: www.jlime.com
850S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700851T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
852F: arch/arm/mach-sa1100/jornada720.c
853F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100854
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200855ARM/IGEP MACHINE SUPPORT
856M: Enric Balletbo i Serra <eballetbo@gmail.com>
857M: Javier Martinez Canillas <javier@dowhile0.org>
858L: linux-omap@vger.kernel.org
859L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
860S: Maintained
861F: arch/arm/mach-omap2/board-igep0020.c
862
Marek Vasut403d2972010-05-22 00:29:39 +0200863ARM/INCOME PXA270 SUPPORT
864M: Marek Vasut <marek.vasut@gmail.com>
865L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
866S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700867F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200868
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800869ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700870M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700871M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700872L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700873S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100874
875ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700876M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700877L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700878S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800879
880ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700881M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700882M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700883L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700884S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800885
886ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700887M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700888M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700889L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700890S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800891
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800892ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700893M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700894L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800895S: Maintained
896
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200897ARM/INTEL IXP4XX ARM ARCHITECTURE
898M: Imre Kaloz <kaloz@openwrt.org>
899M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100900L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200901S: Maintained
902F: arch/arm/mach-ixp4xx/
903
Joe Perches838553c2010-10-26 14:22:59 -0700904ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100905M: Jonathan Cameron <jic23@cam.ac.uk>
906L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
907S: Maintained
908F: arch/arm/mach-pxa/stargate2.c
909F: drivers/pcmcia/pxa2xx_stargate2.c
910
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800911ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700912M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700913M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700914L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700915S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800916
917ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700918M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700919L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800920S: Maintained
921
922ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700923M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700924L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800925S: Maintained
926
Philipp Zabel3b8861712008-07-09 21:27:15 +0100927ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700928M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100929S: Maintained
930
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200931ARM/Marvell Armada 370 and Armada XP SOC support
932M: Jason Cooper <jason@lakedaemon.net>
933M: Andrew Lunn <andrew@lunn.ch>
934M: Gregory Clement <gregory.clement@free-electrons.com>
935L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
936S: Maintained
937F: arch/arm/mach-mvebu/
938
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400939ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
940M: Jason Cooper <jason@lakedaemon.net>
941M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700942L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400943S: Maintained
944F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400945F: arch/arm/mach-kirkwood/
946F: arch/arm/mach-mv78xx0/
947F: arch/arm/mach-orion5x/
948F: arch/arm/plat-orion/
949
Alexander Clouterd69ac132011-04-14 15:22:02 -0700950ARM/Orion SoC/Technologic Systems TS-78xx platform support
951M: Alexander Clouter <alex@digriz.org.uk>
952L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
953W: http://www.digriz.org.uk/ts78xx/kernel
954S: Maintained
955F: arch/arm/mach-orion5x/ts78xx-*
956
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000957ARM/MICREL KS8695 ARCHITECTURE
958M: Greg Ungerer <gerg@uclinux.org>
959L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
960F: arch/arm/mach-ks8695
961S: Odd Fixes
962
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200963ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700964M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700965L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200966F: arch/arm/mach-pxa/mioa701.c
967S: Maintained
968
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100969ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700970M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100971S: Maintained
972
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100973ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700974M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200975M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700976M: STEricsson <STEricsson_nomadik_linux@list.st.com>
977L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
978S: Maintained
979F: arch/arm/mach-nomadik/
980F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100981F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200982T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100983
Andy Green9d762952009-05-19 06:41:42 -0300984ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700985M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300986L: openmoko-kernel@lists.openmoko.org (subscribers-only)
987W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
988S: Supported
989
Daniel Walker0c19d212009-12-07 16:53:51 -0800990ARM/QUALCOMM MSM MACHINE SUPPORT
991M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -0800992M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -0800993M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -0800994L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -0800995F: arch/arm/mach-msm/
996F: drivers/video/msm/
997F: drivers/mmc/host/msm_sdcc.c
998F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800999F: drivers/tty/serial/msm_serial.h
1000F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -07001001F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001002F: drivers/*/pm8???-*
1003F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001004T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001005S: Maintained
1006
Dirk Opfer8459c152005-11-06 14:27:52 +00001007ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001008M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1009M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001010S: Maintained
1011
Marek Vasut5d783a22009-07-16 13:26:48 +02001012ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001013M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001014L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001015W: http://hackndev.com
1016S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001017F: arch/arm/mach-pxa/include/mach/palmtx.h
1018F: arch/arm/mach-pxa/palmtx.c
1019F: arch/arm/mach-pxa/include/mach/palmt5.h
1020F: arch/arm/mach-pxa/palmt5.c
1021F: arch/arm/mach-pxa/include/mach/palmld.h
1022F: arch/arm/mach-pxa/palmld.c
1023F: arch/arm/mach-pxa/include/mach/palmte2.h
1024F: arch/arm/mach-pxa/palmte2.c
1025F: arch/arm/mach-pxa/include/mach/palmtc.h
1026F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001027
Joe Perchesb57fe922009-12-14 18:00:52 -08001028ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001029M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001030L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001031W: http://hackndev.com
1032S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001033F: arch/arm/mach-pxa/include/mach/palmtreo.h
1034F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001035
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001036ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001037M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001038L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001039W: http://hackndev.com
1040S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001041F: arch/arm/mach-pxa/include/mach/palmz72.h
1042F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001045M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1047S: Maintained
1048
1049ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001050M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001051L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052W: http://www.arm.linux.org.uk/
1053S: Maintained
1054
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001055ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001056M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001057L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001058S: Maintained
1059
Russell Kingd4275352009-04-16 14:05:27 +01001060ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001061M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001062L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001063W: http://www.arm.linux.org.uk/
1064S: Maintained
1065F: arch/arm/common/time-acorn.c
1066F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1067F: arch/arm/include/asm/hardware/ioc.h
1068F: arch/arm/include/asm/hardware/iomd.h
1069F: arch/arm/include/asm/hardware/memc.h
1070F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001071F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001072F: drivers/net/ethernet/i825xx/ether1*
1073F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001074F: drivers/scsi/arm/
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001077M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078W: http://www.shark-linux.de/shark.html
1079S: Maintained
1080
Ben Dooksb21477f2009-06-13 10:46:34 +01001081ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001082M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001083M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001084L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001085L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001086W: http://www.fluff.org/ben/linux/
1087S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001088F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001089F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001090F: arch/arm/plat-s5p/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001091F: arch/arm/mach-s3c24*/
1092F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001093F: drivers/*/*s3c2410*
1094F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001095F: drivers/spi/spi-s3c*
1096F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001098ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001099M: Kukjin Kim <kgene.kim@samsung.com>
1100L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1101L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1102S: Maintained
1103F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001104F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001105
Kyungmin Park10ffa962011-03-04 17:36:26 -08001106ARM/SAMSUNG MOBILE MACHINE SUPPORT
1107M: Kyungmin Park <kyungmin.park@samsung.com>
1108L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1109S: Maintained
1110F: arch/arm/mach-s5pv210/mach-aquila.c
1111F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001112F: arch/arm/mach-exynos/mach-universal_c210.c
1113F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001114
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001115ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1116M: Kyungmin Park <kyungmin.park@samsung.com>
1117M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1118L: linux-arm-kernel@lists.infradead.org
1119L: linux-media@vger.kernel.org
1120S: Maintained
1121F: arch/arm/plat-s5p/dev-fimc*
1122F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001123F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001124
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001125ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1126M: Kyungmin Park <kyungmin.park@samsung.com>
1127M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001128M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001129L: linux-arm-kernel@lists.infradead.org
1130L: linux-media@vger.kernel.org
1131S: Maintained
1132F: arch/arm/plat-s5p/dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001133F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001134
1135ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1136M: Kyungmin Park <kyungmin.park@samsung.com>
1137M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1138L: linux-arm-kernel@lists.infradead.org
1139L: linux-media@vger.kernel.org
1140S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001141F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001142
Paul Mundtd48d38e82010-02-08 12:50:24 +09001143ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001144M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e82010-02-08 12:50:24 +09001145M: Magnus Damm <magnus.damm@gmail.com>
1146L: linux-sh@vger.kernel.org
Paul Mundtd48d38e82010-02-08 12:50:24 +09001147W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001148Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001149T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e82010-02-08 12:50:24 +09001150S: Supported
1151F: arch/arm/mach-shmobile/
1152F: drivers/sh/
1153
Dinh Nguyen66314222012-07-18 16:07:18 -06001154ARM/SOCFPGA ARCHITECTURE
1155M: Dinh Nguyen <dinguyen@altera.com>
1156S: Maintained
1157F: arch/arm/mach-socfpga/
1158
1159ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1160M: Dinh Nguyen <dinguyen@altera.com>
1161S: Maintained
1162F: drivers/clk/socfpga/
1163
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001164ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001165M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001166L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001167S: Maintained
1168
Mark F. Brown1bbd70892010-09-12 23:51:34 -04001169ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001170M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd70892010-09-12 23:51:34 -04001171L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1172S: Maintained
1173
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001174ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001175M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001176L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001177S: Maintained
1178
wanzongshun98ad6e32009-02-13 06:04:32 +01001179ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001180M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001181L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001182W: http://www.mcuos.com
1183S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001184F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001185F: drivers/input/keyboard/w90p910_keypad.c
1186F: drivers/input/touchscreen/w90p910_ts.c
1187F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001188F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001189F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001190F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001191F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001192F: drivers/usb/host/ehci-w90x900.c
1193F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001194
Linus Walleij54274d72010-04-04 10:58:03 +01001195ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001196M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001197L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1198S: Supported
1199F: arch/arm/mach-u300/
1200F: drivers/i2c/busses/i2c-stu300.c
1201F: drivers/rtc/rtc-coh901331.c
1202F: drivers/watchdog/coh901327_wdt.c
1203F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001204F: drivers/mfd/ab3100*
1205F: drivers/rtc/rtc-ab3100.c
1206F: drivers/rtc/rtc-coh901331.c
1207T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001208
Linus Walleij87572882010-12-22 09:18:29 +01001209ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001210M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001211M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001212L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1213S: Maintained
1214F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001215F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001216F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001217F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001218F: drivers/mfd/abx500*
1219F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001220F: drivers/mfd/dbx500*
1221F: drivers/mfd/db8500*
1222F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001223F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001224F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001225T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001226
Russell Kingd4275352009-04-16 14:05:27 +01001227ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001228M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001229L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001230W: http://www.arm.linux.org.uk/
1231S: Maintained
1232F: arch/arm/vfp/
1233
Marek Vasute66b6d82010-03-26 06:51:32 +01001234ARM/VOIPAC PXA270 SUPPORT
1235M: Marek Vasut <marek.vasut@gmail.com>
1236L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1237S: Maintained
1238F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001239F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001240
Tony Prisk04529fe2012-07-24 04:19:37 +12001241ARM/VT8500 ARM ARCHITECTURE
1242M: Tony Prisk <linux@prisktech.co.nz>
1243L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1244S: Maintained
1245F: arch/arm/mach-vt8500/
1246F: drivers/video/vt8500lcdfb.*
1247F: drivers/video/wm8505fb*
1248F: drivers/video/wmt_ge_rops.*
1249F: drivers/tty/serial/vt8500_serial.c
1250F: drivers/rtc/rtc-vt8500-c
Tony Prisk3a96dff2012-11-18 15:33:06 +13001251F: drivers/mmc/host/wmt-sdmmc.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001252
Marek Vasute66b6d82010-03-26 06:51:32 +01001253ARM/ZIPIT Z2 SUPPORT
1254M: Marek Vasut <marek.vasut@gmail.com>
1255L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1256S: Maintained
1257F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001258F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001259
Catalin Marinas38074222012-03-05 11:49:34 +00001260ARM64 PORT (AARCH64 ARCHITECTURE)
1261M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001262M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001263L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1264S: Maintained
1265F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001266F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001267
George Josephd58de032010-03-05 22:17:25 +01001268ASC7621 HARDWARE MONITOR DRIVER
1269M: George Joseph <george.joseph@fairview5.com>
1270L: lm-sensors@lm-sensors.org
1271S: Maintained
1272F: Documentation/hwmon/asc7621
1273F: drivers/hwmon/asc7621.c
1274
Corentin Charyb229ece2011-02-26 10:20:40 +01001275ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001276M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05001278L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001279W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001281F: drivers/platform/x86/asus*.c
1282F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001284ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001285M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001286L: lm-sensors@lm-sensors.org
1287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001288F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001289
Andrew Morton953a6472008-11-06 12:53:28 -08001290ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001291M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001292W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001294F: Documentation/crypto/async-tx-api.txt
1295F: crypto/async_tx/
1296F: drivers/dma/
1297F: include/linux/dmaengine.h
1298F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001299
Wolfram Sanga1867d32009-09-18 22:45:51 +02001300AT24 EEPROM DRIVER
1301M: Wolfram Sang <w.sang@pengutronix.de>
1302L: linux-i2c@vger.kernel.org
1303S: Maintained
1304F: drivers/misc/eeprom/at24.c
1305F: include/linux/i2c/at24.h
1306
Randy Dunlape7839f22008-10-12 16:11:45 -07001307ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001308M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001309W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001311F: Documentation/aoe/
1312F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Joe Perches9a10a872010-12-01 09:37:55 -08001314ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001315M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001316L: linux-wireless@vger.kernel.org
1317S: Supported
1318F: drivers/net/wireless/ath/*
1319
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001320ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001321M: Jiri Slaby <jirislaby@gmail.com>
1322M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001323M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001324L: linux-wireless@vger.kernel.org
1325L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001326W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001327S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001328F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001329
Kalle Valo12e62d62011-09-13 10:21:25 +03001330ATHEROS ATH6KL WIRELESS DRIVER
1331M: Kalle Valo <kvalo@qca.qualcomm.com>
1332L: linux-wireless@vger.kernel.org
1333W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1334T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1335S: Supported
1336F: drivers/net/wireless/ath/ath6kl/
1337
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001338ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001339M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1340M: Jouni Malinen <jouni@qca.qualcomm.com>
1341M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1342M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001343L: linux-wireless@vger.kernel.org
1344L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001345W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001346S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001347F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001348
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001349CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1350M: Christian Lamparter <chunkeey@googlemail.com>
1351L: linux-wireless@vger.kernel.org
1352W: http://wireless.kernel.org/en/users/Drivers/carl9170
1353S: Maintained
1354F: drivers/net/wireless/ath/carl9170/
1355
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001356ATK0110 HWMON DRIVER
1357M: Luca Tettamanti <kronos.it@gmail.com>
1358L: lm-sensors@lm-sensors.org
1359S: Maintained
1360F: drivers/hwmon/asus_atk0110.c
1361
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001362ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001363M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001365F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001366
Chris Snook7ae115b2008-09-09 03:26:57 -04001367ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001368M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001369M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001370L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001371W: http://sourceforge.net/projects/atl1
1372W: http://atl1.sourceforge.net
1373S: Maintained
Jeff Kirsher2b133ad62011-05-20 06:55:16 -07001374F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001377M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001378L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001379L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380W: http://linux-atm.sourceforge.net
1381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001382F: drivers/atm/
1383F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001385ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001386M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001387S: Maintained
1388F: drivers/mmc/host/atmel-mci.c
1389F: drivers/mmc/host/atmel-mci-regs.h
1390
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001391ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001392M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001393S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001394F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001395
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001396ATMEL DMA DRIVER
1397M: Nicolas Ferre <nicolas.ferre@atmel.com>
1398L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1399S: Supported
1400F: drivers/dma/at_hdmac.c
1401F: drivers/dma/at_hdmac_regs.h
1402F: arch/arm/mach-at91/include/mach/at_hdmac.h
1403
Josh Wu15515542012-03-23 17:56:29 +08001404ATMEL ISI DRIVER
1405M: Josh Wu <josh.wu@atmel.com>
1406L: linux-media@vger.kernel.org
1407S: Supported
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001408F: drivers/media/platform/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001409F: include/media/atmel-isi.h
1410
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001411ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001412M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001413L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001415F: drivers/video/atmel_lcdfb.c
1416F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001417
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001418ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001419M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001420S: Supported
Jeff Kirsher9f2f381f2011-06-18 01:52:36 -07001421F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001422
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001423ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001424M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001425S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001426F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001427
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001428ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1429M: Nicolas Ferre <nicolas.ferre@atmel.com>
1430L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1431S: Supported
1432F: drivers/misc/atmel_tclib.c
1433F: drivers/clocksource/tcb_clksrc.c
1434
Josh Wuff2675d2012-03-23 17:56:55 +08001435ATMEL TSADCC DRIVER
1436M: Josh Wu <josh.wu@atmel.com>
1437L: linux-input@vger.kernel.org
1438S: Supported
1439F: drivers/input/touchscreen/atmel_tsadcc.c
1440
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001441ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001442M: Nicolas Ferre <nicolas.ferre@atmel.com>
1443L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001444S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001445F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001448M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001449L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450W: http://www.thekelleys.org.uk/atmel
1451W: http://atmelwlandriver.sourceforge.net/
1452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001453F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Chris Wrighta92b7b82005-07-07 18:12:23 -07001455AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001456M: Al Viro <viro@zeniv.linux.org.uk>
1457M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001458L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001459W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001460T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001462F: include/linux/audit.h
1463F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001464
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001465AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001466M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001467W: http://miguelojeda.es/auxdisplay.htm
1468W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001470F: drivers/auxdisplay/
1471F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001472
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001473AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001474M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1475M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001476W: http://www.atmel.com/products/AVR32/
1477W: http://avr32linux.org/
1478W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001480F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001481
1482AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001483M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1484M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001486F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001489M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001491W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001493F: include/linux/ax25.h
1494F: include/net/ax25.h
1495F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07001497B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001498M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07001499L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001500L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001501W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07001502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001503F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07001504
1505B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001506M: Larry Finger <Larry.Finger@lwfinger.net>
1507M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07001508L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001509L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001510W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07001511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001512F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07001513
Richard Purdie300abeb2007-02-07 22:21:07 +00001514BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001515M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001517F: drivers/video/backlight/
1518F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001519
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001520BATMAN ADVANCED
1521M: Marek Lindner <lindner_marek@yahoo.de>
1522M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001523M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001524L: b.a.t.m.a.n@lists.open-mesh.org
1525W: http://www.open-mesh.org/
1526S: Maintained
1527F: net/batman-adv/
1528
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07001529BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001530M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07001531L: linux-hams@vger.kernel.org
1532W: http://www.baycom.org/~tom/ham/ham.html
1533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001534F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07001535
1536BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001537S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001538F: Documentation/filesystems/befs.txt
1539F: fs/befs/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07001540
1541BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001542M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07001543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001544F: Documentation/filesystems/bfs.txt
1545F: fs/bfs/
1546F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07001547
Bryan Wu1394f032007-05-06 14:50:22 -07001548BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001549M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001550L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001551W: http://blackfin.uclinux.org
1552S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001553F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001554
Bryan Wue190d6b2007-07-17 14:43:44 +08001555BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001556L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001557W: http://blackfin.uclinux.org
1558S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001559F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001560
Mike Frysinger566da5b2007-06-11 15:31:30 +08001561BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001562M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001563L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001564W: http://blackfin.uclinux.org
1565S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001566F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001567
Mike Frysinger936ed492010-03-10 15:20:38 -08001568BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001569M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001570L: uclinux-dist-devel@blackfin.uclinux.org
1571W: http://blackfin.uclinux.org
1572S: Supported
1573F: drivers/mmc/host/bfin_sdh.c
1574
Bryan Wu1394f032007-05-06 14:50:22 -07001575BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001576M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001577L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001578W: http://blackfin.uclinux.org
1579S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001580F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001581
Bryan Wu1e6d3202007-07-15 02:50:02 +08001582BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001583M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001584L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001585W: http://blackfin.uclinux.org
1586S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001587F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001588
Bryan Wud24ecfc2007-05-01 23:26:32 +02001589BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001590M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001591L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001592W: http://blackfin.uclinux.org/
1593S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001594F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001595
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001596BLINKM RGB LED DRIVER
1597M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1598S: Maintained
1599F: drivers/leds/leds-blinkm.c
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001602M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001603T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001605F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Joern Engel2b54aae2008-02-06 01:38:02 -08001607BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001608M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001609L: linux-mtd@lists.infradead.org
1610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001611F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001612
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001613BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001614M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001615M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001616M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001617L: linux-bluetooth@vger.kernel.org
1618W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001619T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1620T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001622F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001623
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001625M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001626M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001627M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001628L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001629W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001630T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1631T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001633F: net/bluetooth/
1634F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001637M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001638M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001639L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001640W: http://sourceforge.net/projects/bonding/
1641S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001642F: drivers/net/bonding/
1643F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Gary Zambrano39105892006-06-22 17:26:20 -07001645BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001646M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001647L: netdev@vger.kernel.org
1648S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001649F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001650
Michael Chan948c51e2006-06-04 02:51:39 -07001651BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001652M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001653L: netdev@vger.kernel.org
1654S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001655F: drivers/net/ethernet/broadcom/bnx2.*
1656F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001657
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001658BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001659M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001660L: netdev@vger.kernel.org
1661S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001662F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001663
Stephen Warrenf680f252012-09-15 00:18:54 -06001664BROADCOM BCM2835 ARM ARCHICTURE
1665M: Stephen Warren <swarren@wwwdotorg.org>
1666L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1667T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1668S: Maintained
1669F: arch/arm/mach-bcm2835/
1670F: arch/arm/boot/dts/bcm2835*
1671F: arch/arm/configs/bcm2835_defconfig
1672F: drivers/*/*bcm2835*
1673
Michael Chan948c51e2006-06-04 02:51:39 -07001674BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001675M: Matt Carlson <mcarlson@broadcom.com>
1676M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001677L: netdev@vger.kernel.org
1678S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001679F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001680
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001681BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1682M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001683M: Roland Vossen <rvossen@broadcom.com>
1684M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001685M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
1686M: Kan Yan <kanyan@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001687L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001688L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001689S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001690F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001691
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001692BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1693M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1694L: linux-scsi@vger.kernel.org
1695S: Supported
1696F: drivers/scsi/bnx2fc/
1697
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001698BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1699M: Rafał Miłecki <zajec5@gmail.com>
1700L: linux-wireless@vger.kernel.org
1701S: Maintained
1702F: drivers/bcma/
1703F: include/linux/bcma/
1704
Jing Huang7725ccf2009-09-23 17:46:15 -07001705BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001706M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001707L: linux-scsi@vger.kernel.org
1708S: Supported
1709F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001710
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001711BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1712M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001713L: netdev@vger.kernel.org
1714S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001715F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001716
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001717BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001718M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001719L: linux-scsi@vger.kernel.org
1720S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001721F: block/bsg.c
1722F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001723
Clemens Ladischaf399172011-01-10 16:32:54 +01001724BT87X AUDIO DRIVER
1725M: Clemens Ladisch <clemens@ladisch.de>
1726L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1727T: git git://git.alsa-project.org/alsa-kernel.git
1728S: Maintained
1729F: Documentation/sound/alsa/Bt87x.txt
1730F: sound/pci/bt87x.c
1731
Michael Bueschff1d5c22008-07-25 01:46:10 -07001732BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001733M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001734W: http://bu3sch.de/btgpio.php
1735S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001736F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001737
Joe Percheseb1eb042009-01-21 10:49:16 -05001738BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001739M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001740L: linux-btrfs@vger.kernel.org
1741W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001742Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001743T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001744S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001745F: Documentation/filesystems/btrfs.txt
1746F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001749M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001750L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001751W: http://linuxtv.org
Joe Perches08deed12012-03-23 15:01:57 -07001752T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001754F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001755F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Clemens Ladischaf399172011-01-10 16:32:54 +01001757C-MEDIA CMI8788 DRIVER
1758M: Clemens Ladisch <clemens@ladisch.de>
1759L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1760T: git git://git.alsa-project.org/alsa-kernel.git
1761S: Maintained
1762F: sound/pci/oxygen/
1763
Mark Salter21413552011-10-04 11:21:42 -04001764C6X ARCHITECTURE
1765M: Mark Salter <msalter@redhat.com>
1766M: Aurelien Jacquiot <a-jacquiot@ti.com>
1767L: linux-c6x-dev@linux-c6x.org
1768W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1769S: Maintained
1770F: arch/c6x/
1771
David Howellsa5432f5a2009-04-20 15:46:45 +01001772CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001773M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01001774L: linux-cachefs@redhat.com
1775S: Supported
1776F: Documentation/filesystems/caching/cachefiles.txt
1777F: fs/cachefiles/
1778
Jonathan Corbet77d51402007-03-22 19:44:17 -03001779CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001780M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001781L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07001782T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001784F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001785F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001786
Joe Perches201b6ba2010-09-07 20:33:24 +00001787CAIF NETWORK LAYER
1788M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1789L: netdev@vger.kernel.org
1790S: Supported
1791F: Documentation/networking/caif/
1792F: drivers/net/caif/
1793F: include/linux/caif/
1794F: include/net/caif/
1795F: net/caif/
1796
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001797CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001798M: Muli Ben-Yehuda <muli@il.ibm.com>
1799M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001800L: discuss@x86-64.org
1801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001802F: arch/x86/kernel/pci-calgary_64.c
1803F: arch/x86/kernel/tce_64.c
1804F: arch/x86/include/asm/calgary.h
1805F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001806
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07001807CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001808M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001809L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001810W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001811T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07001812S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001813F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001814F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001815F: include/linux/can/core.h
1816F: include/linux/can/bcm.h
1817F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001818F: include/linux/can/gw.h
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07001819
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001820CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001821M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001822M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001823L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001824W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001825T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001826S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001827F: drivers/net/can/
1828F: include/linux/can/dev.h
1829F: include/linux/can/error.h
1830F: include/linux/can/netlink.h
1831F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001832
James Morris95d16c72012-03-16 12:05:48 +11001833CAPABILITIES
1834M: Serge Hallyn <serge.hallyn@canonical.com>
1835L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001836S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001837F: include/linux/capability.h
1838F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001839F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001840F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001841
Arnd Bergmannb8154542008-05-16 11:10:59 +02001842CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001843M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001844L: linuxppc-dev@lists.ozlabs.org
1845L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001846W: http://www.ibm.com/developerworks/power/cell/
1847S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001848F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001849F: arch/powerpc/include/asm/spu*.h
1850F: arch/powerpc/oprofile/*cell*
1851F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001852
Sage Weil9030aaf2009-10-06 11:31:15 -07001853CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001854M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001855L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001856W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001857T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001858S: Supported
1859F: Documentation/filesystems/ceph.txt
1860F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001861F: net/ceph
1862F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001863F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001864
David Vrabel18332a82008-09-17 16:34:44 +01001865CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001866L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001867S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001868F: Documentation/usb/WUSB-Design-overview.txt
1869F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001870F: drivers/usb/host/hwa-hc.c
1871F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001872F: drivers/usb/wusbcore/
1873F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001874
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001875CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001876M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001877W: http://miguelojeda.es/auxdisplay.htm
1878W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001880F: drivers/auxdisplay/cfag12864b.c
1881F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001882
1883CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001884M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001885W: http://miguelojeda.es/auxdisplay.htm
1886W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001888F: drivers/auxdisplay/cfag12864bfb.c
1889F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001890
Johannes Berg704232c2007-04-23 12:20:05 -07001891CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001892M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001893L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001894W: http://wireless.kernel.org/
1895T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1896T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001898F: include/linux/nl80211.h
1899F: include/net/cfg80211.h
1900F: net/wireless/*
1901X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001902
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001903CHAR and MISC DRIVERS
1904M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001905M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001906T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001907S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001908F: drivers/char/*
1909F: drivers/misc/*
1910
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001911CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001912M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001913S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001914F: scripts/checkpatch.pl
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001915
Harry Weif8407f262011-02-25 14:44:15 -08001916CHINESE DOCUMENTATION
1917M: Harry Wei <harryxiyou@gmail.com>
1918L: xiyoulinuxkernelgroup@googlegroups.com
1919L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1920S: Maintained
1921F: Documentation/zh_CN/
1922
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001923CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1924M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1925L: linux-usb@vger.kernel.org
1926S: Maintained
1927F: drivers/usb/chipidea/
1928
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001929CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001930M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001931M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001932M: Neel Patel <neepatel@cisco.com>
1933M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001934S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001935F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001936
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001937CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001938M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001939L: netdev@vger.kernel.org
1940S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001941F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001942
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001943CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001944M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001945L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001947F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001948
Timur Tabid9e9d822008-04-24 08:45:26 +10001949CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001950M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001951L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001952S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001953F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001954
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001955CLEANCACHE API
1956M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1957L: linux-kernel@vger.kernel.org
1958S: Maintained
1959F: mm/cleancache.c
1960F: include/linux/cleancache.h
1961
Russell Kingd4275352009-04-16 14:05:27 +01001962CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001963M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001964S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001965F: include/linux/clk.h
1966
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001967CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001968M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001969M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1970M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001971L: linux-scsi@vger.kernel.org
1972S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001973F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001974
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001975CMPC ACPI DRIVER
1976M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1977M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd09448532010-02-11 10:40:13 -05001978L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001979S: Supported
1980F: drivers/platform/x86/classmate-laptop.c
1981
Nicolas Palix74425ee2010-06-06 17:15:01 +02001982COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02001983M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02001984M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02001985M: Nicolas Palix <nicolas.palix@imag.fr>
1986L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02001987W: http://coccinelle.lip6.fr/
1988S: Supported
1989F: scripts/coccinelle/
1990F: scripts/coccicheck
1991
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001993M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994M: coda@cs.cmu.edu
1995L: codalist@coda.cs.cmu.edu
1996W: http://www.coda.cs.cmu.edu/
1997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001998F: Documentation/filesystems/coda.txt
1999F: fs/coda/
2000F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Mike Turquette7704add2012-05-02 18:37:45 -07002002COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002003M: Mike Turquette <mturquette@linaro.org>
2004L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2005T: git git://git.linaro.org/people/mturquette/linux.git
2006S: Maintained
2007F: drivers/clk/clk.c
2008F: drivers/clk/clk-*
2009F: include/linux/clk-pr*
2010
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002011COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002012M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002013L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002014L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002015W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002016Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002017T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002018S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002019F: Documentation/filesystems/cifs.txt
2020F: fs/cifs/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002021
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002023M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002024L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002026F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002029M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002030L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002032F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
2034COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002035M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002036L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002038F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002040COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002041M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05002042L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002044F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002045
Simon Arlott949be0f2007-03-06 02:47:46 -08002046CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002047M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002048L: accessrunner-general@lists.sourceforge.net
2049W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002051F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002052
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002053CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002054M: Joel Becker <jlbec@evilplan.org>
2055T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002056S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002057F: fs/configfs/
2058F: include/linux/configfs.h
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002059
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002060CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002061M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002062L: netdev@vger.kernel.org
2063S: Maintained
2064F: drivers/connector/
2065
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002066CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002067M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002068M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002069L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002070L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002071T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002073F: include/linux/cgroup*
2074F: kernel/cgroup*
Randy Dunlap8ca739e32009-06-17 16:26:32 -07002075F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002076
Rudolf Marekbebe4672007-05-08 17:22:02 +02002077CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002078M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002079L: lm-sensors@lm-sensors.org
2080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002081F: Documentation/hwmon/coretemp
2082F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002083
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002085M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086W: http://www.fi.muni.cz/~kas/cosa/
2087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002088F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
Florian Fainelli4371ee32009-06-01 02:43:17 -07002090CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002091M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002092L: netdev@vger.kernel.org
2093S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002094F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002095
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002097M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002098L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002099L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002101F: drivers/cpufreq/
2102F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
2104CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002105M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002107F: arch/x86/kernel/cpuid.c
2108F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002110CPU POWER MONITORING SUBSYSTEM
2111M: Dominik Brodowski <linux@dominikbrodowski.net>
2112M: Thomas Renninger <trenn@suse.de>
2113S: Maintained
2114F: tools/power/cpupower
2115
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002116CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002117M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002118W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002119W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002120S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002121F: Documentation/cgroups/cpusets.txt
2122F: include/linux/cpuset.h
2123F: kernel/cpuset.c
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002126W: http://sourceforge.net/projects/cramfs/
2127S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002128F: Documentation/filesystems/cramfs.txt
2129F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
2131CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002132M: Mikael Starvik <starvik@axis.com>
2133M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002134L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135W: http://developer.axis.com
2136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002137F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002138F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
2140CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002141M: Herbert Xu <herbert@gondor.apana.org.au>
2142M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002144T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002146F: Documentation/crypto/
2147F: arch/*/crypto/
2148F: crypto/
2149F: drivers/crypto/
2150F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Neil Horman5b07bd52009-02-05 16:03:04 +11002152CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002153M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002154L: linux-crypto@vger.kernel.org
2155S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002156F: crypto/ansi_cprng.c
2157F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002158
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002159CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002160M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002162F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002163
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002164CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002165M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002166L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002167L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07002168T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002169W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002170W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002172F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002173F: drivers/media/pci/cx18/
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002174
Antti Palosaari91952bc2012-10-01 12:28:46 -03002175CXD2820R MEDIA DRIVER
2176M: Antti Palosaari <crope@iki.fi>
2177L: linux-media@vger.kernel.org
2178W: http://linuxtv.org/
2179W: http://palosaari.fi/linux/
2180Q: http://patchwork.linuxtv.org/project/linux-media/list/
2181T: git git://linuxtv.org/anttip/media_tree.git
2182S: Maintained
2183F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002184
Steve Wisee5ec3782008-05-20 14:06:33 -07002185CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002186M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002187L: netdev@vger.kernel.org
2188W: http://www.chelsio.com
2189S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002190F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002191
2192CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002193M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002194L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002195W: http://www.openfabrics.org
2196S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002197F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002198
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002199CXGB4 ETHERNET DRIVER (CXGB4)
2200M: Dimitris Michailidis <dm@chelsio.com>
2201L: netdev@vger.kernel.org
2202W: http://www.chelsio.com
2203S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002204F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002205
2206CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2207M: Steve Wise <swise@chelsio.com>
2208L: linux-rdma@vger.kernel.org
2209W: http://www.openfabrics.org
2210S: Supported
2211F: drivers/infiniband/hw/cxgb4/
2212
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002213CXGB4VF ETHERNET DRIVER (CXGB4VF)
2214M: Casey Leedom <leedom@chelsio.com>
2215L: netdev@vger.kernel.org
2216W: http://www.chelsio.com
2217S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002218F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002219
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002220STMMAC ETHERNET DRIVER
2221M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2222L: netdev@vger.kernel.org
2223W: http://www.stlinux.com
2224S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002225F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002226
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002228M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002229L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230W: http://www.arm.linux.org.uk/
2231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002232F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002233
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002235M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002236W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002238F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
2240CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002242S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002243F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002244F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
2246CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002248S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002249F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002251CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002252M: Javier Martinez Canillas <javier@dowhile0.org>
2253L: linux-input@vger.kernel.org
2254S: Maintained
2255F: drivers/input/touchscreen/cyttsp*
2256F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002257
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002259M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260W: http://yaina.de/jreuter/
2261W: http://www.qsl.net/dl1bke/
2262L: linux-hams@vger.kernel.org
2263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002264F: net/ax25/af_ax25.c
2265F: net/ax25/ax25_dev.c
2266F: net/ax25/ax25_ds_*
2267F: net/ax25/ax25_in.c
2268F: net/ax25/ax25_out.c
2269F: net/ax25/ax25_timer.c
2270F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002272DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002273L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002274S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002275F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002276F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002277
2278DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002279M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002280W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002281M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002283F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002284
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002286M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002287M: Ali Akcaagac <aliakc@web.de>
2288M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002290L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291L: http://lists.twibble.org/mailman/listinfo/dc395x/
2292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002293F: Documentation/scsi/dc395x.txt
2294F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002296DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d030e2011-02-26 16:28:54 +00002297M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002298L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002299W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002301F: include/linux/dccp.h
2302F: include/linux/tfrc.h
2303F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002304
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306W: http://linux-decnet.sourceforge.net
2307L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002308S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002309F: Documentation/networking/decnet.txt
2310F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
2312DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002313M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002315F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002317DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002318M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05002319L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002321F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002322
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002324M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325W: http://www.debian.org/~dz/i8k/
2326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002327F: drivers/char/i8k.c
2328F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
Doug Warzecha90563ec42005-09-06 15:17:15 -07002330DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002331M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec42005-09-06 15:17:15 -07002332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002333F: Documentation/dcdbas.txt
2334F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec42005-09-06 15:17:15 -07002335
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002336DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002337M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002338S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002339F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002340
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002341DESIGNWARE USB3 DRD IP DRIVER
2342M: Felipe Balbi <balbi@ti.com>
2343L: linux-usb@vger.kernel.org
2344L: linux-omap@vger.kernel.org
2345T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2346S: Maintained
2347F: drivers/usb/dwc3/
2348
Kyungmin Park89d07762012-01-10 15:09:09 -08002349DEVICE FREQUENCY (DEVFREQ)
2350M: MyungJoo Ham <myungjoo.ham@samsung.com>
2351M: Kyungmin Park <kyungmin.park@samsung.com>
2352L: linux-kernel@vger.kernel.org
2353S: Maintained
2354F: drivers/devfreq/
2355
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002357M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359S: Maintained
2360
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002361DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002362M: Alasdair Kergon <agk@redhat.com>
2363M: dm-devel@redhat.com
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002364L: dm-devel@redhat.com
2365W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002366Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002367T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002369F: Documentation/device-mapper/
2370F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002371F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002372F: include/linux/device-mapper.h
2373F: include/linux/dm-*.h
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002374
Guenter Roeck335d7c52011-01-26 11:45:49 -08002375DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002376M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002377L: linux-i2c@vger.kernel.org
2378S: Maintained
2379F: drivers/i2c/busses/i2c-diolan-u2c.c
2380
Randy Dunlape7839f22008-10-12 16:11:45 -07002381DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002382M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002384F: Documentation/filesystems/dnotify.txt
2385F: fs/notify/dnotify/
2386F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387
2388DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002389M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2391W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2392W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2393S: Maintained
2394
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002395DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002396M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002398F: Documentation/filesystems/quota.txt
2399F: fs/quota/
2400F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
Bernie Thompson702686a2012-03-01 13:52:13 -08002402DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2403M: Bernie Thompson <bernie@plugable.com>
2404L: linux-fbdev@vger.kernel.org
2405S: Maintained
2406W: http://plugable.com/category/projects/udlfb/
2407F: drivers/video/udlfb.c
2408F: include/video/udlfb.h
2409F: Documentation/fb/udlfb.txt
2410
Randy Dunlape7839f22008-10-12 16:11:45 -07002411DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002412M: Christine Caulfield <ccaulfie@redhat.com>
2413M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002414L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002415W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002416T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002417S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002418F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002419
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302420DMA BUFFER SHARING FRAMEWORK
2421M: Sumit Semwal <sumit.semwal@linaro.org>
2422S: Maintained
2423L: linux-media@vger.kernel.org
2424L: dri-devel@lists.freedesktop.org
2425L: linaro-mm-sig@lists.linaro.org
2426F: drivers/base/dma-buf*
2427F: include/linux/dma-buf*
2428F: Documentation/dma-buf-sharing.txt
2429T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2430
Dan Williamsb3e5f262007-08-07 10:26:35 -07002431DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002432M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002433M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002434S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002435F: drivers/dma/
2436F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302437T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2438T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002439
Juerg Haefligerb8250372007-06-09 10:11:16 -04002440DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002441M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002442L: lm-sensors@lm-sensors.org
2443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002444F: Documentation/hwmon/dme1737
2445F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002446
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002447DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002448M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002449L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002450S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002451F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002452
Joe Perches7d2c86b2009-04-07 20:59:01 -07002453DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002454M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002455L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002456T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002458F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002459
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002461M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462L: blinux-list@redhat.com
2463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002464F: drivers/char/dtlk.c
2465F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002467DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002468M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002469L: linux-scsi@vger.kernel.org
2470W: http://www.adaptec.com/
2471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002472F: drivers/scsi/dpt*
2473F: drivers/scsi/dpt/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002474
Philipp Reisnerb411b362009-09-25 16:07:19 -07002475DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002476P: Philipp Reisner
2477P: Lars Ellenberg
2478M: drbd-dev@lists.linbit.com
2479L: drbd-user@lists.linbit.com
2480W: http://www.drbd.org
2481T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2482T: git git://git.drbd.org/drbd-8.3.git
2483S: Supported
2484F: drivers/block/drbd/
2485F: lib/lru_cache.c
2486F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002487
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002488DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002489M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002490T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002492F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002493F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002494F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002495F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002496F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002497F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002498F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
2500DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002501M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002502L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002503T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002505F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002506F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
Chris Wilson8daf7472010-09-28 14:07:26 +01002508INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002509M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002510L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002511L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002512T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002513S: Supported
2514F: drivers/gpu/drm/i915
2515F: include/drm/i915*
2516
Kyungmin Park398a6d42011-11-02 11:33:16 +09002517DRM DRIVERS FOR EXYNOS
2518M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002519M: Joonyoung Shim <jy0922.shim@samsung.com>
2520M: Seung-Woo Kim <sw0312.kim@samsung.com>
2521M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002522L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002523T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002524S: Supported
2525F: drivers/gpu/drm/exynos
2526F: include/drm/exynos*
2527
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002529M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002530L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002532F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
Antti Palosaari91952bc2012-10-01 12:28:46 -03002534DVB_USB_AF9015 MEDIA DRIVER
2535M: Antti Palosaari <crope@iki.fi>
2536L: linux-media@vger.kernel.org
2537W: http://linuxtv.org/
2538W: http://palosaari.fi/linux/
2539Q: http://patchwork.linuxtv.org/project/linux-media/list/
2540T: git git://linuxtv.org/anttip/media_tree.git
2541S: Maintained
2542F: drivers/media/usb/dvb-usb-v2/af9015*
2543
2544DVB_USB_AF9035 MEDIA DRIVER
2545M: Antti Palosaari <crope@iki.fi>
2546L: linux-media@vger.kernel.org
2547W: http://linuxtv.org/
2548W: http://palosaari.fi/linux/
2549Q: http://patchwork.linuxtv.org/project/linux-media/list/
2550T: git git://linuxtv.org/anttip/media_tree.git
2551S: Maintained
2552F: drivers/media/usb/dvb-usb-v2/af9035*
2553
2554DVB_USB_ANYSEE MEDIA DRIVER
2555M: Antti Palosaari <crope@iki.fi>
2556L: linux-media@vger.kernel.org
2557W: http://linuxtv.org/
2558W: http://palosaari.fi/linux/
2559Q: http://patchwork.linuxtv.org/project/linux-media/list/
2560T: git git://linuxtv.org/anttip/media_tree.git
2561S: Maintained
2562F: drivers/media/usb/dvb-usb-v2/anysee*
2563
2564DVB_USB_AU6610 MEDIA DRIVER
2565M: Antti Palosaari <crope@iki.fi>
2566L: linux-media@vger.kernel.org
2567W: http://linuxtv.org/
2568W: http://palosaari.fi/linux/
2569Q: http://patchwork.linuxtv.org/project/linux-media/list/
2570T: git git://linuxtv.org/anttip/media_tree.git
2571S: Maintained
2572F: drivers/media/usb/dvb-usb-v2/au6610*
2573
2574DVB_USB_CE6230 MEDIA DRIVER
2575M: Antti Palosaari <crope@iki.fi>
2576L: linux-media@vger.kernel.org
2577W: http://linuxtv.org/
2578W: http://palosaari.fi/linux/
2579Q: http://patchwork.linuxtv.org/project/linux-media/list/
2580T: git git://linuxtv.org/anttip/media_tree.git
2581S: Maintained
2582F: drivers/media/usb/dvb-usb-v2/ce6230*
2583
Michael Krufkyd099dea2012-10-02 00:56:20 -03002584DVB_USB_CXUSB MEDIA DRIVER
2585M: Michael Krufky <mkrufky@linuxtv.org>
2586L: linux-media@vger.kernel.org
2587W: http://linuxtv.org/
2588W: http://github.com/mkrufky
2589Q: http://patchwork.linuxtv.org/project/linux-media/list/
2590T: git git://linuxtv.org/media_tree.git
2591S: Maintained
2592F: drivers/media/usb/dvb-usb-v2/cxusb*
2593
Antti Palosaari91952bc2012-10-01 12:28:46 -03002594DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2595M: Antti Palosaari <crope@iki.fi>
2596L: linux-media@vger.kernel.org
2597W: http://linuxtv.org/
2598W: http://palosaari.fi/linux/
2599Q: http://patchwork.linuxtv.org/project/linux-media/list/
2600T: git git://linuxtv.org/anttip/media_tree.git
2601S: Maintained
2602F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2603
2604DVB_USB_EC168 MEDIA DRIVER
2605M: Antti Palosaari <crope@iki.fi>
2606L: linux-media@vger.kernel.org
2607W: http://linuxtv.org/
2608W: http://palosaari.fi/linux/
2609Q: http://patchwork.linuxtv.org/project/linux-media/list/
2610T: git git://linuxtv.org/anttip/media_tree.git
2611S: Maintained
2612F: drivers/media/usb/dvb-usb-v2/ec168*
2613
Michael Krufky8856f5f2012-10-02 00:55:50 -03002614DVB_USB_MXL111SF MEDIA DRIVER
2615M: Michael Krufky <mkrufky@linuxtv.org>
2616L: linux-media@vger.kernel.org
2617W: http://linuxtv.org/
2618W: http://github.com/mkrufky
2619Q: http://patchwork.linuxtv.org/project/linux-media/list/
2620T: git git://linuxtv.org/mkrufky/mxl111sf.git
2621S: Maintained
2622F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2623
Antti Palosaari91952bc2012-10-01 12:28:46 -03002624DVB_USB_RTL28XXU MEDIA DRIVER
2625M: Antti Palosaari <crope@iki.fi>
2626L: linux-media@vger.kernel.org
2627W: http://linuxtv.org/
2628W: http://palosaari.fi/linux/
2629Q: http://patchwork.linuxtv.org/project/linux-media/list/
2630T: git git://linuxtv.org/anttip/media_tree.git
2631S: Maintained
2632F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2633
2634DVB_USB_V2 MEDIA DRIVER
2635M: Antti Palosaari <crope@iki.fi>
2636L: linux-media@vger.kernel.org
2637W: http://linuxtv.org/
2638W: http://palosaari.fi/linux/
2639Q: http://patchwork.linuxtv.org/project/linux-media/list/
2640T: git git://linuxtv.org/anttip/media_tree.git
2641S: Maintained
2642F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2643F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2644
Jason Baronac0ac382011-08-11 14:36:43 -04002645DYNAMIC DEBUG
2646M: Jason Baron <jbaron@redhat.com>
2647S: Maintained
2648F: lib/dynamic_debug.c
2649F: include/linux/dynamic_debug.h
2650
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002651DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002652M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002653S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002654F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002655
Antti Palosaari91952bc2012-10-01 12:28:46 -03002656E4000 MEDIA DRIVER
2657M: Antti Palosaari <crope@iki.fi>
2658L: linux-media@vger.kernel.org
2659W: http://linuxtv.org/
2660W: http://palosaari.fi/linux/
2661Q: http://patchwork.linuxtv.org/project/linux-media/list/
2662T: git git://linuxtv.org/anttip/media_tree.git
2663S: Maintained
2664F: drivers/media/tuners/e4000*
2665
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002667M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002668L: linux-eata@i-connect.net
2669L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002671F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
2673EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002674M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675L: linux-scsi@vger.kernel.org
2676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002677F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
2679EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002680M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002681L: linux-eata@i-connect.net
2682L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002684F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685
2686EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002687M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002688L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689W: http://ebtables.sourceforge.net/
2690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002691F: include/linux/netfilter_bridge/ebt_*.h
2692F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693
Antti Palosaari91952bc2012-10-01 12:28:46 -03002694EC100 MEDIA DRIVER
2695M: Antti Palosaari <crope@iki.fi>
2696L: linux-media@vger.kernel.org
2697W: http://linuxtv.org/
2698W: http://palosaari.fi/linux/
2699Q: http://patchwork.linuxtv.org/project/linux-media/list/
2700T: git git://linuxtv.org/anttip/media_tree.git
2701S: Maintained
2702F: drivers/media/dvb-frontends/ec100*
2703
Michael Halcrow237fead2006-10-04 02:16:22 -07002704ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002705M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002706M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002707L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002708W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002709S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002710F: Documentation/filesystems/ecryptfs.txt
2711F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002712
Alan Coxda9bb1d2006-01-18 17:44:13 -08002713EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002714M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002715L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002716W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002717S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002718F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002719F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002720F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002721
Borislav Petkovc476c232009-05-20 20:31:58 +02002722EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002723M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002724M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002725L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002726W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002727S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002728F: drivers/edac/amd64_edac*
2729
Dave Peterson0e438e32006-03-26 01:38:55 -08002730EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002731M: Mark Gross <mark.gross@intel.com>
2732M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002733L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002734W: bluesmoke.sourceforge.net
2735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002736F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002737
2738EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002739M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002740L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002741W: bluesmoke.sourceforge.net
2742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002743F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002744
Douglas Thompson6bc78402007-07-19 01:50:12 -07002745EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002746M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002747L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002748W: bluesmoke.sourceforge.net
2749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002750F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002751
2752EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002753M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002754L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002755W: bluesmoke.sourceforge.net
2756S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002757F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002758
2759EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002760M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002761L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002762W: bluesmoke.sourceforge.net
2763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002764F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002765
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002766EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002767M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002768L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002769W: bluesmoke.sourceforge.net
2770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002771F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002772
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002773EDAC-I7300
2774M: Mauro Carvalho Chehab <mchehab@redhat.com>
2775L: linux-edac@vger.kernel.org
2776W: bluesmoke.sourceforge.net
2777S: Maintained
2778F: drivers/edac/i7300_edac.c
2779
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002780EDAC-I7CORE
2781M: Mauro Carvalho Chehab <mchehab@redhat.com>
2782L: linux-edac@vger.kernel.org
2783W: bluesmoke.sourceforge.net
2784S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002785F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002786
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002787EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002788M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R255278852011-01-21 23:13:37 +05302789M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002790L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002791W: bluesmoke.sourceforge.net
2792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002793F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002794
2795EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002796M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002797L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002798W: bluesmoke.sourceforge.net
2799S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002800F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002801
Dave Peterson0e438e32006-03-26 01:38:55 -08002802EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002803M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002804L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002805W: bluesmoke.sourceforge.net
2806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002807F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002808
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002809EDAC-SBRIDGE
2810M: Mauro Carvalho Chehab <mchehab@redhat.com>
2811L: linux-edac@vger.kernel.org
2812W: bluesmoke.sourceforge.net
2813S: Maintained
2814F: drivers/edac/sb_edac.c
2815
Clemens Ladischaf399172011-01-10 16:32:54 +01002816EDIROL UA-101/UA-1000 DRIVER
2817M: Clemens Ladisch <clemens@ladisch.de>
2818L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2819T: git git://git.alsa-project.org/alsa-kernel.git
2820S: Maintained
2821F: sound/usb/misc/ua101.c
2822
Matt Fleming1f7df952012-10-03 10:04:02 +01002823EXTENSIBLE FIRMWARE INTERFACE (EFI)
2824M: Matt Fleming <matt.fleming@intel.com>
2825L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002826T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002827S: Maintained
2828F: Documentation/x86/efi-stub.txt
2829F: arch/ia64/kernel/efi.c
2830F: arch/x86/boot/compressed/eboot.[ch]
2831F: arch/x86/include/asm/efi.h
2832F: arch/x86/platform/efi/*
2833F: drivers/firmware/efivars.c
2834F: include/linux/efi*.h
2835
Peter Jones85a00d9b2010-09-22 13:05:04 -07002836EFIFB FRAMEBUFFER DRIVER
2837L: linux-fbdev@vger.kernel.org
2838M: Peter Jones <pjones@redhat.com>
2839S: Maintained
2840F: drivers/video/efifb.c
2841
Josh Triplett0bee8d22006-07-30 03:03:58 -07002842EFS FILESYSTEM
2843W: http://aeschi.ch.eu.org/efs/
2844S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002845F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002846
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002847EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002848M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2849M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002850L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002851S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002852F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002853
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002854EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002855M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002856L: netdev@vger.kernel.org
2857S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002858F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002859
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002860EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002861M: Paul Gortmaker <paul.gortmaker@windriver.com>
2862M: Matt Mackall <mpm@selenic.com>
2863M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002864L: linux-embedded@vger.kernel.org
2865S: Maintained
2866
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002867EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002868M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002869L: linux-scsi@vger.kernel.org
2870W: http://sourceforge.net/projects/lpfcxxxx
2871S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002872F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002873
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002874ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002875M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002876S: Maintained
2877F: drivers/misc/cb710/
2878F: drivers/mmc/host/cb710-mmc.*
2879F: include/linux/cb710.h
2880
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002881ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2882M: Maxim Levitsky <maximlevitsky@gmail.com>
2883S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002884F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002885
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002887M: Christopher Hoover <ch@murgatroid.com>
2888M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002890F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002892EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002893M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002894S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002895T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002896F: drivers/video/s1d13xxxfb.c
2897F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002898
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002900M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002901L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002903F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904
2905ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002906M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002907L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002908L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002909W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002911F: include/linux/netfilter_bridge/
2912F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
2914ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002915M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002917F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
2919EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002920M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002921L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002923F: Documentation/filesystems/ext2.txt
2924F: fs/ext2/
2925F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926
2927EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002928M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002929M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002930M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002931L: linux-ext4@vger.kernel.org
2932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002933F: Documentation/filesystems/ext3.txt
2934F: fs/ext3/
2935F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002936
2937EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002938M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002939M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002940L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002941W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002942Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002944F: Documentation/filesystems/ext4.txt
2945F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946
Mimi Zoharc5532b02011-08-17 18:52:24 -04002947Extended Verification Module (EVM)
2948M: Mimi Zohar <zohar@us.ibm.com>
2949S: Supported
2950F: security/integrity/evm/
2951
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09002952EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
2953M: MyungJoo Ham <myungjoo.ham@samsung.com>
2954M: Chanwoo Choi <cw00.choi@samsung.com>
2955L: linux-kernel@vger.kernel.org
2956S: Maintained
2957F: drivers/extcon/
2958F: Documentation/extcon/
2959
Jingoo Han0a79951a2012-02-06 11:30:39 +09002960EXYNOS DP DRIVER
2961M: Jingoo Han <jg1.han@samsung.com>
2962L: linux-fbdev@vger.kernel.org
2963S: Maintained
2964F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07002965F: include/video/exynos_dp*
Jingoo Han0a79951a2012-02-06 11:30:39 +09002966
Donghwa Lee33ad3912012-03-06 11:44:58 +09002967EXYNOS MIPI DISPLAY DRIVERS
2968M: Inki Dae <inki.dae@samsung.com>
2969M: Donghwa Lee <dh09.lee@samsung.com>
2970M: Kyungmin Park <kyungmin.park@samsung.com>
2971L: linux-fbdev@vger.kernel.org
2972S: Maintained
2973F: drivers/video/exynos/exynos_mipi*
2974F: include/video/exynos_mipi*
2975
Jean Delvaree53004e2006-01-09 23:26:14 +01002976F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002977M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002978L: lm-sensors@lm-sensors.org
2979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002980F: Documentation/hwmon/f71805f
2981F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002982
Michael Büscheea977e2012-04-02 12:14:32 -03002983FC0011 TUNER DRIVER
2984M: Michael Buesch <m@bues.ch>
2985L: linux-media@vger.kernel.org
2986S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03002987F: drivers/media/tuners/fc0011.h
2988F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03002989
Antti Palosaari91952bc2012-10-01 12:28:46 -03002990FC2580 MEDIA DRIVER
2991M: Antti Palosaari <crope@iki.fi>
2992L: linux-media@vger.kernel.org
2993W: http://linuxtv.org/
2994W: http://palosaari.fi/linux/
2995Q: http://patchwork.linuxtv.org/project/linux-media/list/
2996T: git git://linuxtv.org/anttip/media_tree.git
2997S: Maintained
2998F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999
Eric Paris88b2dbd2010-08-18 12:25:50 -04003000FANOTIFY
3001M: Eric Paris <eparis@redhat.com>
3002S: Maintained
3003F: fs/notify/fanotify/
3004F: include/linux/fanotify.h
3005
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003007M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008W: http://www.farsite.co.uk/
3009S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003010F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011
Akinobu Mitac5408b82007-04-23 14:41:20 -07003012FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003013M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003014S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003015F: Documentation/fault-injection/
3016F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003017
Robert Lovecae727d2010-02-16 12:16:00 -08003018FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3019M: Robert Love <robert.w.love@intel.com>
3020L: devel@open-fcoe.org
3021W: www.Open-FCoE.org
3022S: Supported
3023F: drivers/scsi/libfc/
3024F: drivers/scsi/fcoe/
3025F: include/scsi/fc/
3026F: include/scsi/libfc.h
3027F: include/scsi/libfcoe.h
3028
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003029FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003030M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003031L: linux-fsdevel@vger.kernel.org
3032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003033F: include/linux/fcntl.h
3034F: include/linux/fs.h
3035F: fs/fcntl.c
3036F: fs/locks.c
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003037
3038FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003039M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003040L: linux-fsdevel@vger.kernel.org
3041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003042F: fs/*
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003043
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003044FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003045M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003046L: lm-sensors@lm-sensors.org
3047S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003048F: drivers/hwmon/f75375s.c
3049F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003050
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003051FIREWIRE AUDIO DRIVERS
3052M: Clemens Ladisch <clemens@ladisch.de>
3053L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3054T: git git://git.alsa-project.org/alsa-kernel.git
3055S: Maintained
3056F: sound/firewire/
3057
Chris Boota511ce32012-04-14 17:50:35 -07003058FIREWIRE SBP-2 TARGET
3059M: Chris Boot <bootc@bootc.net>
3060L: linux-scsi@vger.kernel.org
3061L: target-devel@vger.kernel.org
3062L: linux1394-devel@lists.sourceforge.net
3063T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3064S: Maintained
3065F: drivers/target/sbp/
3066
Joe Perches7d2c86b2009-04-07 20:59:01 -07003067FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003068M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003069L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003070W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003071T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003073F: drivers/firewire/
3074F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003075F: tools/firewire/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003076
3077FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003078M: Ming Lei <ming.lei@canonical.com>
3079L: linux-kernel@vger.kernel.org
3080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003081F: Documentation/firmware_class/
3082F: drivers/base/firmware*.c
3083F: include/linux/firmware.h
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003084
Jiri Kosina8206f662012-05-18 13:52:29 +02003085FLOPPY DRIVER
3086M: Jiri Kosina <jkosina@suse.cz>
3087T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3088S: Odd fixes
3089F: drivers/block/floppy.c
3090
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003091FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003092M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003093W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003095F: arch/x86/math-emu/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003096
3097FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003098L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003099S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003100F: drivers/net/wan/dlci.c
3101F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003102
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003104M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003105L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003107Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003108T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003110F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003111F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003112F: drivers/video/
3113F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003114F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115
Zhang Wei173acc72008-03-01 07:42:48 -07003116FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003117M: Li Yang <leoli@freescale.com>
3118M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003119L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003121F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003122
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003123FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003124M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003125L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003126L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003128F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003129
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003130FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003131M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003132L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003133L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003135F: arch/arm/plat-mxc/include/mach/imxfb.h
3136F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003137
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003138FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003139M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3140M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003141L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003142L: netdev@vger.kernel.org
3143S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003144F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003145F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003146
Timur Tabid9e9d822008-04-24 08:45:26 +10003147FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003148M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003149L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003150S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003151F: arch/powerpc/sysdev/qe_lib/
3152F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003153
Joe Perchesb55ef9292009-10-26 16:49:46 -07003154FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003155M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003156L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003157L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003158S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003159F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003160
Li Yangbeaf53b2007-05-25 13:54:02 +08003161FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003162M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003163L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003164L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003165S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003166F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003167
Timur Tabid9e9d822008-04-24 08:45:26 +10003168FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003169M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003170L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003171S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003172F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003173
3174FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003175M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003176L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003177L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003178S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003179F: sound/soc/fsl/fsl*
3180F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003181
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003183M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003186F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187
Pavel Machek71038f52009-01-15 13:51:02 -08003188FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003189M: Pavel Machek <pavel@ucw.cz>
3190M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003191L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003192S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003193F: Documentation/power/freezing-of-tasks.txt
3194F: include/linux/freezer.h
3195F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003196
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003197FRONTSWAP API
3198M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3199L: linux-kernel@vger.kernel.org
3200S: Maintained
3201F: mm/frontswap.c
3202F: include/linux/frontswap.h
3203
David Howellsa5432f5a2009-04-20 15:46:45 +01003204FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003205M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01003206L: linux-cachefs@redhat.com
3207S: Supported
3208F: Documentation/filesystems/caching/
3209F: fs/fscache/
3210F: include/linux/fscache*.h
3211
David Howells5ab7ffe2007-04-10 15:10:45 +01003212FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003213M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003215F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
Jonathan Woithe20b93732008-06-11 10:14:56 +09303217FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303218M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd09448532010-02-11 10:40:13 -05003219L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003221F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303222
Heungjun Kim4da621b62011-11-11 08:05:33 -03003223FUJITSU M-5MO LS CAMERA ISP DRIVER
3224M: Kyungmin Park <kyungmin.park@samsung.com>
3225M: Heungjun Kim <riverful.kim@samsung.com>
3226L: linux-media@vger.kernel.org
3227S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003228F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b62011-11-11 08:05:33 -03003229F: include/media/m5mols.h
3230
Robert Gerlach2d24c492012-01-18 14:26:22 +01003231FUJITSU TABLET EXTRAS
3232M: Robert Gerlach <khnz@gmx.de>
3233L: platform-driver-x86@vger.kernel.org
3234S: Maintained
3235F: drivers/platform/x86/fujitsu-tablet.c
3236
Miklos Szeredi04578f12005-09-09 13:10:22 -07003237FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003238M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003239L: fuse-devel@lists.sourceforge.net
3240W: http://fuse.sourceforge.net/
3241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003242F: fs/fuse/
3243F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003244
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003246M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003248S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003249F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250
3251GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003252M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253L: linux-scsi@vger.kernel.org
3254W: http://www.icp-vortex.com/
3255S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003256F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003258GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003259M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003261F: drivers/i2c/busses/i2c-gpio.c
3262F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003263
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003264GENERIC GPIO I2C MULTIPLEXER DRIVER
3265M: Peter Korsgaard <peter.korsgaard@barco.com>
3266L: linux-i2c@vger.kernel.org
3267S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003268F: drivers/i2c/muxes/i2c-mux-gpio.c
3269F: include/linux/i2c-mux-gpio.h
3270F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003271
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003272GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003273M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003276F: drivers/net/wan/c101.c
3277F: drivers/net/wan/hd6457*
3278F: drivers/net/wan/hdlc*
3279F: drivers/net/wan/n2.c
3280F: drivers/net/wan/pc300too.c
3281F: drivers/net/wan/pci200syn.c
3282F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003284GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003285M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003286L: linux-arch@vger.kernel.org
3287T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3288S: Maintained
3289F: include/asm-generic
3290
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003291GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003292M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003293L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003294S: Supported
3295F: drivers/uio/uio_pci_generic.c
3296
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003297GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003298M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003299L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003300W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003301T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3302T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003303S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003304F: Documentation/filesystems/gfs2*.txt
3305F: fs/gfs2/
3306F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003307
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003308GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003309M: Hansjoerg Lipp <hjlipp@web.de>
3310M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003311L: gigaset307x-common@lists.sourceforge.net
3312W: http://gigaset307x.sourceforge.net/
3313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003314F: Documentation/isdn/README.gigaset
3315F: drivers/isdn/gigaset/
3316F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003317
Grant Likelya0dc00b2011-02-12 01:48:14 -07003318GPIO SUBSYSTEM
3319M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003320M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003321S: Maintained
3322T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003323F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003324F: drivers/gpio/
3325F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003326F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003327
Harry Wei71a6d0a2011-05-11 15:13:33 -07003328GRE DEMULTIPLEXER DRIVER
3329M: Dmitry Kozlov <xeb@mail.ru>
3330L: netdev@vger.kernel.org
3331S: Maintained
3332F: net/ipv4/gre.c
3333F: include/net/gre.h
3334
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003335GRETH 10/100/1G Ethernet MAC device driver
3336M: Kristoffer Glembo <kristoffer@gaisler.com>
3337L: netdev@vger.kernel.org
3338S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003339F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003340
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003341GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003342M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003343L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003344T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003345S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003346F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003347
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003348GSPCA GL860 SUBDRIVER
3349M: Olivier Lorin <o.lorin@laposte.net>
3350L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003351T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003352S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003353F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003354
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003355GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003356M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003357L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003358T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003359S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003360F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003361
3362GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003363M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003364L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003365T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003366S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003367F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003368
Brian Johnson261982f2009-07-19 15:58:56 -03003369GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003370M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003371L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003372T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Brian Johnson261982f2009-07-19 15:58:56 -03003373S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003374F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003375
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003376GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003377M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003378L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003379T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003380S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003381F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003382
3383GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003384M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003385L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003386T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003387S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003388F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003389
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003390STK1160 USB VIDEO CAPTURE DRIVER
3391M: Ezequiel Garcia <elezegarcia@gmail.com>
3392L: linux-media@vger.kernel.org
3393T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3394S: Maintained
3395F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003396
Harry Wei71a6d0a2011-05-11 15:13:33 -07003397HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3398M: Frank Seidel <frank@f-seidel.de>
3399L: platform-driver-x86@vger.kernel.org
3400W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3401S: Maintained
3402F: drivers/platform/x86/hdaps.c
3403
3404HWPOISON MEMORY FAILURE HANDLING
3405M: Andi Kleen <andi@firstfloor.org>
3406L: linux-mm@kvack.org
3407T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3408S: Maintained
3409F: mm/memory-failure.c
3410F: mm/hwpoison-inject.c
3411
3412HYPERVISOR VIRTUAL CONSOLE DRIVER
3413L: linuxppc-dev@lists.ozlabs.org
3414S: Odd Fixes
3415F: drivers/tty/hvc/
3416
Michael Buesch844dd052006-06-26 00:24:59 -07003417HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003418M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003419M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003420L: lm-sensors@lm-sensors.org
3421W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003422T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003423T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003424S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003425F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003426F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003427F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003428
3429HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003430M: Matt Mackall <mpm@selenic.com>
3431M: Herbert Xu <herbert@gondor.apana.org.au>
3432S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003433F: Documentation/hw_random.txt
3434F: drivers/char/hw_random/
3435F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003436
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003437HARDWARE SPINLOCK CORE
3438M: Ohad Ben-Cohen <ohad@wizery.com>
3439S: Maintained
3440F: Documentation/hwspinlock.txt
3441F: drivers/hwspinlock/hwspinlock_*
3442F: include/linux/hwspinlock.h
3443
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003445L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003447F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448
Antti Palosaari91952bc2012-10-01 12:28:46 -03003449HD29L2 MEDIA DRIVER
3450M: Antti Palosaari <crope@iki.fi>
3451L: linux-media@vger.kernel.org
3452W: http://linuxtv.org/
3453W: http://palosaari.fi/linux/
3454Q: http://patchwork.linuxtv.org/project/linux-media/list/
3455T: git git://linuxtv.org/anttip/media_tree.git
3456S: Maintained
3457F: drivers/media/dvb-frontends/hd29l2*
3458
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003459HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003460M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003461L: iss_storagedev@hp.com
3462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003463F: Documentation/blockdev/cpqarray.txt
3464F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003465
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003466HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003467M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003468L: iss_storagedev@hp.com
3469S: Supported
3470F: Documentation/scsi/hpsa.txt
3471F: drivers/scsi/hpsa*.[ch]
3472F: include/linux/cciss*.h
3473
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003474HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003475M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003476L: iss_storagedev@hp.com
3477S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003478F: Documentation/blockdev/cciss.txt
3479F: drivers/block/cciss*
3480F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003481
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003483L: linux-fsdevel@vger.kernel.org
3484S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003485F: Documentation/filesystems/hfs.txt
3486F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487
3488HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003489M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490L: linux-nvidia@lists.surfsouth.com
3491W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003493F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003495HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003496M: Pavel Machek <pavel@ucw.cz>
3497M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003498L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003499S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003500F: arch/x86/power/
3501F: drivers/base/power/
3502F: kernel/power/
3503F: include/linux/suspend.h
3504F: include/linux/freezer.h
3505F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003506F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003507
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003508HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003509M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003510L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003511T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003513F: drivers/hid/
3514F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003515
Ingo Molnar38bed542007-02-22 09:09:34 +01003516HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003517M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003518T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003520F: Documentation/timers/
3521F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003522F: kernel/time/clockevents.c
3523F: kernel/time/tick*.*
3524F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003525F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003526F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003527
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003530S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003531F: drivers/net/hamradio/dmascc.c
3532F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003534HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003535M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003536W: http://www.highpoint-tech.com
3537S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003538F: Documentation/scsi/hptiop.txt
3539F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003540
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003542M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543L: linux-hippi@sunsite.dk
3544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003545F: include/linux/hippidevice.h
3546F: include/linux/if_hippi.h
3547F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003548F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549
Jouni Malinenff1d2762005-05-12 22:54:16 -04003550HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003551M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003552L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003553L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003554W: http://hostap.epitest.fi/
3555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003556F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003557
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003558HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05003559L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003560S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003561F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003562
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003563HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003564M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003565S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003566F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003567
Joe Perches7d2c86b2009-04-07 20:59:01 -07003568HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003569M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003571F: Documentation/timers/hpet.txt
3572F: drivers/char/hpet.c
3573F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003574
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003575HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003576M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003578F: arch/x86/kernel/hpet.c
3579F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003580
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003582M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003585F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586
Joe Perches7d2c86b2009-04-07 20:59:01 -07003587HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003588M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003589W: http://www.pharscape.org
3590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003591F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003592
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003593HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003594M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003595L: linux-input@vger.kernel.org
3596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003597F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003598
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003600M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003602F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003604Hyper-V CORE AND DRIVERS
3605M: K. Y. Srinivasan <kys@microsoft.com>
3606M: Haiyang Zhang <haiyangz@microsoft.com>
3607L: devel@linuxdriverproject.org
3608S: Maintained
3609F: drivers/hv/
3610F: drivers/hid/hid-hyperv.c
3611F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003612
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003613I2C OVER PARALLEL PORT
3614M: Jean Delvare <khali@linux-fr.org>
3615L: linux-i2c@vger.kernel.org
3616S: Maintained
3617F: Documentation/i2c/busses/i2c-parport
3618F: Documentation/i2c/busses/i2c-parport-light
3619F: drivers/i2c/busses/i2c-parport.c
3620F: drivers/i2c/busses/i2c-parport-light.c
3621
3622I2C/SMBUS CONTROLLER DRIVERS FOR PC
3623M: Jean Delvare <khali@linux-fr.org>
3624L: linux-i2c@vger.kernel.org
3625S: Maintained
3626F: Documentation/i2c/busses/i2c-ali1535
3627F: Documentation/i2c/busses/i2c-ali1563
3628F: Documentation/i2c/busses/i2c-ali15x3
3629F: Documentation/i2c/busses/i2c-amd756
3630F: Documentation/i2c/busses/i2c-amd8111
3631F: Documentation/i2c/busses/i2c-i801
3632F: Documentation/i2c/busses/i2c-nforce2
3633F: Documentation/i2c/busses/i2c-piix4
3634F: Documentation/i2c/busses/i2c-sis5595
3635F: Documentation/i2c/busses/i2c-sis630
3636F: Documentation/i2c/busses/i2c-sis96x
3637F: Documentation/i2c/busses/i2c-via
3638F: Documentation/i2c/busses/i2c-viapro
3639F: drivers/i2c/busses/i2c-ali1535.c
3640F: drivers/i2c/busses/i2c-ali1563.c
3641F: drivers/i2c/busses/i2c-ali15x3.c
3642F: drivers/i2c/busses/i2c-amd756.c
3643F: drivers/i2c/busses/i2c-amd756-s4882.c
3644F: drivers/i2c/busses/i2c-amd8111.c
3645F: drivers/i2c/busses/i2c-i801.c
3646F: drivers/i2c/busses/i2c-isch.c
3647F: drivers/i2c/busses/i2c-nforce2.c
3648F: drivers/i2c/busses/i2c-nforce2-s4985.c
3649F: drivers/i2c/busses/i2c-piix4.c
3650F: drivers/i2c/busses/i2c-sis5595.c
3651F: drivers/i2c/busses/i2c-sis630.c
3652F: drivers/i2c/busses/i2c-sis96x.c
3653F: drivers/i2c/busses/i2c-via.c
3654F: drivers/i2c/busses/i2c-viapro.c
3655
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003656I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003657M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003658L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003660F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003661
Jean Delvare5b543962005-08-15 19:51:02 +02003662I2C SUBSYSTEM
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003663M: Wolfram Sang <w.sang@pengutronix.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003664M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003665L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003666W: http://i2c.wiki.kernel.org/
3667T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003668T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003670F: Documentation/i2c/
3671F: drivers/i2c/
3672F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003673F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003675I2C-TAOS-EVM DRIVER
3676M: Jean Delvare <khali@linux-fr.org>
3677L: linux-i2c@vger.kernel.org
3678S: Maintained
3679F: Documentation/i2c/busses/i2c-taos-evm
3680F: drivers/i2c/busses/i2c-taos-evm.c
3681
Till Harbaume8c76ee2007-05-01 23:26:35 +02003682I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003683M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003684L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003685W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003687F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003688
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003690M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003692F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693
3694i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003695M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003696T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697S: Maintained
3698
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003700M: Tony Luck <tony.luck@intel.com>
3701M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003703T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003705F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706
Kent Yoder956c2032012-09-07 04:17:01 +08003707IBM Power in-Nest Crypto Acceleration
3708M: Kent Yoder <key@linux.vnet.ibm.com>
3709L: linux-crypto@vger.kernel.org
3710S: Supported
3711F: drivers/crypto/nx/
3712
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003713IBM Power 842 compression accelerator
3714M: Robert Jennings <rcj@linux.vnet.ibm.com>
3715S: Supported
3716F: drivers/crypto/nx/nx-842.c
3717F: include/linux/nx842.h
3718
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003720M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003722F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723
Santiago Leon9d348af2010-09-03 18:29:53 +00003724IBM Power Virtual Ethernet Device Driver
3725M: Santiago Leon <santil@linux.vnet.ibm.com>
3726L: netdev@vger.kernel.org
3727S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003728F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003729
Robert Jennings4b7652c2012-07-31 12:34:36 -05003730IBM Power Virtual SCSI/FC Device Drivers
3731M: Robert Jennings <rcj@linux.vnet.ibm.com>
3732L: linux-scsi@vger.kernel.org
3733S: Supported
3734F: drivers/scsi/ibmvscsi/
3735X: drivers/scsi/ibmvscsi/ibmvstgt.c
3736
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737IBM ServeRAID RAID DRIVER
3738P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003739M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003741S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003742F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003744ICH LPC AND GPIO DRIVER
3745M: Peter Tyser <ptyser@xes-inc.com>
3746S: Maintained
3747F: drivers/mfd/lpc_ich.c
3748F: drivers/gpio/gpio-ich.c
3749
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003750IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003751M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003753Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003754T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003756F: Documentation/ide/
3757F: drivers/ide/
3758F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759
Ike Panhc6cb8c132011-08-25 22:28:45 +08003760IDEAPAD LAPTOP EXTRAS DRIVER
3761M: Ike Panhc <ike.pan@canonical.com>
3762L: platform-driver-x86@vger.kernel.org
3763W: http://launchpad.net/ideapad-laptop
3764S: Maintained
3765F: drivers/platform/x86/ideapad-laptop.c
3766
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003767IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003768M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003769L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003771F: Documentation/cdrom/ide-cd
3772F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773
Andy Henroid27471fd2008-10-09 11:45:22 -07003774IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003775M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003776L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003777S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003778F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003779
Sergey Lapin02cf2282009-06-08 12:18:50 +00003780IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003781M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003782M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003783L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003784W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003785T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003786S: Maintained
3787F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003788F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003789F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003790
Ameya Palande9545f862012-01-10 09:00:58 -08003791IIO SUBSYSTEM AND DRIVERS
3792M: Jonathan Cameron <jic23@cam.ac.uk>
3793L: linux-iio@vger.kernel.org
3794S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003795F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003796F: drivers/staging/iio/
3797
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003798IKANOS/ADI EAGLE ADSL USB DRIVER
3799M: Matthieu Castet <castet.matthieu@free.fr>
3800M: Stanislaw Gruszka <stf_xl@wp.pl>
3801S: Maintained
3802F: drivers/usb/atm/ueagle-atm.c
3803
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01003804INDUSTRY PACK SUBSYSTEM (IPACK)
3805M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
3806M: Jens Taprogge <jens.taprogge@taprogge.org>
3807M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3808L: industrypack-devel@lists.sourceforge.net
3809W: http://industrypack.sourceforge.net
3810S: Maintained
3811F: drivers/ipack/
3812
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003813INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003814M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003815S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003816F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003817
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003819L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003820S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003821F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822
3823INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003824M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003825M: Sean Hefty <sean.hefty@intel.com>
3826M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003827L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003828W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003829Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003830T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003832F: Documentation/infiniband/
3833F: drivers/infiniband/
3834F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835
Robert Lovec9f04f52005-07-15 12:21:07 -04003836INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003837M: John McCutchan <john@johnmccutchan.com>
3838M: Robert Love <rlove@rlove.org>
3839M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003841F: Documentation/filesystems/inotify.txt
3842F: fs/notify/inotify/
3843F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003844
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003845INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003846M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3847M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003848L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003849Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003850T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003852F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003853F: include/linux/input.h
3854F: include/linux/input/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07003855
Henrik Rydberg3267a872010-06-24 19:10:40 -07003856INPUT MULTITOUCH (MT) PROTOCOL
3857M: Henrik Rydberg <rydberg@euromail.se>
3858L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003859T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003860S: Maintained
3861F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003862F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003863K: \b(ABS|SYN)_MT_
3864
Dave Jiang4ac13e12011-07-29 17:16:55 -07003865INTEL C600 SERIES SAS CONTROLLER DRIVER
3866M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003867M: Lukasz Dorau <lukasz.dorau@intel.com>
3868M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003869M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003870L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003871T: git git://git.code.sf.net/p/intel-sas/isci
3872S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003873F: drivers/scsi/isci/
3874F: firmware/isci/
3875
Len Brown26717172010-03-08 14:07:30 -05003876INTEL IDLE DRIVER
3877M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003878L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003879T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003880S: Supported
3881F: drivers/idle/intel_idle.c
3882
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003883INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003884M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003885L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003887F: Documentation/fb/intelfb.txt
3888F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003889
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003891M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003892L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003894F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303896INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003897M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05003898L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303899W: http://www.lesswatts.org/projects/acpi/
3900S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003901F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303902
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003904M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003906F: arch/x86/kernel/microcode_core.c
3907F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003909INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003910M: Dan Williams <djbw@fb.com>
3911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003912F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003913
David Woodhouse6c8909b2008-10-18 16:12:17 +01003914INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003915M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003916L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003917T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003918S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003919F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07003920F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003921
Dan Williamsb3e5f262007-08-07 10:26:35 -07003922INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003923M: Dan Williams <djbw@fb.com>
3924S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003925F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003926
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003927INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003928M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003929S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003930F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3931F: arch/arm/mach-ixp4xx/include/mach/npe.h
3932F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3933F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07003934F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07003935F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003936
Michael Buesch844dd052006-06-26 00:24:59 -07003937INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003938M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003940F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003941
Jeff Kirsher0d164402010-10-05 01:15:17 +00003942INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003943M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3944M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3945M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003946M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3947M: Don Skidmore <donald.c.skidmore@intel.com>
3948M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003949M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003950M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003951M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003952L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003953W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003954T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
3955T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00003957F: Documentation/networking/e100.txt
3958F: Documentation/networking/e1000.txt
3959F: Documentation/networking/e1000e.txt
3960F: Documentation/networking/igb.txt
3961F: Documentation/networking/igbvf.txt
3962F: Documentation/networking/ixgb.txt
3963F: Documentation/networking/ixgbe.txt
3964F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003965F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966
Len Brown6dccf9c2011-07-12 22:29:32 -04003967INTEL MRST PMU DRIVER
3968M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003969L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04003970S: Supported
3971F: arch/x86/platform/mrst/pmu.*
3972
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003973INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
3974M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07003975L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003977F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07003978F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003979F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06003980
Shane Wang4bd96a72010-03-10 14:36:10 +08003981INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07003982M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
3983M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08003984M: Shane Wang <shane.wang@intel.com>
3985L: tboot-devel@lists.sourceforge.net
3986W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07003987T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08003988S: Supported
3989F: Documentation/intel_txt.txt
3990F: include/linux/tboot.h
3991F: arch/x86/kernel/tboot.c
3992
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003993INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003994M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003995M: linux-wimax@intel.com
3996L: wimax@linuxwimax.org
3997S: Supported
3998W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003999F: Documentation/wimax/README.i2400m
4000F: drivers/net/wimax/i2400m/
4001F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004002
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004003INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4004M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004005L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004006S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004007F: drivers/net/wireless/iwlegacy/
4008
Zhu Yib481de92007-09-25 17:54:57 -07004009INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004010M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004011M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004012M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004013L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004014W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07004015T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004016S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004017F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004018
Tomas Winklerde8fe022012-05-09 16:39:02 +03004019INTEL MANAGEMENT ENGINE (mei)
4020M: Tomas Winkler <tomas.winkler@intel.com>
4021L: linux-kernel@vger.kernel.org
4022S: Supported
4023F: include/linux/mei.h
4024F: drivers/misc/mei/*
4025F: Documentation/mei/*
4026
Ralf Baechlecb109a02007-08-30 23:56:30 -07004027IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004028M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029L: linux-mips@linux-mips.org
4030S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004031F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032
Ralf Baechlecb109a02007-08-30 23:56:30 -07004033IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004034M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004035L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004036S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004037F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004038
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004039IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004040M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004042F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043
Francois Romieu1202d6f2007-09-17 17:13:55 -07004044IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004045M: Francois Romieu <romieu@fr.zoreil.com>
4046M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004047L: netdev@vger.kernel.org
4048S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004049F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004050
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004051IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004052M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004053L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004055F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004056
Corey Minyard4409ebe2006-04-20 02:43:12 -07004057IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004058M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004059L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004060W: http://openipmi.sourceforge.net/
4061S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004062F: Documentation/IPMI.txt
4063F: drivers/char/ipmi/
4064F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004065
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07004066IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004067M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07004068L: linux-scsi@vger.kernel.org
4069W: http://www.adaptec.com/
4070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004071F: drivers/scsi/ips*
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07004072
4073IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004074M: Wensong Zhang <wensong@linux-vs.org>
4075M: Simon Horman <horms@verge.net.au>
4076M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004077L: netdev@vger.kernel.org
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07004078L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004080F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004081F: include/net/ip_vs.h
4082F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004083F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084
Randy Dunlape7839f22008-10-12 16:11:45 -07004085IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004086M: Jiri Kosina <jkosina@suse.cz>
4087M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004088S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004089F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004090
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07004091IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004092M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07004093L: netdev@vger.kernel.org
4094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004095F: include/linux/ipx.h
4096F: include/net/ipx.h
4097F: net/ipx/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07004098
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004100M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004101L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004102L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004104S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004105T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004106F: Documentation/networking/irda.txt
4107F: drivers/net/irda/
4108F: include/net/irda/
4109F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004111IRQ SUBSYSTEM
4112M: Thomas Gleixner <tglx@linutronix.de>
4113S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004114T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004115F: kernel/irq/
4116
Grant Likely7ab3a832012-02-14 14:06:47 -07004117IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4118M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4119M: Grant Likely <grant.likely@secretlab.ca>
4120T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4121S: Maintained
4122F: Documentation/IRQ-domain.txt
4123F: include/linux/irqdomain.h
4124F: kernel/irq/irqdomain.c
4125
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07004126ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004127M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07004128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004129F: Documentation/isapnp.txt
4130F: drivers/pnp/isapnp/
4131F: include/linux/isapnp.h
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07004132
Harry Wei71a6d0a2011-05-11 15:13:33 -07004133iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4134M: Peter Jones <pjones@redhat.com>
4135M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4136S: Maintained
4137F: drivers/firmware/iscsi_ibft*
4138
Mike Christie14816b1e2007-11-28 16:22:06 -08004139ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004140M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004141L: open-iscsi@googlegroups.com
4142W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004143T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004145F: drivers/scsi/*iscsi*
4146F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004147
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004149M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004150L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004151L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004153T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004155F: Documentation/isdn/
4156F: drivers/isdn/
4157F: include/linux/isdn.h
4158F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159
4160ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004161M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004162L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163W: http://www.melware.de
4164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004165F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166
Jean Delvared6248702010-03-05 22:17:20 +01004167IT87 HARDWARE MONITORING DRIVER
4168M: Jean Delvare <khali@linux-fr.org>
4169L: lm-sensors@lm-sensors.org
4170S: Maintained
4171F: Documentation/hwmon/it87
4172F: drivers/hwmon/it87.c
4173
Hans Verkuil91821ff2007-12-02 09:35:33 -03004174IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004175M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004176L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004177L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004178T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004179W: http://www.ivtvdriver.org
4180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004181F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004182F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004183F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004184
Guenter Roeck4453d732010-08-09 17:21:08 -07004185JC42.4 TEMPERATURE SENSOR DRIVER
4186M: Guenter Roeck <linux@roeck-us.net>
4187L: lm-sensors@lm-sensors.org
4188S: Maintained
4189F: drivers/hwmon/jc42.c
4190F: Documentation/hwmon/jc42
4191
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07004192JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004193M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07004194L: jfs-discussion@lists.sourceforge.net
4195W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004196T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004198F: Documentation/filesystems/jfs.txt
4199F: fs/jfs/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07004200
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004201JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004202M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004203L: netdev@vger.kernel.org
4204S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004205F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004206
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004208M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004209L: linux-mtd@lists.infradead.org
4210W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004212F: fs/jffs2/
4213F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214
Josh Triplettde456d32006-07-30 03:04:00 -07004215JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004216M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004217M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004218L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004219S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004220F: fs/jbd/
4221F: include/linux/ext3_jbd.h
4222F: include/linux/jbd.h
4223
4224JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4225M: "Theodore Ts'o" <tytso@mit.edu>
4226L: linux-ext4@vger.kernel.org
4227S: Maintained
4228F: fs/jbd2/
4229F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004230
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004231JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004232M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004233L: linux-serial@vger.kernel.org
4234S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004235F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004236
Clemens Ladischaf399172011-01-10 16:32:54 +01004237K10TEMP HARDWARE MONITORING DRIVER
4238M: Clemens Ladisch <clemens@ladisch.de>
4239L: lm-sensors@lm-sensors.org
4240S: Maintained
4241F: Documentation/hwmon/k10temp
4242F: drivers/hwmon/k10temp.c
4243
Rudolf Marek4660cb32006-10-08 22:01:26 +02004244K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004245M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004246L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004248F: Documentation/hwmon/k8temp
4249F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250
4251KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004252M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004253L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004254S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004255F: Documentation/kbuild/kconfig-language.txt
4256F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257
Vivek Goyalea6c2082006-05-20 14:59:55 -07004258KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004259M: Vivek Goyal <vgoyal@redhat.com>
4260M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004261L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004262W: http://lse.sourceforge.net/kdump/
4263S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004264F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004265
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004267M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004268L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004270F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271
Michal Marek70fb7ba2010-01-29 14:22:43 +01004272KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004273M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004274T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4275T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004276L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004278F: Documentation/kbuild/
4279F: Makefile
4280F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004281F: scripts/basic/
4282F: scripts/mk*
4283F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284
4285KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004286L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004287W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004288S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004290KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004291M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004292L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293W: http://nfs.sourceforge.net/
NeilBrown98fac23f2007-01-26 00:56:57 -08004294S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004295F: fs/nfsd/
4296F: include/linux/nfsd/
4297F: fs/lockd/
4298F: fs/nfs_common/
4299F: net/sunrpc/
4300F: include/linux/lockd/
4301F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302
Avi Kivity426d62e2006-12-13 00:34:03 -08004303KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc82009-09-10 17:21:34 -03004304M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004305M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004306L: kvm@vger.kernel.org
4307W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004308S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004309F: Documentation/*/kvm.txt
4310F: arch/*/kvm/
4311F: arch/*/include/asm/kvm*
4312F: include/linux/kvm*
4313F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004314
Joerg Roedelad8003d2008-09-10 20:01:07 +02004315KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07004316M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004317L: kvm@vger.kernel.org
4318W: http://kvm.qumranet.com
4319S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004320F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004321F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004322
Hollis Blanchard513014b2008-04-16 23:28:08 -05004323KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004324M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004325L: kvm-ppc@vger.kernel.org
4326W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05004327S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004328F: arch/powerpc/include/asm/kvm*
4329F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004330
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004331KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004332M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004333L: kvm-ia64@vger.kernel.org
4334W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004335S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004336F: Documentation/ia64/kvm.txt
4337F: arch/ia64/include/asm/kvm*
4338F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004339
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004340KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004341M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004342M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004343M: linux390@de.ibm.com
4344L: linux-s390@vger.kernel.org
4345W: http://www.ibm.com/developerworks/linux/linux390/
4346S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004347F: Documentation/s390/kvm.txt
4348F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004349F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004350F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004351
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004352KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004353M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004354W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004355L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004357F: include/linux/kexec.h
4358F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004359
David Howellse9714612010-03-29 23:42:09 +01004360KEYS/KEYRINGS:
4361M: David Howells <dhowells@redhat.com>
4362L: keyrings@linux-nfs.org
4363S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004364F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004365F: include/linux/key.h
4366F: include/linux/key-type.h
4367F: include/keys/
4368F: security/keys/
4369
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004370KEYS-TRUSTED
4371M: David Safford <safford@watson.ibm.com>
4372M: Mimi Zohar <zohar@us.ibm.com>
4373L: linux-security-module@vger.kernel.org
4374L: keyrings@linux-nfs.org
4375S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004376F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004377F: include/keys/trusted-type.h
4378F: security/keys/trusted.c
4379F: security/keys/trusted.h
4380
4381KEYS-ENCRYPTED
4382M: Mimi Zohar <zohar@us.ibm.com>
4383M: David Safford <safford@watson.ibm.com>
4384L: linux-security-module@vger.kernel.org
4385L: keyrings@linux-nfs.org
4386S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004387F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004388F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004389F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004390
Jason Wessel5b778da2010-05-20 21:04:28 -05004391KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004392M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004393W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004394L: kgdb-bugreport@lists.sourceforge.net
4395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004396F: Documentation/DocBook/kgdb.tmpl
4397F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004398F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004399F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004400F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004401F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004402
Pekka Enberg456db8c2008-04-28 22:47:29 +03004403KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004404M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004405M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004406S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004407F: Documentation/kmemcheck.txt
4408F: arch/x86/include/asm/kmemcheck.h
4409F: arch/x86/mm/kmemcheck/
4410F: include/linux/kmemcheck.h
4411F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004412
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004413KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004414M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004415S: Maintained
4416F: Documentation/kmemleak.txt
4417F: include/linux/kmemleak.h
4418F: mm/kmemleak.c
4419F: mm/kmemleak-test.c
4420
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004421KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004422M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4423M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4424M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004425M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004427F: Documentation/kprobes.txt
4428F: include/linux/kprobes.h
4429F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004430
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004431KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004432M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004433W: http://miguelojeda.es/auxdisplay.htm
4434W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004436F: Documentation/auxdisplay/ks0108
4437F: drivers/auxdisplay/ks0108.c
4438F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004439
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004442S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004443F: Documentation/networking/lapb-module.txt
4444F: include/*/lapb.h
4445F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446
4447LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004448M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449L: linux-scsi@vger.kernel.org
4450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004451F: Documentation/scsi/53c700.txt
4452F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453
Richard Purdie263de9b2006-05-15 09:44:16 -07004454LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004455M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004456M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004457L: linux-leds@vger.kernel.org
4458T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004460F: drivers/leds/
4461F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004462
Jean Delvareb0461a42011-06-15 15:08:46 -07004463LEGACY EEPROM DRIVER
4464M: Jean Delvare <khali@linux-fr.org>
4465S: Maintained
4466F: Documentation/misc-devices/eeprom
4467F: drivers/misc/eeprom/eeprom.c
4468
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004470M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471L: legousb-devel@lists.sourceforge.net
4472W: http://legousb.sourceforge.net/
4473S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004474F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475
Michael Krufky055616a2012-10-02 00:56:06 -03004476LG2160 MEDIA DRIVER
4477M: Michael Krufky <mkrufky@linuxtv.org>
4478L: linux-media@vger.kernel.org
4479W: http://linuxtv.org/
4480W: http://github.com/mkrufky
4481Q: http://patchwork.linuxtv.org/project/linux-media/list/
4482T: git git://linuxtv.org/mkrufky/tuners.git
4483S: Maintained
4484F: drivers/media/dvb-frontends/lg2160.*
4485
Michael Krufky6f0e7722012-10-02 00:56:00 -03004486LGDT3305 MEDIA DRIVER
4487M: Michael Krufky <mkrufky@linuxtv.org>
4488L: linux-media@vger.kernel.org
4489W: http://linuxtv.org/
4490W: http://github.com/mkrufky
4491Q: http://patchwork.linuxtv.org/project/linux-media/list/
4492T: git git://linuxtv.org/mkrufky/tuners.git
4493S: Maintained
4494F: drivers/media/dvb-frontends/lgdt3305.*
4495
Rusty Russell568a17f2007-10-25 14:12:24 +10004496LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004497M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004498L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004499W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004500S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004501F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004502F: arch/x86/lguest/
4503F: drivers/lguest/
4504F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004505F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004506
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004508M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509W: http://www.ibm.com/linux/ltc/projects/ppc
4510S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004511F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004513LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004514M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4515M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004517L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004518Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004519T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004521F: Documentation/powerpc/
4522F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523
4524LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004525M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004527L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004529F: arch/powerpc/platforms/powermac/
4530F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531
Grant Likely77a76362008-07-12 12:11:43 -06004532LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004533M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004534L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004535T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004537F: arch/powerpc/platforms/512x/
4538F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539
4540LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004541M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004542M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004544L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004545T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004547F: arch/powerpc/platforms/40x/
4548F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549
Grant Likely260c02a2007-10-02 12:15:34 +10004550LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004551M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004552W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004553L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004554T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004556F: arch/powerpc/*/*virtex*
4557F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558
Tom Rinie93adf12005-07-26 12:49:53 -07004559LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004560M: Vitaly Bordug <vitb@kernel.crashing.org>
4561M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004562W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004563L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004564S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004565F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004566
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004568M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004569W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004570L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004571S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004572F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004573F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574
Olof Johanssonab06ff32006-09-06 14:44:54 -05004575LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004576M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004577L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004578S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004579F: arch/powerpc/platforms/pasemi/
4580F: drivers/*/*pasemi*
4581F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004582
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004584M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004585L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586S: Supported
4587
Harry Weia23ce6d2011-02-11 16:52:20 +01004588LIS3LV02D ACCELEROMETER DRIVER
4589M: Eric Piel <eric.piel@tremplin-utc.net>
4590S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004591F: Documentation/misc-devices/lis3lv02d
4592F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004593F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004594
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07004595LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004596M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07004597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004598F: include/linux/llc.h
4599F: include/net/llc*
4600F: net/llc/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07004601
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004602LM73 HARDWARE MONITOR DRIVER
4603M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4604L: lm-sensors@lm-sensors.org
4605S: Maintained
4606F: drivers/hwmon/lm73.c
4607
Jean Delvare156e2d12011-07-25 21:46:11 +02004608LM78 HARDWARE MONITOR DRIVER
4609M: Jean Delvare <khali@linux-fr.org>
4610L: lm-sensors@lm-sensors.org
4611S: Maintained
4612F: Documentation/hwmon/lm78
4613F: drivers/hwmon/lm78.c
4614
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004616M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004617L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004619F: Documentation/hwmon/lm83
4620F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621
4622LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004623M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004624L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004626F: Documentation/hwmon/lm90
4627F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004629LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004630M: Peter Zijlstra <peterz@infradead.org>
4631M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004632T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004634F: Documentation/lockdep*.txt
4635F: Documentation/lockstat.txt
4636F: include/linux/lockdep.h
4637F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004638
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004639LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004640M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004641L: linux-ntfs-dev@lists.sourceforge.net
4642W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004644F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004645F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646
Joern Engelef6ada32009-11-20 22:17:12 +01004647LogFS
4648M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304649M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004650L: logfs@logfs.org
4651W: logfs.org
4652S: Maintained
4653F: fs/logfs/
4654
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004655LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004656M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004657M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004658L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004659L: linux-scsi@vger.kernel.org
4660W: http://www.lsilogic.com/support
4661S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004662F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004663
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004665M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666L: linux-scsi@vger.kernel.org
4667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004668F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669
Guenter Roecke5f5c992010-06-25 11:59:54 -07004670LTC4261 HARDWARE MONITOR DRIVER
4671M: Guenter Roeck <linux@roeck-us.net>
4672L: lm-sensors@lm-sensors.org
4673S: Maintained
4674F: Documentation/hwmon/ltc4261
4675F: drivers/hwmon/ltc4261.c
4676
Mike Frysinger81365c32008-10-29 14:01:12 -07004677LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004678M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004679M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004680M: Cyril Hrubis <chrubis@suse.cz>
4681M: Caspar Zhang <caspar@casparzhang.com>
4682M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004683L: ltp-list@lists.sourceforge.net (subscribers-only)
4684W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004685T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004686T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004687S: Maintained
4688
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004689M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004690M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004691L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004692L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4693W: http://www.linux-m32r.org/
4694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004695F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004696
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004698M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699L: linux-m68k@lists.linux-m68k.org
4700W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004701T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004703F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004704F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705
4706M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004707M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004709L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004711F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712
4713M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004714M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715W: http://www.tazenda.demon.co.uk/phil/linux-hp
4716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004717F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718
Jiri Benc64a327a2007-05-05 11:47:08 -07004719MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004720M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004721L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004722W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004723T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4724T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004726F: Documentation/networking/mac80211-injection.txt
4727F: include/net/mac80211.h
4728F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004729
Stefano Brivio1036d862007-12-23 04:46:27 +01004730MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004731M: Stefano Brivio <stefano.brivio@polimi.it>
4732M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004733L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004734W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004735T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4736T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004737S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004738F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004739
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004740MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004741M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004742L: netdev@vger.kernel.org
4743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004744F: drivers/net/macvlan.c
4745F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004746
Michael Kerriskfaf16682005-07-31 22:34:47 -07004747MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004748M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004749W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004750L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004751S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004752
stephen hemminger44c14c12012-04-02 12:59:47 +00004753MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4754M: Mirko Lindner <mlindner@marvell.com>
4755M: Stephen Hemminger <shemminger@vyatta.com>
4756L: netdev@vger.kernel.org
4757S: Maintained
4758F: drivers/net/ethernet/marvell/sk*
4759
Stefano Brivio74cda162007-11-19 20:27:46 +01004760MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004761M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004762L: libertas-dev@lists.infradead.org
4763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004764F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004765
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004766MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004767M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004768L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004769S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004770F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004771F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772
Bing Zhaofcad5842011-07-13 13:11:58 -07004773MARVELL MWIFIEX WIRELESS DRIVER
4774M: Bing Zhao <bzhao@marvell.com>
4775L: linux-wireless@vger.kernel.org
4776S: Maintained
4777F: drivers/net/wireless/mwifiex/
4778
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004779MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004780M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004781L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004782S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004783F: drivers/net/wireless/mwl8k.c
4784
Pierre Ossman2a695672009-03-16 19:52:26 +01004785MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004786M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004787S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004788F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004789
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004791L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004792S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004793F: drivers/video/matrox/matroxfb_*
4794F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795
Guenter Roeckca462082012-06-01 23:28:23 -07004796MAX16065 HARDWARE MONITOR DRIVER
4797M: Guenter Roeck <linux@roeck-us.net>
4798L: lm-sensors@lm-sensors.org
4799S: Maintained
4800F: Documentation/hwmon/max16065
4801F: drivers/hwmon/max16065.c
4802
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004803MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004804M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004805L: lm-sensors@lm-sensors.org
4806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004807F: Documentation/hwmon/max6650
4808F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004809
Joe Perches127c49a2009-04-08 08:34:04 -07004810MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07004811M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07004812P: LinuxTV.org Project
4813L: linux-media@vger.kernel.org
4814W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004815Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches08deed12012-03-23 15:01:57 -07004816T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Joe Perches127c49a2009-04-08 08:34:04 -07004817S: Maintained
4818F: Documentation/dvb/
4819F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004820F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004821F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004822F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004823F: include/media/
4824F: include/linux/dvb/
4825F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004826
4827MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004828M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004829L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004830W: http://megaraid.lsilogic.com
4831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004832F: Documentation/scsi/megaraid.txt
4833F: drivers/scsi/megaraid.*
4834F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004835
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004836MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838W: http://www.linux-mm.org
4839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004840F: include/linux/mm.h
4841F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004842
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004843MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08004844M: Johannes Weiner <hannes@cmpxchg.org>
4845M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07004846M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004847M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08004848L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004849L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004851F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004852F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004853
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004855M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004857W: http://www.linux-mtd.infradead.org/
4858Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004859T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004861F: drivers/mtd/
4862F: include/linux/mtd/
4863F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864
Michal Simekc6375b02009-03-27 14:25:52 +01004865MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004866M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02004867L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01004868W: http://www.monstr.eu/fdt/
4869T: git git://git.monstr.eu/linux-2.6-microblaze.git
4870S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004871F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872
4873MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02004874M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004876F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877
4878MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004879M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01004881W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00004882T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01004883Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00004884S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004885F: Documentation/mips/
4886F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004889M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004891F: include/linux/module.h
4892F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893
4894MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08004896S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004897F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004898F: drivers/media/pci/meye/
Joe Perches679655d2009-04-07 20:44:32 -07004899F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900
Pavel Pisac58ff042007-05-16 01:10:41 +02004901MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004902M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004903L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02004904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004905F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02004906
Jiri Slabyb9705b602008-04-30 00:53:48 -07004907MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07004908M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08004909S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004910F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07004911F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08004912
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004913MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07004914M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05004915L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004916S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004917F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004918
Anisse Astier0f1006b2009-12-17 11:28:49 +01004919MSI WMI SUPPORT
4920M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd09448532010-02-11 10:40:13 -05004921L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01004922S: Supported
4923F: drivers/platform/x86/msi-wmi.c
4924
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004925MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07004926M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07004927T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004928S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004929F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004930
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02004931MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04004932M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07004933L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04004934T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
4935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004936F: drivers/mmc/
4937F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01004938
David Brownell15a05802007-08-08 09:12:54 -07004939MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06004940S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004941F: drivers/mmc/host/mmc_spi.c
4942F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004943
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004945M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004947F: Documentation/sound/oss/MultiSound
4948F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004949
Jiri Slabyd7354102006-12-08 02:38:35 -08004950MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02004951S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07004952F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07004953F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004954
Felipe Balbi550a7372008-07-24 12:27:36 +03004955MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03004956M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004957L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004958T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004960F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004961
Michael Krufkyea0af5f2012-10-02 00:55:41 -03004962MXL5007T MEDIA DRIVER
4963M: Michael Krufky <mkrufky@linuxtv.org>
4964L: linux-media@vger.kernel.org
4965W: http://linuxtv.org/
4966W: http://github.com/mkrufky
4967Q: http://patchwork.linuxtv.org/project/linux-media/list/
4968T: git git://linuxtv.org/mkrufky/tuners.git
4969S: Maintained
4970F: drivers/media/tuners/mxl5007t.*
4971
Brice Goglin2d3cf582008-05-17 12:45:36 +02004972MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07004973M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02004974L: netdev@vger.kernel.org
4975W: http://www.myri.com/scs/download-Myri10GE.html
4976S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07004977F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004978
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04004980S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07004981F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982
Daniel Mack23dc05a2011-05-18 11:28:38 +02004983NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
4984M: Daniel Mack <zonque@gmail.com>
4985S: Maintained
4986L: alsa-devel@alsa-project.org
4987W: http://www.native-instruments.com
4988F: sound/usb/caiaq/
4989
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07004991M: Petr Vandrovec <petr@vandrovec.name>
4992S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004993F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994
4995NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07004996M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997L: linux-scsi@vger.kernel.org
4998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004999F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005001NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005002M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005003L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005004W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005005S: Supported
5006F: drivers/infiniband/hw/nes/
5007
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005008NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05005009M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07005010L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005012F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005013
Jon Masonb2f5a052010-07-15 08:47:27 +00005014NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005015M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005016L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005017S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005018F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005019F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005020F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005021
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023P: Harald Welte
5024P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005025M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005026M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005027L: netfilter-devel@vger.kernel.org
5028L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005029L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030W: http://www.netfilter.org/
5031W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005032T: git git://1984.lsi.us.es/nf
5033T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005035F: include/linux/netfilter*
5036F: include/linux/netfilter/
5037F: include/net/netfilter/
5038F: net/*/netfilter.c
5039F: net/*/netfilter/
5040F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041
Paul Moore4cc67732006-09-25 15:57:13 -07005042NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005043M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005044W: http://netlabel.sf.net
5045L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005046S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005047F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005048F: include/net/netlabel.h
5049F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005050
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005052M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005054W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005056F: include/linux/netrom.h
5057F: include/net/netrom.h
5058F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005060NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005061M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005063F: Documentation/blockdev/nbd.txt
5064F: drivers/block/nbd.c
5065F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066
Neil Horman6e436502009-10-05 03:56:55 +00005067NETWORK DROP MONITOR
5068M: Neil Horman <nhorman@tuxdriver.com>
5069L: netdev@vger.kernel.org
5070S: Maintained
5071W: https://fedorahosted.org/dropwatch/
5072F: net/core/drop_monitor.c
5073
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005075M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005076L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005077W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00005078W: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005079T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5080T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005082F: net/
5083F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005084F: include/linux/in.h
5085F: include/linux/net.h
5086F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087
5088NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005089M: "David S. Miller" <davem@davemloft.net>
5090M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005091M: James Morris <jmorris@namei.org>
5092M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5093M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005094L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005095T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005097F: net/ipv4/
5098F: net/ipv6/
5099F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005100F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101
David S. Miller73b76562012-10-16 14:08:40 -04005102NETWORKING [IPSEC]
5103M: Steffen Klassert <steffen.klassert@secunet.com>
5104M: Herbert Xu <herbert@gondor.apana.org.au>
5105M: "David S. Miller" <davem@davemloft.net>
5106L: netdev@vger.kernel.org
5107T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5108S: Maintained
5109F: net/xfrm/
5110F: net/key/
5111F: net/ipv4/xfrm*
5112F: net/ipv6/xfrm*
5113F: include/uapi/linux/xfrm.h
5114F: include/net/xfrm.h
5115
James Morris10e2ff12007-08-25 14:41:28 -07005116NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005117M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005118L: netdev@vger.kernel.org
5119S: Maintained
5120
John W. Linville29f8f632006-01-18 14:52:48 -08005121NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005122M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005123L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005124Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005125T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005126S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005127F: net/mac80211/
5128F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005129F: net/wireless/
5130F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005131F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005132F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005133F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005134
Joe Perches788873a2009-04-16 09:38:45 +00005135NETWORKING DRIVERS
5136L: netdev@vger.kernel.org
5137W: http://www.linuxfoundation.org/en/Net
Joe Perches08deed12012-03-23 15:01:57 -07005138T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5139T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005140S: Odd Fixes
5141F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005142F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005143F: include/linux/netdevice.h
5144F: include/linux/arcdevice.h
5145F: include/linux/etherdevice.h
5146F: include/linux/fcdevice.h
5147F: include/linux/fddidevice.h
5148F: include/linux/hippidevice.h
5149F: include/linux/inetdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005150
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005151NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005152M: Sony Chacko <sony.chacko@qlogic.com>
5153M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005154L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005155W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005156S: Supported
Jeff Kirsheraa43c2152011-04-08 19:06:30 -07005157F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005158
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005159NFC SUBSYSTEM
5160M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5161M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5162M: Samuel Ortiz <sameo@linux.intel.com>
5163L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005164L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005165S: Maintained
5166F: net/nfc/
5167F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005168F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005169F: drivers/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005171NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005172M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005173L: linux-nfs@vger.kernel.org
5174W: http://client.linux-nfs.org
5175T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005177F: fs/lockd/
5178F: fs/nfs/
5179F: fs/nfs_common/
5180F: net/sunrpc/
5181F: include/linux/lockd/
5182F: include/linux/nfs*
5183F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184
5185NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005186M: Jan-Pascal van Best <janpascal@vanbest.org>
5187M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005188L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005190F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005192NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005193M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005194L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005195W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005196T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005197S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005198F: Documentation/filesystems/nilfs2.txt
5199F: fs/nilfs2/
5200F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005201
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005203M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005206F: Documentation/scsi/NinjaSCSI.txt
5207F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208
5209NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005210M: GOTO Masanori <gotom@debian.or.jp>
5211M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005214F: Documentation/scsi/NinjaSCSI.txt
5215F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005218M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005220W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005221T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005222S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005223F: Documentation/filesystems/ntfs.txt
5224F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005226NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005227M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005228L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005230F: drivers/video/riva/
5231F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232
Tony Lindgrenf5525782009-05-28 13:23:53 -07005233OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005234M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005235L: linux-omap@vger.kernel.org
5236W: http://www.muru.com/linux/omap/
5237W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005238Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005239T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005240S: Maintained
Felipe Contreras4e04d5a32009-09-21 17:04:25 -07005241F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005242F: drivers/i2c/busses/i2c-omap.c
5243F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005244
5245OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005246M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005247L: linux-omap@vger.kernel.org
5248S: Maintained
5249F: arch/arm/*omap*/*clock*
5250
5251OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e292011-01-04 15:33:08 -08005252M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005253L: linux-omap@vger.kernel.org
5254S: Maintained
5255F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005256F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005257
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005258OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5259M: Rajendra Nayak <rnayak@ti.com>
5260M: Paul Walmsley <paul@pwsan.com>
5261L: linux-omap@vger.kernel.org
5262S: Maintained
5263F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5264F: arch/arm/mach-omap2/powerdomain44xx.c
5265F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5266F: arch/arm/mach-omap2/clockdomain44xx.c
5267
Tony Lindgrenf5525782009-05-28 13:23:53 -07005268OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005269M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005270M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005271L: alsa-devel@alsa-project.org (subscribers-only)
5272L: linux-omap@vger.kernel.org
5273S: Maintained
5274F: sound/soc/omap/
5275
5276OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005277M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005278L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005279L: linux-omap@vger.kernel.org
5280S: Maintained
5281F: drivers/video/omap/
5282
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005283OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005284M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005285L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005286L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005287S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005288F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005289F: Documentation/arm/OMAP/DSS
5290
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005291OMAP HARDWARE SPINLOCK SUPPORT
5292M: Ohad Ben-Cohen <ohad@wizery.com>
5293L: linux-omap@vger.kernel.org
5294S: Maintained
5295F: drivers/hwspinlock/omap_hwspinlock.c
5296F: arch/arm/mach-omap2/hwspinlock.c
5297
Tony Lindgrenf5525782009-05-28 13:23:53 -07005298OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005299M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005300L: linux-omap@vger.kernel.org
5301S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005302F: drivers/mmc/host/omap.c
5303
5304OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305305M: Venkatraman S <svenkatr@ti.com>
5306L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005307L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305308S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005309F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005310
5311OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005312M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005313S: Maintained
5314F: drivers/char/hw_random/omap-rng.c
5315
Paul Walmsleyf400c822010-12-06 19:08:54 -07005316OMAP HWMOD SUPPORT
5317M: Benoît Cousson <b-cousson@ti.com>
5318M: Paul Walmsley <paul@pwsan.com>
5319L: linux-omap@vger.kernel.org
5320S: Maintained
5321F: arch/arm/mach-omap2/omap_hwmod.c
5322F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5323
5324OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5325M: Benoît Cousson <b-cousson@ti.com>
5326L: linux-omap@vger.kernel.org
5327S: Maintained
5328F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5329
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005330OMAP IMAGE SIGNAL PROCESSOR (ISP)
5331M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5332L: linux-media@vger.kernel.org
5333S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005334F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005335
Tony Lindgrenf5525782009-05-28 13:23:53 -07005336OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005337M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005338L: linux-usb@vger.kernel.org
5339L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005340T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005341S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005342F: drivers/usb/*/*omap*
5343F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005344
Kevin Hilman6d994712012-07-16 10:05:07 -07005345OMAP GPIO DRIVER
5346M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5347M: Kevin Hilman <khilman@ti.com>
5348L: linux-omap@vger.kernel.org
5349S: Maintained
5350F: drivers/gpio/gpio-omap.c
5351
Bob Copeland0ad122d2008-07-25 19:45:18 -07005352OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005353M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005354L: linux-karma-devel@lists.sourceforge.net
5355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005356F: Documentation/filesystems/omfs.txt
5357F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005358
Harald Weltec1986ee2005-11-13 16:06:29 -08005359OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005360M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005362F: drivers/char/pcmcia/cm4000_cs.c
5363F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005364
Harald Welte77c44ab2005-11-13 16:06:26 -08005365OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005366M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005368F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005369
Jonathan Corbet77d51402007-03-22 19:44:17 -03005370OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005371M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005372L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005373T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005374S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005375F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005376
Thomas Gleixner431bca72007-05-02 09:31:35 +02005377ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005378M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005379L: linux-mtd@lists.infradead.org
5380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005381F: drivers/mtd/onenand/
5382F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005383
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005385M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386L: osst-users@lists.sourceforge.net
5387L: linux-scsi@vger.kernel.org
5388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005389F: drivers/scsi/osst*
5390F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005392OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005393M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005394L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005396F: Documentation/i2c/busses/i2c-ocores
5397F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005398
Grant Likely860c44c2009-10-26 16:49:49 -07005399OPEN FIRMWARE AND FLATTENED DEVICE TREE
5400M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005401M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005402L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005403W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005404T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005405S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005406F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005407F: drivers/of
5408F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005409F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005410K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005411K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005412
Jonas Bonn19f9d392011-06-04 22:00:38 +03005413OPENRISC ARCHITECTURE
5414M: Jonas Bonn <jonas@southpole.se>
5415W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005416L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005417S: Maintained
5418T: git git://openrisc.net/~jonas/linux
5419F: arch/openrisc
5420
Jesse Grossccb13522011-10-25 19:26:31 -07005421OPENVSWITCH
5422M: Jesse Gross <jesse@nicira.com>
5423L: dev@openvswitch.org
5424W: http://openvswitch.org
5425T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5426S: Maintained
5427F: net/openvswitch/
5428
Clemens Ladischaf399172011-01-10 16:32:54 +01005429OPL4 DRIVER
5430M: Clemens Ladisch <clemens@ladisch.de>
5431L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5432T: git git://git.alsa-project.org/alsa-kernel.git
5433S: Maintained
5434F: sound/drivers/opl4/
5435
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005437M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438L: oprofile-list@lists.sf.net
5439S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005440F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005441F: arch/*/oprofile/
5442F: drivers/oprofile/
5443F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005445ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005446M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005447M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005448L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5449W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005450T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005451S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005452F: Documentation/filesystems/ocfs2.txt
5453F: Documentation/filesystems/dlmfs.txt
5454F: fs/ocfs2/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005455
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005457L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005458W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005459W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005460S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005461F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005463OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005464M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005465M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005466L: osd-dev@open-osd.org
5467W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005468T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005469S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005470F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005471F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005472F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005473
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005474P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005475M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005476L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005477W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005479F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005480
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005481PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005482M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005483L: netdev@vger.kernel.org
5484S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005485F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005486
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005487PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005488M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005489L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005491F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005492
Steffen Klassert48fc2672010-08-13 10:10:46 -04005493PADATA PARALLEL EXECUTION MECHANISM
5494M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005495L: linux-crypto@vger.kernel.org
5496S: Maintained
5497F: kernel/padata.c
5498F: include/linux/padata.h
5499F: Documentation/padata.txt
5500
Harald Welte709ee532008-09-23 17:46:57 +02005501PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005502M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05005503L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005505F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005506
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005507PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005508M: David Howells <dhowells@redhat.com>
5509M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005510L: linux-am33-list@redhat.com (moderated for non-subscribers)
5511W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005513F: Documentation/mn10300/
5514F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005515
Linus Torvalds1da177e2005-04-16 15:20:36 -07005516PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005517L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005518S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005519F: drivers/parport/
5520F: include/linux/parport*.h
5521F: drivers/char/ppdev.c
5522F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005524PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005525M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005526M: Chris Wright <chrisw@sous-sol.org>
5527M: Alok Kataria <akataria@vmware.com>
5528M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005529L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005530S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005531F: Documentation/ia64/paravirt_ops.txt
5532F: arch/*/kernel/paravirt*
5533F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005534
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005536M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005537L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538W: http://www.torque.net/linux-pp.html
5539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005540F: Documentation/blockdev/paride.txt
5541F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542
5543PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005544M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005545M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005546L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005548Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005549T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005551F: arch/parisc/
5552F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005553
Jim Cromie1662d322006-10-06 00:43:59 -07005554PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005555M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005556L: lm-sensors@lm-sensors.org
5557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005558F: Documentation/hwmon/pc87360
5559F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005560
5561PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005562M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005564F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005565
Jean Delvare1ad107f2010-08-14 21:09:00 +02005566PC87427 HARDWARE MONITORING DRIVER
5567M: Jean Delvare <khali@linux-fr.org>
5568L: lm-sensors@lm-sensors.org
5569S: Maintained
5570F: Documentation/hwmon/pc87427
5571F: drivers/hwmon/pc87427.c
5572
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005573PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005574M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005575S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005576F: drivers/leds/leds-pca9532.c
5577F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005578
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005579PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005580M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005581L: linux-i2c@vger.kernel.org
5582S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005583F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005584
Wolfram Sanga1867d32009-09-18 22:45:51 +02005585PCA9564/PCA9665 I2C BUS DRIVER
5586M: Wolfram Sang <w.sang@pengutronix.de>
5587L: linux-i2c@vger.kernel.org
5588S: Maintained
5589F: drivers/i2c/algos/i2c-algo-pca.c
5590F: drivers/i2c/busses/i2c-pca-*
5591F: include/linux/i2c-algo-pca.h
5592F: include/linux/i2c-pca-platform.h
5593
Khalid Aziz3971dae2012-04-12 12:49:13 -07005594PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005595M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005596S: Maintained
5597F: drivers/firmware/pcdp.*
5598
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005599PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005600M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005601L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005602S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005603F: Documentation/PCI/pci-error-recovery.txt
5604F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005605
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005607M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005608L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005609Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005610T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005612F: Documentation/PCI/
5613F: drivers/pci/
5614F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615
Linus Torvalds1da177e2005-04-16 15:20:36 -07005616PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005617P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005618L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005619W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005620T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005622F: Documentation/pcmcia/
5623F: drivers/pcmcia/
5624F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005625
5626PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005627M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005628L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005629S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005630F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005631
Steffen Klassert48fc2672010-08-13 10:10:46 -04005632PCRYPT PARALLEL CRYPTO ENGINE
5633M: Steffen Klassert <steffen.klassert@secunet.com>
5634L: linux-crypto@vger.kernel.org
5635S: Maintained
5636F: crypto/pcrypt.c
5637F: include/crypto/pcrypt.h
5638
Tejun Heoe72df0b2010-12-10 17:02:49 +01005639PER-CPU MEMORY ALLOCATOR
5640M: Tejun Heo <tj@kernel.org>
5641M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005642T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5643S: Maintained
5644F: include/linux/percpu*.h
5645F: mm/percpu*.c
5646F: arch/*/include/asm/percpu.h
5647
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005648PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005649M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005651F: include/linux/delayacct.h
5652F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005653
Ingo Molnar57c0c152009-09-21 12:20:38 +02005654PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005655M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5656M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b238c2012-03-19 21:03:46 +01005657M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005658M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005659T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005660S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005661F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005662F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005663F: arch/*/kernel/perf_event*.c
5664F: arch/*/kernel/*/perf_event*.c
5665F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005666F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005667F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005668F: arch/*/kernel/perf_callchain.c
5669F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005670
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005671PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005672M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005673L: linux-abi-devel@lists.sourceforge.net
5674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005675F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005676
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005677PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005678M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005679S: Supported
5680F: Documentation/networking/phonet.txt
5681F: include/linux/phonet.h
5682F: include/net/phonet/
5683F: net/phonet/
5684
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005686M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687L: linux-mtd@lists.infradead.org
5688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005689F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690
Bruno Prémontefdbb102012-07-30 21:39:03 +02005691PICOLCD HID DRIVER
5692M: Bruno Prémont <bonbons@linux-vserver.org>
5693L: linux-input@vger.kernel.org
5694S: Maintained
5695F: drivers/hid/hid-picolcd*
5696
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005697PICOXCELL SUPPORT
5698M: Jamie Iles <jamie@jamieiles.com>
5699L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5700T: git git://github.com/jamieiles/linux-2.6-ji.git
5701S: Supported
5702F: arch/arm/mach-picoxcell
5703F: drivers/*/picoxcell*
5704F: drivers/*/*/picoxcell*
5705
Linus Walleij2744e8a2011-05-02 20:50:54 +02005706PIN CONTROL SUBSYSTEM
5707M: Linus Walleij <linus.walleij@linaro.org>
5708S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005709F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005710F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005711
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02005712PIN CONTROLLER - ATMEL AT91
5713M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
5714L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5715S: Maintained
5716F: drivers/pinctrl/pinctrl-at91.c
5717
Viresh Kumardeda8282012-03-28 22:27:07 +05305718PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005719M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305720L: spear-devel@list.st.com
5721L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5722W: http://www.st.com/spear
5723S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005724F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305725
Peter Osterlund249a6772005-09-27 21:45:30 -07005726PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005727M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005729F: drivers/block/pktcdvd.c
5730F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005731
GuanXuetaob31d8272011-01-16 00:35:49 +08005732PKUNITY SOC DRIVERS
5733M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5734W: http://mprc.pku.edu.cn/~guanxuetao/linux
5735S: Maintained
5736T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5737F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005738F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005739F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005740F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005741
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005742PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005743M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005744L: lm-sensors@lm-sensors.org
5745W: http://www.lm-sensors.org/
5746W: http://www.roeck-us.net/linux/drivers/
5747T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5748S: Maintained
5749F: Documentation/hwmon/pmbus
5750F: drivers/hwmon/pmbus/
5751F: include/linux/i2c/pmbus.h
5752
Anil Ravindranath89a36812009-08-25 17:35:18 -07005753PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005754M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005755L: linux-scsi@vger.kernel.org
5756W: http://www.pmc-sierra.com/
5757S: Supported
5758F: drivers/scsi/pmcraid.*
5759
jack wangdbf9bfe2009-10-14 16:19:21 +08005760PMC SIERRA PM8001 DRIVER
5761M: jack_wang@usish.com
5762M: lindar_liu@usish.com
5763L: linux-scsi@vger.kernel.org
5764S: Supported
5765F: drivers/scsi/pm8001/
5766
Linus Torvalds1da177e2005-04-16 15:20:36 -07005767POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005768M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005769T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005770S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005771F: fs/timerfd.c
5772F: include/linux/timer*
5773F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774
Anton Vorontsov3be86142007-07-15 04:43:36 +04005775POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005776M: Anton Vorontsov <cbou@mail.ru>
5777M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005778T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005780F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005781F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005782
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005784M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005785M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005787F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005788
Vitaly Wool999445d2007-01-04 13:07:03 +01005789PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005790M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005791L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005793F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005794
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005796M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005797L: linux-ppp@vger.kernel.org
5798S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005799F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800
5801PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005802M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005804F: net/atm/pppoatm.c
5805F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005806
5807PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005808M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005809S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005810F: drivers/net/ppp/pppoe.c
5811F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812
James Chapmana6d23702007-06-27 15:53:17 -07005813PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005814M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005815S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005816F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005817F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005818
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005819PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005820M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005821W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5822L: linuxpps@ml.enneenne.com (subscribers-only)
5823S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005824F: Documentation/pps/
5825F: drivers/pps/
5826F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005827
Harry Wei71a6d0a2011-05-11 15:13:33 -07005828PPTP DRIVER
5829M: Dmitry Kozlov <xeb@mail.ru>
5830L: netdev@vger.kernel.org
5831S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005832F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005833W: http://sourceforge.net/projects/accel-pptp
5834
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005836M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005837L: kpreempt-tech@lists.sourceforge.net
5838W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5839S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005840F: Documentation/preempt-locking.txt
5841F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842
5843PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005844M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005845L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005846W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005847S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005848F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005849
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005850PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005851M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005852L: linux-ide@vger.kernel.org
5853S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005854F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005855
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005856PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005857M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005858L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005859L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005860S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07005861F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005862
Geoff Levandf58a9d12006-11-23 00:46:51 +01005863PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005864M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005865L: linuxppc-dev@lists.ozlabs.org
5866L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005867S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005868F: arch/powerpc/boot/ps3*
5869F: arch/powerpc/include/asm/lv1call.h
5870F: arch/powerpc/include/asm/ps3*.h
5871F: arch/powerpc/platforms/ps3/
5872F: drivers/*/ps3*
5873F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00005874F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07005875F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00005876F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01005877
Jim Pariscffb4add2009-01-06 11:32:10 +00005878PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005879M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005880L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00005881S: Maintained
Joe Perches8a3977cb2010-08-09 17:20:49 -07005882F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00005883
Anton Vorontsov8defe592012-08-03 18:07:20 -07005884PSTORE FILESYSTEM
5885M: Anton Vorontsov <cbouatmailru@gmail.com>
5886M: Colin Cross <ccross@android.com>
5887M: Kees Cook <keescook@chromium.org>
5888M: Tony Luck <tony.luck@intel.com>
5889S: Maintained
5890T: git git://git.infradead.org/users/cbou/linux-pstore.git
5891F: fs/pstore/
5892F: include/linux/pstore*
5893F: drivers/firmware/efivars.c
5894F: drivers/acpi/apei/erst.c
5895
Richard Cochran7fbc4152012-03-10 01:55:53 +00005896PTP HARDWARE CLOCK SUPPORT
5897M: Richard Cochran <richardcochran@gmail.com>
5898S: Maintained
5899W: http://linuxptp.sourceforge.net/
5900F: Documentation/ABI/testing/sysfs-ptp
5901F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07005902F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00005903F: drivers/net/phy/dp83640*
5904F: drivers/ptp/*
5905F: include/linux/ptp_cl*
5906
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005907PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005908M: Roland McGrath <roland@redhat.com>
5909M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005910S: Maintained
5911F: include/asm-generic/syscall.h
5912F: include/linux/ptrace.h
5913F: include/linux/regset.h
5914F: include/linux/tracehook.h
5915F: kernel/ptrace.c
5916
Michael Krufky83202042006-07-03 00:24:18 -07005917PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005918M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03005919L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005920L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07005921W: http://www.isely.net/pvrusb2/
Joe Perches08deed12012-03-23 15:01:57 -07005922T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Michael Krufky83202042006-07-03 00:24:18 -07005923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005924F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03005925F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07005926
Thierry Reding200efed2012-03-27 13:16:18 +02005927PWM SUBSYSTEM
5928M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005929L: linux-kernel@vger.kernel.org
5930S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02005931W: http://gitorious.org/linux-pwm
5932T: git git://gitorious.org/linux-pwm/linux-pwm.git
5933F: Documentation/pwm.txt
5934F: Documentation/devicetree/bindings/pwm/
5935F: include/linux/pwm.h
5936F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005937F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07005938F: drivers/video/backlight/pwm_bl.c
5939F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005940
Eric Miao30ec2612008-06-12 15:21:41 -07005941PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005942M: Eric Miao <eric.y.miao@gmail.com>
5943M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005944M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005945L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005946T: git git://github.com/hzhuang1/linux.git
5947T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005948S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005949F: arch/arm/mach-pxa/
5950F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08005951F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07005952F: drivers/usb/gadget/pxa2*
5953F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01005954F: sound/arm/pxa*
5955F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005957MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005958M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005959M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005960L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005961T: git git://github.com/hzhuang1/linux.git
5962T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005963S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005964F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005965
Pierre Ossman272f1332007-05-14 21:25:26 +02005966PXA MMCI DRIVER
5967S: Orphan
5968
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005969PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005970M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005971L: rtc-linux@googlegroups.com
5972S: Maintained
5973
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005974QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005975M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005976L: linux-rdma@vger.kernel.org
5977S: Supported
5978F: drivers/infiniband/hw/qib/
5979
Jes Sorensen5e9772b2010-06-30 15:37:38 +02005980QLOGIC QLA1280 SCSI DRIVER
5981M: Michael Reed <mdr@sgi.com>
5982L: linux-scsi@vger.kernel.org
5983S: Maintained
5984F: drivers/scsi/qla1280.[ch]
5985
Linus Torvalds1da177e2005-04-16 15:20:36 -07005986QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005987M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08005988M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989L: linux-scsi@vger.kernel.org
5990S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005991F: Documentation/scsi/LICENSE.qla2xxx
5992F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993
Ravi Anand883c98f2010-04-28 11:45:49 +05305994QLOGIC QLA4XXX iSCSI DRIVER
5995M: Ravi Anand <ravi.anand@qlogic.com>
5996M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
5997M: iscsi-driver@qlogic.com
5998L: linux-scsi@vger.kernel.org
5999S: Supported
6000F: drivers/scsi/qla4xxx/
6001
Ron Mercer5a4faa872006-07-25 00:40:21 -07006002QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006003M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006004M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006005M: linux-driver@qlogic.com
6006L: netdev@vger.kernel.org
6007S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006008F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c2152011-04-08 19:06:30 -07006009F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006010
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006011QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006012M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006013M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006014M: linux-driver@qlogic.com
6015L: netdev@vger.kernel.org
6016S: Supported
Jeff Kirsheraa43c2152011-04-08 19:06:30 -07006017F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006018
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006019QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006020M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006021M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006022M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006023L: netdev@vger.kernel.org
6024S: Supported
Jeff Kirsheraa43c2152011-04-08 19:06:30 -07006025F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006026
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006028M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006029W: http://www.alarsen.net/linux/qnx4fs/
6030S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006031F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07006032F: include/linux/qnx4_fs.h
6033F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034
Antti Palosaari91952bc2012-10-01 12:28:46 -03006035QT1010 MEDIA DRIVER
6036M: Antti Palosaari <crope@iki.fi>
6037L: linux-media@vger.kernel.org
6038W: http://linuxtv.org/
6039W: http://palosaari.fi/linux/
6040Q: http://patchwork.linuxtv.org/project/linux-media/list/
6041T: git git://linuxtv.org/anttip/media_tree.git
6042S: Maintained
6043F: drivers/media/tuners/qt1010*
6044
Richard Kuo4f4567c2011-10-31 18:56:38 -05006045QUALCOMM HEXAGON ARCHITECTURE
6046M: Richard Kuo <rkuo@codeaurora.org>
6047L: linux-hexagon@vger.kernel.org
6048S: Supported
6049F: arch/hexagon/
6050
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006051RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006052M: Yehuda Sadeh <yehuda@inktank.com>
6053M: Sage Weil <sage@inktank.com>
6054M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006055M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006056W: http://ceph.com/
6057T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006058S: Supported
6059F: drivers/block/rbd.c
6060F: drivers/block/rbd_types.h
6061
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006063M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006064L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006066F: drivers/video/aty/radeon*
6067F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068
6069RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006070M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006071L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006073F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074
Randy Dunlape7839f22008-10-12 16:11:45 -07006075RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006076P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006077M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006078M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006079M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006080L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006081L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006082W: http://rt2x00.serialmonkey.com/
6083S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006084T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006085F: drivers/net/wireless/rt2x00/
6086
Nick Piggin9db55792008-02-08 04:19:49 -08006087RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006088M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006089S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006090F: Documentation/blockdev/ramdisk.txt
6091F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006092
Matt Mackall9e95ce22005-04-16 15:25:56 -07006093RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006094M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006095S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006096F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006097
Matt Porter394b7012005-11-07 01:00:15 -08006098RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006099M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006100M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006102F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006103
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006104RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006105L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006106S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006107F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006108
6109RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006110M: Josh Triplett <josh@freedesktop.org>
6111M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006112S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006113T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006114F: Documentation/RCU/torture.txt
6115F: kernel/rcutorture.c
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006116
Florian Fainellic1f766b2008-02-06 22:39:44 +01006117RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006118M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006119S: Maintained
6120
Florian Fainellidb17f3952007-12-19 11:30:30 +01006121RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006122M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f3952007-12-19 11:30:30 +01006123L: netdev@vger.kernel.org
6124S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006125F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f3952007-12-19 11:30:30 +01006126
Andy Grovera09ed662009-02-24 15:30:41 +00006127RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006128M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006129L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006130S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006131F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006132
Josh Triplett595182b2006-10-04 02:17:21 -07006133READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006134M: Dipankar Sarma <dipankar@in.ibm.com>
6135M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006136W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006137S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006138T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006139F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006140X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006141F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006142F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006143X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006144
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006145REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006146M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo764654932006-12-10 02:19:06 -08006147L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006148Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006150F: Documentation/rtc.txt
6151F: drivers/rtc/
6152F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006153
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006155L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006157F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158
Mark Brownb83a3132011-05-11 19:59:58 +02006159REGISTER MAP ABSTRACTION
6160M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6161T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6162S: Supported
6163F: drivers/base/regmap/
6164F: include/linux/regmap.h
6165
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006166REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6167M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006168T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006169S: Maintained
6170F: drivers/remoteproc/
6171F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006172F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006173
Ivo van Doorne08976452008-04-12 19:23:55 +02006174RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006175M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006176L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006177W: http://wireless.kernel.org/
6178T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6179T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006180S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006181F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006182F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006183
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006184RICOH SMARTMEDIA/XD DRIVER
6185M: Maxim Levitsky <maximlevitsky@gmail.com>
6186S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006187F: drivers/mtd/nand/r852.c
6188F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006189
Maxim Levitsky92634122011-03-25 01:56:59 -07006190RICOH R5C592 MEMORYSTICK DRIVER
6191M: Maxim Levitsky <maximlevitsky@gmail.com>
6192S: Maintained
6193F: drivers/memstick/host/r592.*
6194
Linus Torvalds1da177e2005-04-16 15:20:36 -07006195ROCKETPORT DRIVER
6196P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006197W: http://www.comtrol.com
6198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006199F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006200F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201
6202ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006203M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006204L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006205W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006207F: include/linux/rose.h
6208F: include/net/rose.h
6209F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210
Antti Palosaari91952bc2012-10-01 12:28:46 -03006211RTL2830 MEDIA DRIVER
6212M: Antti Palosaari <crope@iki.fi>
6213L: linux-media@vger.kernel.org
6214W: http://linuxtv.org/
6215W: http://palosaari.fi/linux/
6216Q: http://patchwork.linuxtv.org/project/linux-media/list/
6217T: git git://linuxtv.org/anttip/media_tree.git
6218S: Maintained
6219F: drivers/media/dvb-frontends/rtl2830*
6220
Larry Finger59840482008-11-12 17:13:09 -06006221RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006222M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006223L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006224W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006225T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006226S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006227F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006228
Larry Finger59840482008-11-12 17:13:09 -06006229RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006230M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006231M: Hin-Tak Leung <htl10@users.sourceforge.net>
6232M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006233L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006234W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006235T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006236S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006237F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006238
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006239RTL8192CE WIRELESS DRIVER
6240M: Larry Finger <Larry.Finger@lwfinger.net>
6241M: Chaoming Li <chaoming_li@realsil.com.cn>
6242L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006243W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006244T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6245S: Maintained
6246F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006247F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006248
6249S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006250M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006251L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006253F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006254
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255S390
Joe Perches8b58be82009-07-29 15:04:30 -07006256M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6257M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006258M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006259L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006260W: http://www.ibm.com/developerworks/linux/linux390/
6261S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006262F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006263F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006264F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006265F: Documentation/s390/
6266F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006267
6268S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006269M: Ursula Braun <ursula.braun@de.ibm.com>
6270M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006271M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006272L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006273W: http://www.ibm.com/developerworks/linux/linux390/
6274S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006275F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006276
Felix Beckfeed9b62009-03-26 15:24:23 +01006277S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006278M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006279M: linux390@de.ibm.com
6280L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006281W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006282S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006283F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006284
Heiko Carstens5238da42006-02-11 17:56:01 -08006285S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006286M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006287M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006288L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006289W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006291F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006292
Ursula Braundd96df22007-09-19 13:09:02 +02006293S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006294M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006295M: linux390@de.ibm.com
6296L: linux-s390@vger.kernel.org
6297W: http://www.ibm.com/developerworks/linux/linux390/
6298S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006299F: drivers/s390/net/*iucv*
6300F: include/net/iucv/
6301F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006302
Ben Dooks4dde7f72008-06-30 22:40:38 +01006303S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006304M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006305L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006306S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006307F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006308
Linus Torvalds1da177e2005-04-16 15:20:36 -07006309SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006310M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006311L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006312T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006313W: http://www.mihu.de/linux/saa7146
6314S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006315F: drivers/media/common/saa7146/
6316F: drivers/media/pci/saa7146/
6317F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006318
Corentin Chary92304a42011-12-05 12:38:35 -05006319SAMSUNG LAPTOP DRIVER
6320M: Corentin Chary <corentincj@iksaif.net>
6321L: platform-driver-x86@vger.kernel.org
6322S: Maintained
6323F: drivers/platform/x86/samsung-laptop.c
6324
Mark Brown4a109cc2010-09-24 10:50:46 +01006325SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006326M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006327L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6328S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006329F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006330
Jingoo Han0d89a282011-12-19 11:09:35 +09006331SAMSUNG FRAMEBUFFER DRIVER
6332M: Jingoo Han <jg1.han@samsung.com>
6333L: linux-fbdev@vger.kernel.org
6334S: Maintained
6335F: drivers/video/s3c-fb.c
6336
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006337SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6338M: Sangbeom Kim <sbkim73@samsung.com>
6339L: linux-kernel@vger.kernel.org
6340S: Supported
6341F: drivers/mfd/sec*.c
6342F: drivers/regulator/s2m*.c
6343F: drivers/regulator/s5m*.c
6344F: drivers/rtc/rtc-sec.c
6345F: include/linux/mfd/samsung/
6346
Alan Coxca749e22011-03-18 13:56:14 +00006347SERIAL DRIVERS
6348M: Alan Cox <alan@linux.intel.com>
6349L: linux-serial@vger.kernel.org
6350S: Maintained
6351F: drivers/tty/serial
6352
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306353SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006354M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306355S: Maintained
6356F: include/linux/dw_dmac.h
6357F: drivers/dma/dw_dmac_regs.h
6358F: drivers/dma/dw_dmac.c
6359
Thomas Gleixner88606e82010-12-14 21:37:13 +01006360TIMEKEEPING, NTP
6361M: John Stultz <johnstul@us.ibm.com>
6362M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006363T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006364S: Supported
6365F: include/linux/clocksource.h
6366F: include/linux/time.h
6367F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006368F: kernel/time/clocksource.c
6369F: kernel/time/time*.c
6370F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006371F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006372
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006373TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006374M: Huang Shijie <shijie8@gmail.com>
6375M: Kang Yong <kangyong@telegent.com>
6376M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006377S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006378F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006379
Linus Torvalds1da177e2005-04-16 15:20:36 -07006380SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006381M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006383F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006384
6385SCHEDULER
Ingo Molnardd9b238c2012-03-19 21:03:46 +01006386M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006387M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006388T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006389S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006390F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006391F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006392
Chen Liqin6bcf6732009-06-13 15:24:33 +08006393SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006394M: Chen Liqin <liqin.chen@sunplusct.com>
6395M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006396W: http://www.sunplusct.com
6397S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006398F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006399
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006401M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006402L: linux-scsi@vger.kernel.org
6403W: http://www.kernel.dk
6404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006405F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006406
Roland Dreierfb50a832010-10-07 09:54:53 -07006407SCSI RDMA PROTOCOL (SRP) INITIATOR
6408M: David Dillow <dillowda@ornl.gov>
6409L: linux-rdma@vger.kernel.org
6410S: Supported
6411W: http://www.openfabrics.org
6412Q: http://patchwork.kernel.org/project/linux-rdma/list/
6413T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6414F: drivers/infiniband/ulp/srp/
6415F: include/scsi/srp.h
6416
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006418M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419L: linux-scsi@vger.kernel.org
6420W: http://www.torque.net/sg
6421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006422F: drivers/scsi/sg.c
6423F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424
6425SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006426M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006427L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006428T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6429T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6430T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006432F: drivers/scsi/
6433F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006434
6435SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006436M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437L: linux-scsi@vger.kernel.org
6438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006439F: Documentation/scsi/st.txt
6440F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441
6442SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006443M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006444M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006445L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006446W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006448F: Documentation/networking/sctp.txt
6449F: include/linux/sctp.h
6450F: include/net/sctp/
6451F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006452
6453SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006454M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006455S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006456F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006457F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006458F: drivers/watchdog/scx200_wdt.c
6459F: drivers/i2c/busses/scx200*
6460F: drivers/mtd/maps/scx200_docflash.c
6461F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006462
6463SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006464M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006466F: drivers/char/scx200_gpio.c
6467F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006468
6469SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006470M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006472F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473
Sascha Sommer6a369132008-07-15 14:21:29 +02006474SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006475M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006476L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006478F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006479
Randy Dunlape7839f22008-10-12 16:11:45 -07006480SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006481M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006482L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006483T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6484S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006485F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006486F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006487
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006488SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006489M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006490L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006491L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006492S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006493F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006494
Ben Dooks0d1bb412009-06-14 13:52:37 +01006495SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006496M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006497L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006498S: Maintained
6499F: drivers/mmc/host/sdhci-s3c.c
6500
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006501SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006502M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006503L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006504L: linux-mmc@vger.kernel.org
6505S: Maintained
6506F: drivers/mmc/host/sdhci-spear.c
6507
James Morris8711cca2008-12-04 03:19:45 +11006508SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006509M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006510L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006511T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006512W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006513S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006514F: security/
James Morris8711cca2008-12-04 03:19:45 +11006515
Linus Torvalds1da177e2005-04-16 15:20:36 -07006516SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006517M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006518S: Supported
6519
6520SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006521M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006522M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006523M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006524L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006525W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006526T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006527S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006528F: include/linux/selinux*
6529F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006530F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006531
John Johansenc1c124e2010-07-29 14:48:09 -07006532APPARMOR SECURITY MODULE
6533M: John Johansen <john.johansen@canonical.com>
6534L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6535W: apparmor.wiki.kernel.org
6536T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6537S: Supported
6538F: security/apparmor/
6539
Jiri Slabycef2cf02007-05-08 00:31:45 -07006540SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006541M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006543F: drivers/misc/phantom.c
6544F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006545
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006546SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006547M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006549T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006551F: drivers/ata/
6552F: include/linux/ata.h
6553F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006554
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306555SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006556M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006557L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006558W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006559S: Supported
6560F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306561
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006562SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006563M: Sathya Perla <sathya.perla@emulex.com>
6564M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6565M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006566L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006567W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006568S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006569F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006570
Ben Hutchings8ceee662008-04-27 12:55:59 +01006571SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006572M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006573M: Ben Hutchings <bhutchings@solarflare.com>
6574L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006575S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006576F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006577
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006578SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006579M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006581F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006582
6583SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006584M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006585L: linux-ia64@vger.kernel.org
6586S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006587F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006588F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006589F: include/linux/ioc?.h
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006590
Linus Torvalds1da177e2005-04-16 15:20:36 -07006591SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006592M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006593L: linux-visws-devel@lists.sf.net
6594W: http://linux-visws.sf.net
6595S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006596F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006597
Jack Steiner75312612008-08-15 00:40:42 -07006598SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006599M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006601F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006602
Len Brown6349d992009-08-14 15:07:14 -04006603SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006604M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006605L: sfi-devel@simplefirmware.org
6606W: http://simplefirmware.org/
6607T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006608S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006609F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006610F: drivers/sfi/
6611F: include/linux/sfi*.h
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006612
Linus Torvalds1da177e2005-04-16 15:20:36 -07006613SIMTEC EB110ATX (Chalice CATS)
6614P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006615P: Vincent Sanders <vince@simtec.co.uk>
6616M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006617W: http://www.simtec.co.uk/products/EB110ATX/
6618S: Supported
6619
6620SIMTEC EB2410ITX (BAST)
6621P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006622P: Vincent Sanders <vince@simtec.co.uk>
6623M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006624W: http://www.simtec.co.uk/products/EB2410ITX/
6625S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006626F: arch/arm/mach-s3c2410/mach-bast.c
6627F: arch/arm/mach-s3c2410/bast-ide.c
6628F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006629
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006630TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006631M: Sekhar Nori <nsekhar@ti.com>
6632M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306633L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306634T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006635Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006636S: Supported
6637F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006638F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006639
Francois Romieu92aab3c2005-07-30 13:11:18 +02006640SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006641M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006642L: netdev@vger.kernel.org
6643S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006644F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006645
Linus Torvalds1da177e2005-04-16 15:20:36 -07006646SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006647M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006648W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006649L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006650S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006651F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006652
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006653SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006654M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006655L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006656S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006657F: Documentation/i2c/busses/i2c-sis96x
6658F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006659
Linus Torvalds1da177e2005-04-16 15:20:36 -07006660SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006661M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006662W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006664F: Documentation/fb/sisfb.txt
6665F: drivers/video/sis/
6666F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006667
6668SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006669M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006670W: http://www.winischhofer.at/linuxsisusbvga.shtml
6671S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006672F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006673
Christoph Lameter415ad262007-07-26 10:40:56 -07006674SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006675M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006676M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006677M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07006678L: linux-mm@kvack.org
6679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006680F: include/linux/sl?b*.h
6681F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07006682
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006683SLEEPABLE READ-COPY UPDATE (SRCU)
6684M: Lai Jiangshan <laijs@cn.fujitsu.com>
6685M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6686W: http://www.rdrop.com/users/paulmck/RCU/
6687S: Supported
6688T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6689F: include/linux/srcu*
6690F: kernel/srcu*
6691
Casey Schaufler66372842012-05-23 18:34:52 -07006692SMACK SECURITY MODULE
6693M: Casey Schaufler <casey@schaufler-ca.com>
6694L: linux-security-module@vger.kernel.org
6695W: http://schaufler-ca.com
6696T: git git://git.gitorious.org/smack-next/kernel.git
6697S: Maintained
6698F: Documentation/security/Smack.txt
6699F: security/smack/
6700
Linus Torvalds1da177e2005-04-16 15:20:36 -07006701SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006702M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006703S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006704F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006705
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006706SMM665 HARDWARE MONITOR DRIVER
6707M: Guenter Roeck <linux@roeck-us.net>
6708L: lm-sensors@lm-sensors.org
6709S: Maintained
6710F: Documentation/hwmon/smm665
6711F: drivers/hwmon/smm665.c
6712
Steve Glendinning9df73052010-08-14 21:08:54 +02006713SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006714M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006715L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006716S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006717F: Documentation/hwmon/emc2103
6718F: drivers/hwmon/emc2103.c
6719
Hans de Goedea98d5062011-03-21 17:59:36 +01006720SMSC SCH5627 HARDWARE MONITOR DRIVER
6721M: Hans de Goede <hdegoede@redhat.com>
6722L: lm-sensors@lm-sensors.org
6723S: Supported
6724F: Documentation/hwmon/sch5627
6725F: drivers/hwmon/sch5627.c
6726
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006727SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006728M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006729L: lm-sensors@lm-sensors.org
6730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006731F: Documentation/hwmon/smsc47b397
6732F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006733
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006734SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006735M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006736L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006737S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006738F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006739F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006740
Steve Glendinning2cb37722008-12-11 20:54:30 -08006741SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006742M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006743L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006744S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006745F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006746
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006747SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006748M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006749L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006750S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006751F: drivers/video/smscufx.c
6752
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006753SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006754M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006755L: linux-altix@sgi.com
6756L: linux-ia64@vger.kernel.org
6757W: http://www.sgi.com/altix
6758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006759F: arch/ia64/sn/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006760
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006761SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006762M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006763L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006764T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006765S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006766F: include/media/soc*
6767F: drivers/media/i2c/soc_camera/
6768F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006769
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006770SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006771M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006773F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006774
Linus Torvalds1da177e2005-04-16 15:20:36 -07006775SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006776M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006777L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006778S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006779F: drivers/md/
6780F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006781
Linus Torvalds1da177e2005-04-16 15:20:36 -07006782SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006783M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006784L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006785S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07006786F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006787
Michael Buesch61e115a2007-09-18 15:12:50 -04006788SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02006789M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04006790L: netdev@vger.kernel.org
6791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006792F: drivers/ssb/
6793F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04006794
Linus Torvalds1da177e2005-04-16 15:20:36 -07006795SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006796M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd09448532010-02-11 10:40:13 -05006797L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01006798W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07006799S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006800F: Documentation/laptops/sony-laptop.txt
6801F: drivers/char/sonypi.c
6802F: drivers/platform/x86/sony-laptop.c
6803F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006804
Alex Dubovbaf85322008-02-09 10:20:54 -08006805SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006806M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08006807W: http://tifmxx.berlios.de/
6808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006809F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08006810
Linus Torvalds1da177e2005-04-16 15:20:36 -07006811SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07006812M: Jaroslav Kysela <perex@perex.cz>
6813M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07006814L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07006815W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02006816T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07006817T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006818S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07006819F: Documentation/sound/
6820F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07006821F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006822
Mark Brownbd903bd2008-11-19 19:16:05 +00006823SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01006824M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006825M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00006826T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07006827L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01006828W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006829S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006830F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01006831F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006832
Sam Ravnborg473321f2009-01-04 15:47:49 -08006833SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07006834M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006835L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006836Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07006837T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6838T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006840F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07006841F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006842
David S. Miller6404fcc2010-03-16 01:00:17 -07006843SPARC SERIAL DRIVERS
6844M: "David S. Miller" <davem@davemloft.net>
6845L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006846T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6847T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07006848S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05006849F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006850F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006851F: drivers/tty/serial/sunhv.c
6852F: drivers/tty/serial/sunsab.c
6853F: drivers/tty/serial/sunsab.h
6854F: drivers/tty/serial/sunsu.c
6855F: drivers/tty/serial/sunzilog.c
6856F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07006857
Christopher Li389325b2012-04-05 14:25:14 -07006858SPARSE CHECKER
6859M: "Christopher Li" <sparse@chrisli.org>
6860L: linux-sparse@vger.kernel.org
6861W: https://sparse.wiki.kernel.org/
6862T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
6863T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
6864S: Maintained
6865F: include/linux/compiler.h
6866
viresh kumarfc0c1952010-04-01 12:31:21 +01006867SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006868M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306869M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006870L: spear-devel@list.st.com
6871L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006872W: http://www.st.com/spear
6873S: Maintained
6874F: arch/arm/plat-spear/
6875
Viresh Kumar71e09a92012-04-20 22:39:48 +05306876SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006877M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306878M: Shiraz Hashim <shiraz.hashim@st.com>
6879L: spear-devel@list.st.com
6880L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6881W: http://www.st.com/spear
6882S: Maintained
6883F: arch/arm/mach-spear13xx/
6884
viresh kumarfc0c1952010-04-01 12:31:21 +01006885SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006886M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306887M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006888L: spear-devel@list.st.com
6889L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006890W: http://www.st.com/spear
6891S: Maintained
6892F: arch/arm/mach-spear3xx/
6893
6894SPEAR6XX MACHINE SUPPORT
6895M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306896M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006897M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006898L: spear-devel@list.st.com
6899L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006900W: http://www.st.com/spear
6901S: Maintained
6902F: arch/arm/mach-spear6xx/
6903
6904SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006905M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006906L: spear-devel@list.st.com
6907L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006908W: http://www.st.com/spear
6909S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05306910F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01006911
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006912SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07006913M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006914L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08006915Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06006916T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006918F: Documentation/spi/
6919F: drivers/spi/
6920F: include/linux/spi/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006921
Jim Lewis2752e4012006-09-29 02:01:19 -07006922SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07006923M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
6924M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e4012006-09-29 02:01:19 -07006925L: netdev@vger.kernel.org
6926S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006927F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006928F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e4012006-09-29 02:01:19 -07006929
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006930SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006931M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006932L: linuxppc-dev@lists.ozlabs.org
6933L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006934W: http://www.ibm.com/developerworks/power/cell/
6935S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006936F: Documentation/filesystems/spufs.txt
6937F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006938
Phillip Lougherfc555842009-01-05 08:46:29 +00006939SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01006940M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00006941L: squashfs-devel@lists.sourceforge.net (subscribers-only)
6942W: http://squashfs.org.uk
6943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006944F: Documentation/filesystems/squashfs.txt
6945F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00006946
Linus Torvalds1da177e2005-04-16 15:20:36 -07006947SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07006948M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006950F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006951
Linus Torvalds26e9a392008-10-17 09:50:12 -07006952STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08006953M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08006954L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08006955S: Supported
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006956
Linus Torvalds26e9a392008-10-17 09:50:12 -07006957STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08006958M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07006959T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07006960L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08006961S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006962F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07006963
Joe Perchesc8c8b102011-07-05 09:42:12 -07006964STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
6965M: Henk de Groot <pe1dnn@amsat.org>
6966S: Odd Fixes
6967F: drivers/staging/wlags49_h2/
6968F: drivers/staging/wlags49_h25/
6969
Joe Perchesc9555152011-07-05 09:42:01 -07006970STAGING - ASUS OLED
6971M: Jakub Schmidtke <sjakub@gmail.com>
6972S: Odd Fixes
6973F: drivers/staging/asus_oled/
6974
Joe Perchesebd3d012011-07-05 09:42:02 -07006975STAGING - COMEDI
6976M: Ian Abbott <abbotti@mev.co.uk>
6977M: Mori Hess <fmhess@users.sourceforge.net>
6978S: Odd Fixes
6979F: drivers/staging/comedi/
6980
Joe Perches8ca572c2011-07-05 09:42:03 -07006981STAGING - CRYSTAL HD VIDEO DECODER
6982M: Naren Sankar <nsankar@broadcom.com>
6983M: Jarod Wilson <jarod@wilsonet.com>
6984M: Scott Davilla <davilla@4pi.com>
6985M: Manu Abraham <abraham.manu@gmail.com>
6986S: Odd Fixes
6987F: drivers/staging/crystalhd/
6988
Joe Perches0f16ffc2011-07-05 09:42:04 -07006989STAGING - ECHO CANCELLER
6990M: Steve Underwood <steveu@coppice.org>
6991M: David Rowe <david@rowetel.com>
6992S: Odd Fixes
6993F: drivers/staging/echo/
6994
Mark Einon8dc2bbe72011-08-29 18:42:37 +01006995STAGING - ET131X NETWORK DRIVER
6996M: Mark Einon <mark.einon@gmail.com>
6997S: Odd Fixes
6998F: drivers/staging/et131x/
6999
Joe Perchesa0138162011-07-05 15:21:34 -07007000STAGING - FLARION FT1000 DRIVERS
7001M: Marek Belisko <marek.belisko@gmail.com>
7002S: Odd Fixes
7003F: drivers/staging/ft1000/
7004
Joe Perchesec3fab92011-07-05 09:42:05 -07007005STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7006M: David Täht <d@teklibre.com>
7007S: Odd Fixes
7008F: drivers/staging/frontier/
7009
Joe Perches6c1bb422011-07-05 09:42:07 -07007010STAGING - INDUSTRIAL IO
7011M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007012L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007013S: Odd Fixes
7014F: drivers/staging/iio/
7015
Joe Perchesa0138162011-07-05 15:21:34 -07007016STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7017M: Jarod Wilson <jarod@wilsonet.com>
7018W: http://www.lirc.org/
7019S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007020F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007021
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007022STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007023M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007024M: Marc Dietrich <marvin24@gmx.de>
7025L: ac100@lists.launchpad.net (moderated for non-subscribers)
7026S: Maintained
7027F: drivers/staging/nvec/
7028
Joe Perchesa0138162011-07-05 15:21:34 -07007029STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7030M: Andres Salomon <dilinger@queued.net>
7031M: Chris Ball <cjb@laptop.org>
7032M: Jon Nettleton <jon.nettleton@gmail.com>
7033W: http://wiki.laptop.org/go/DCON
7034S: Odd Fixes
7035F: drivers/staging/olpc_dcon/
7036
Chris Kelly94cfdd12012-03-14 10:55:42 +00007037STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00007038M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007039M: Chris Kelly <ckelly@ozmodevices.com>
7040S: Maintained
7041F: drivers/staging/ozwpan/
7042
Joe Perchesa0138162011-07-05 15:21:34 -07007043STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007044M: Willy Tarreau <willy@meta-x.org>
7045S: Odd Fixes
7046F: drivers/staging/panel/
7047
Joe Perchesa0138162011-07-05 15:21:34 -07007048STAGING - REALTEK RTL8712U DRIVERS
7049M: Larry Finger <Larry.Finger@lwfinger.net>
7050M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7051S: Odd Fixes
7052F: drivers/staging/rtl8712/
7053
Joe Perches9629fa82011-07-05 09:42:09 -07007054STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7055M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7056S: Odd Fixes
7057F: drivers/staging/sm7xx/
7058
Joe Perchesa0138162011-07-05 15:21:34 -07007059STAGING - SOFTLOGIC 6x10 MPEG CODEC
7060M: Ben Collins <bcollins@bluecherry.net>
7061S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007062F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007063
7064STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7065M: William Hubbs <w.d.hubbs@gmail.com>
7066M: Chris Brannon <chris@the-brannons.com>
7067M: Kirk Reiser <kirk@braille.uwo.ca>
7068M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7069L: speakup@braille.uwo.ca
7070W: http://www.linux-speakup.org/
7071S: Odd Fixes
7072F: drivers/staging/speakup/
7073
7074STAGING - TI DSP BRIDGE DRIVERS
7075M: Omar Ramirez Luna <omar.ramirez@ti.com>
7076S: Odd Fixes
7077F: drivers/staging/tidspbridge/
7078
Joe Perchesa0138162011-07-05 15:21:34 -07007079STAGING - USB ENE SM/MS CARD READER DRIVER
7080M: Al Cho <acho@novell.com>
7081S: Odd Fixes
7082F: drivers/staging/keucr/
7083
Joe Perchesb3e871c2011-07-05 09:42:10 -07007084STAGING - VIA VT665X DRIVERS
7085M: Forest Bond <forest@alittletooquiet.net>
7086S: Odd Fixes
7087F: drivers/staging/vt665?/
7088
Joe Perches81a9a522011-07-05 09:42:11 -07007089STAGING - WINBOND IS89C35 WLAN USB DRIVER
7090M: Pavel Machek <pavel@ucw.cz>
7091S: Odd Fixes
7092F: drivers/staging/winbond/
7093
Joe Perches709bcb02011-07-05 09:42:13 -07007094STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007095M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007096S: Odd Fixes
7097F: drivers/staging/xgifb/
7098
Linus Torvalds1da177e2005-04-16 15:20:36 -07007099STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007100M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007101S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007102F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007103
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07007104SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007105M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07007106W: http://sammy.net/sun3/
7107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007108F: arch/m68k/kernel/*sun3*
7109F: arch/m68k/sun3*/
7110F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007111F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07007112
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007113SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007114M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007115L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007116W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007117Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007118T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007119S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007120F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007121F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007122F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007123
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007124SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007125M: Len Brown <len.brown@intel.com>
7126M: Pavel Machek <pavel@ucw.cz>
7127M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007128L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07007129S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007130F: Documentation/power/
7131F: arch/x86/kernel/acpi/
7132F: drivers/base/power/
7133F: kernel/power/
7134F: include/linux/suspend.h
7135F: include/linux/freezer.h
7136F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007137
7138SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007139M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007140L: linux-video@atrey.karlin.mff.cuni.cz
7141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007142F: Documentation/svga.txt
7143F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007144
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007145SWIOTLB SUBSYSTEM
7146M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7147L: linux-kernel@vger.kernel.org
7148S: Supported
7149F: lib/swiotlb.c
7150F: arch/*/kernel/pci-swiotlb.c
7151F: include/linux/swiotlb.h
7152
Linus Torvalds1da177e2005-04-16 15:20:36 -07007153SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007154M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007156F: Documentation/filesystems/sysv-fs.txt
7157F: fs/sysv/
7158F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007159
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007160TARGET SUBSYSTEM
7161M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7162L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007163L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007164L: http://groups.google.com/group/linux-iscsi-target-dev
7165W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007166T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007167S: Supported
7168F: drivers/target/
7169F: include/target/
7170F: Documentation/target/
7171
Alan Cox4e688522008-04-30 00:52:11 -07007172TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007173M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007175F: Documentation/accounting/taskstats*
7176F: include/linux/taskstats*
7177F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007178
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007179TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007180M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007181L: netdev@vger.kernel.org
7182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007183F: include/linux/pkt_cls.h
7184F: include/net/pkt_cls.h
7185F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007186
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007187TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007188M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7189M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007190W: http://tcp-lp-mod.sourceforge.net/
7191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007192F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007193
Antti Palosaari91952bc2012-10-01 12:28:46 -03007194TDA10071 MEDIA DRIVER
7195M: Antti Palosaari <crope@iki.fi>
7196L: linux-media@vger.kernel.org
7197W: http://linuxtv.org/
7198W: http://palosaari.fi/linux/
7199Q: http://patchwork.linuxtv.org/project/linux-media/list/
7200T: git git://linuxtv.org/anttip/media_tree.git
7201S: Maintained
7202F: drivers/media/dvb-frontends/tda10071*
7203
7204TDA18212 MEDIA DRIVER
7205M: Antti Palosaari <crope@iki.fi>
7206L: linux-media@vger.kernel.org
7207W: http://linuxtv.org/
7208W: http://palosaari.fi/linux/
7209Q: http://patchwork.linuxtv.org/project/linux-media/list/
7210T: git git://linuxtv.org/anttip/media_tree.git
7211S: Maintained
7212F: drivers/media/tuners/tda18212*
7213
7214TDA18218 MEDIA DRIVER
7215M: Antti Palosaari <crope@iki.fi>
7216L: linux-media@vger.kernel.org
7217W: http://linuxtv.org/
7218W: http://palosaari.fi/linux/
7219Q: http://patchwork.linuxtv.org/project/linux-media/list/
7220T: git git://linuxtv.org/anttip/media_tree.git
7221S: Maintained
7222F: drivers/media/tuners/tda18218*
7223
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007224TDA18271 MEDIA DRIVER
7225M: Michael Krufky <mkrufky@linuxtv.org>
7226L: linux-media@vger.kernel.org
7227W: http://linuxtv.org/
7228W: http://github.com/mkrufky
7229Q: http://patchwork.linuxtv.org/project/linux-media/list/
7230T: git git://linuxtv.org/mkrufky/tuners.git
7231S: Maintained
7232F: drivers/media/tuners/tda18271*
7233
Michael Krufkye48307a2012-10-02 00:56:33 -03007234TDA827x MEDIA DRIVER
7235M: Michael Krufky <mkrufky@linuxtv.org>
7236L: linux-media@vger.kernel.org
7237W: http://linuxtv.org/
7238W: http://github.com/mkrufky
7239Q: http://patchwork.linuxtv.org/project/linux-media/list/
7240T: git git://linuxtv.org/mkrufky/tuners.git
7241S: Maintained
7242F: drivers/media/tuners/tda8290.*
7243
Michael Krufky66cf9212012-10-02 00:56:28 -03007244TDA8290 MEDIA DRIVER
7245M: Michael Krufky <mkrufky@linuxtv.org>
7246L: linux-media@vger.kernel.org
7247W: http://linuxtv.org/
7248W: http://github.com/mkrufky
7249Q: http://patchwork.linuxtv.org/project/linux-media/list/
7250T: git git://linuxtv.org/mkrufky/tuners.git
7251S: Maintained
7252F: drivers/media/tuners/tda8290.*
7253
Jiri Pirko3d249d42011-11-11 22:16:48 +00007254TEAM DRIVER
7255M: Jiri Pirko <jpirko@redhat.com>
7256L: netdev@vger.kernel.org
7257S: Supported
7258F: drivers/net/team/
7259F: include/linux/if_team.h
7260
Erik Gilling84b94142010-06-09 15:35:53 -07007261TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007262M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007263L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007264Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7265T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007266S: Supported
7267F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007268F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007269F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007270
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007271TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007272M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007273L: netdev@vger.kernel.org
7274S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007275F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007276
Alan Cox4e688522008-04-30 00:52:11 -07007277Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007278M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007279S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007280F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007281
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007282TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007283M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007284M: Max Filippov <jcmvbkbc@gmail.com>
7285L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007287F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007288
Zhang Ruid3fb6952012-11-15 08:58:27 +08007289THERMAL
7290M: Zhang Rui <rui.zhang@intel.com>
7291L: linux-pm@vger.kernel.org
7292T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7293S: Supported
7294F: drivers/thermal/
7295F: include/linux/thermal.h
7296
Alan Cox4e688522008-04-30 00:52:11 -07007297THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007298M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007299L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05007300L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007301W: http://ibm-acpi.sourceforge.net
7302W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007303T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007305F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007306
Alex Dubov4020f2d2006-10-04 02:15:37 -07007307TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007308M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007310F: drivers/misc/tifm*
7311F: drivers/mmc/host/tifm_sd.c
7312F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007313
M R Swami Reddy152ad442012-04-02 20:02:31 +05307314TI LM49xxx FAMILY ASoC CODEC DRIVERS
7315M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307316M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307317L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7318S: Maintained
7319F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307320F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307321
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007322TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007323M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007324L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7325S: Maintained
7326F: sound/soc/codecs/twl4030*
7327
Luciano Coelho90921012011-11-20 21:40:41 +02007328TI WILINK WIRELESS DRIVERS
7329M: Luciano Coelho <coelho@ti.com>
7330L: linux-wireless@vger.kernel.org
7331W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7332W: http://wireless.kernel.org/en/users/Drivers/wl1251
7333T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7334S: Maintained
7335F: drivers/net/wireless/ti/
7336F: include/linux/wl12xx.h
7337
Per Lidene86eaa32006-01-12 16:45:18 +01007338TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007339M: Jon Maloy <jon.maloy@ericsson.com>
7340M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007341L: netdev@vger.kernel.org (core kernel code)
7342L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007343W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007345F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007346F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007347
Chris Metcalf867e3592010-05-28 23:09:12 -04007348TILE ARCHITECTURE
7349M: Chris Metcalf <cmetcalf@tilera.com>
7350W: http://www.tilera.com/scm/
7351S: Supported
7352F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007353F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007354F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007355F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007356
Linus Torvalds1da177e2005-04-16 15:20:36 -07007357TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007358M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007359L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007360W: http://sourceforge.net/projects/tlan/
7361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007362F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007363F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007364
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007365TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007366M: Kentaro Takeda <takedakn@nttdata.co.jp>
7367M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007368L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7369L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007370L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7371L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7372W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007373T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007375F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007376
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007377TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007378M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05007379L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007380S: Maintained
7381F: drivers/platform/x86/topstar-laptop.c
7382
Linus Torvalds1da177e2005-04-16 15:20:36 -07007383TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05007384L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007385S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007386F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007387
7388TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007389M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007390L: tlinux-users@tce.toshiba-dme.co.jp
7391W: http://www.buzzard.org.uk/toshiba/
7392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007393F: drivers/char/toshiba.c
7394F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007395
Pierre Ossmand719f902009-03-24 21:06:09 +01007396TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007397M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007398M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007399L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007400S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007401F: drivers/mmc/host/tmio_mmc*
7402F: drivers/mmc/host/sh_mobile_sdhi.c
7403F: include/linux/mmc/tmio.h
7404F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007405
Hugh Dickins98f32602009-05-21 20:33:58 +01007406TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007407M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007408L: linux-mm@kvack.org
7409S: Maintained
7410F: include/linux/shmem_fs.h
7411F: mm/shmem.c
7412
Alan Cox4e688522008-04-30 00:52:11 -07007413TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007414M: Kent Yoder <key@linux.vnet.ibm.com>
7415M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007416W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007417M: Marcel Selhorst <tpmdd@selhorst.net>
7418M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007419W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007420L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007422F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007423
Joe Perchesd6f005a2009-10-26 16:49:40 -07007424TRACING
7425M: Steven Rostedt <rostedt@goodmis.org>
7426M: Frederic Weisbecker <fweisbec@gmail.com>
7427M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007428T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007429S: Maintained
7430F: Documentation/trace/ftrace.txt
7431F: arch/*/*/*/ftrace.h
7432F: arch/*/kernel/ftrace.c
7433F: include/*/ftrace.h
7434F: include/linux/trace*.h
7435F: include/trace/
7436F: kernel/trace/
7437
Linus Torvalds1da177e2005-04-16 15:20:36 -07007438TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007439M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007440T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007441S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007442K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007443
Alan Cox4e688522008-04-30 00:52:11 -07007444TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007445M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01007446M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08007447S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007448T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007449F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007450F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007451F: include/linux/serial_core.h
7452F: include/linux/serial.h
7453F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007454
Antti Palosaari91952bc2012-10-01 12:28:46 -03007455TUA9001 MEDIA DRIVER
7456M: Antti Palosaari <crope@iki.fi>
7457L: linux-media@vger.kernel.org
7458W: http://linuxtv.org/
7459W: http://palosaari.fi/linux/
7460Q: http://patchwork.linuxtv.org/project/linux-media/list/
7461T: git git://linuxtv.org/anttip/media_tree.git
7462S: Maintained
7463F: drivers/media/tuners/tua9001*
7464
Grant Grundler740db6d2008-02-17 11:53:49 -07007465TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007466M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007467L: netdev@vger.kernel.org
7468S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007469F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007470
7471TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07007472M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007473L: vtun@office.satix.net
7474W: http://vtun.sourceforge.net/tun
7475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007476F: Documentation/networking/tuntap.txt
7477F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007478
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007479TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007480M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007482F: drivers/tc/
7483F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007484
Linus Torvalds1da177e2005-04-16 15:20:36 -07007485U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007486M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007487L: linux-scsi@vger.kernel.org
7488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007489F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007490
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07007491UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007492M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007493M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07007494L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007495T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07007496W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007498F: Documentation/filesystems/ubifs.txt
7499F: fs/ubifs/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07007500
Alan Coxcc2020e2008-05-19 14:21:51 +01007501UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007502M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007503W: http://www.uclinux.org/
7504L: uclinux-dev@uclinux.org (subscribers-only)
7505S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007506F: arch/m68k/*/*_no.*
7507F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007508
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007509UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007510M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007511W: http://uclinux-h8.sourceforge.jp/
7512S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007513F: arch/h8300/
7514F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007515F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007516
Linus Torvalds1da177e2005-04-16 15:20:36 -07007517UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007518M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007520F: Documentation/filesystems/udf.txt
7521F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007522
Alan Coxcc2020e2008-05-19 14:21:51 +01007523UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007524M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007526F: Documentation/filesystems/ufs.txt
7527F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007528
David Herrmann0a09d3a2012-06-10 15:16:28 +02007529UHID USERSPACE HID IO DRIVER:
7530M: David Herrmann <dh.herrmann@googlemail.com>
7531L: linux-input@vger.kernel.org
7532S: Maintained
7533F: drivers/hid/uhid.c
7534F: include/linux/uhid.h
7535
David Vrabel18332a82008-09-17 16:34:44 +01007536ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007537L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007538S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007539F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007540F: include/linux/uwb.h
7541F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007542
GuanXuetaob31d8272011-01-16 00:35:49 +08007543UNICORE32 ARCHITECTURE:
7544M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7545W: http://mprc.pku.edu.cn/~guanxuetao/linux
7546S: Maintained
7547T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7548F: arch/unicore32/
7549
Tony Finchd8379ab2009-11-27 15:50:30 +00007550UNIFDEF
7551M: Tony Finch <dot@dotat.at>
7552W: http://dotat.at/prog/unifdef
7553S: Maintained
7554F: scripts/unifdef.c
7555
Linus Torvalds1da177e2005-04-16 15:20:36 -07007556UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007557M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007558W: http://www.kernel.dk
7559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007560F: Documentation/cdrom/
7561F: drivers/cdrom/cdrom.c
7562F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007563
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307564UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7565M: Vinayak Holikatti <vinholikatti@gmail.com>
7566M: Santosh Y <santoshsy@gmail.com>
7567L: linux-scsi@vger.kernel.org
7568S: Supported
7569F: Documentation/scsi/ufs.txt
7570F: drivers/scsi/ufs/
7571
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07007572UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007573M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07007574W: http://www.linux-mtd.infradead.org/
7575L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007576T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07007577S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007578F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007579F: include/linux/mtd/ubi.h
7580F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07007581
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007582UNSORTED BLOCK IMAGES (UBI) Fastmap
7583M: Richard Weinberger <richard@nod.at>
7584L: linux-mtd@lists.infradead.org
7585S: Maintained
7586F: drivers/mtd/ubi/fastmap.c
7587
Linus Torvalds1da177e2005-04-16 15:20:36 -07007588USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007589M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007590L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007592F: Documentation/usb/acm.txt
7593F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007594
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007595USB ATTACHED SCSI
7596M: Matthew Wilcox <willy@linux.intel.com>
7597M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7598L: linux-usb@vger.kernel.org
7599L: linux-scsi@vger.kernel.org
7600S: Supported
7601F: drivers/usb/storage/uas.c
7602
Linus Torvalds1da177e2005-04-16 15:20:36 -07007603USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007604M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007605L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007607F: drivers/net/usb/cdc_*.c
7608F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007609
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007610USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007611M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007612L: linux-usb@vger.kernel.org
7613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007614F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007615
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007616USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007617M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007618L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007619W: http://www.linux-usb.org/usbnet
7620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007621F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007622
Alan Coxcc2020e2008-05-19 14:21:51 +01007623USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007624M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007625L: rio500-users@lists.sourceforge.net
7626W: http://rio500.sourceforge.net
7627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007628F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007629
Linus Torvalds1da177e2005-04-16 15:20:36 -07007630USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007631M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007632L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007634F: Documentation/usb/ehci.txt
7635F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007636
David Brownell69ae9e32006-11-14 02:03:31 -08007637USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007638M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007639L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007640W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007641T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007643F: drivers/usb/gadget/
7644F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007645
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007646USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007647M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007648L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007649T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007650S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007651F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007652F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007653
matt mooney857aab32011-06-17 15:50:46 -07007654USB/IP DRIVERS
7655M: Matt Mooney <mfm@muteddisk.com>
7656L: linux-usb@vger.kernel.org
7657S: Maintained
7658F: drivers/staging/usbip/
7659
Olav Kongas959eea22005-11-03 17:38:14 +02007660USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007661M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007662L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007664F: drivers/usb/host/isp116x*
7665F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007666
Linus Torvalds1da177e2005-04-16 15:20:36 -07007667USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007668M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007669L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007671F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007672
7673USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007674M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007675L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007676L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007677S: Maintained
7678W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007679F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007680
Clemens Ladischaf399172011-01-10 16:32:54 +01007681USB MIDI DRIVER
7682M: Clemens Ladisch <clemens@ladisch.de>
7683L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7684T: git git://git.alsa-project.org/alsa-kernel.git
7685S: Maintained
7686F: sound/usb/midi.*
7687
Linus Torvalds1da177e2005-04-16 15:20:36 -07007688USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007689M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007690L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007692F: Documentation/usb/ohci.txt
7693F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007694
Matthias Urlichsba460e42005-07-14 00:33:47 -07007695USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007696M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007697L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007698S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007699F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007700
Linus Torvalds1da177e2005-04-16 15:20:36 -07007701USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007702M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007703L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007704L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007705W: http://pegasus2.sourceforge.net/
7706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007707F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007708
Felipe Balbid3ad5582012-05-21 16:24:49 +03007709USB PHY LAYER
7710M: Felipe Balbi <balbi@ti.com>
7711L: linux-usb@vger.kernel.org
7712T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7713S: Maintained
7714F: drivers/usb/phy/
7715F: drivers/usb/otg/
7716
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007717USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007718M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007719L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007720S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007721F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007722
7723USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007724M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007725L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007726L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007727W: http://pegasus2.sourceforge.net/
7728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007729F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007730
Alan Cox4e688522008-04-30 00:52:11 -07007731USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007732M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007733L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007735F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007736
7737USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007738M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007739L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007740S: Maintained
7741W: http://geocities.com/i0xox0i
7742W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07007743F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07007744
Linus Torvalds1da177e2005-04-16 15:20:36 -07007745USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007746M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007747W: http://www.reiner-sct.de/support/treiber_cyberjack.php
7748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007749F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007750
7751USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007752M: Peter Berger <pberger@brimson.com>
7753M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007754L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007756F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007757
7758USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007759M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007760L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007761S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007762F: Documentation/usb/usb-serial.txt
7763F: drivers/usb/serial/generic.c
7764F: drivers/usb/serial/usb-serial.c
7765F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007766
Linus Torvalds1da177e2005-04-16 15:20:36 -07007767USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007768M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007769L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007771F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007772
7773USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007774M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007775L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007777F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007778
7779USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007780M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007781L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007782W: http://www.connecttech.com
7783S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007784F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007785
Steve Glendinningb3f0db12012-08-15 21:53:38 +00007786USB SMSC75XX ETHERNET DRIVER
7787M: Steve Glendinning <steve.glendinning@shawell.net>
7788L: netdev@vger.kernel.org
7789S: Maintained
7790F: drivers/net/usb/smsc75xx.*
7791
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007792USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007793M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007794L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007796F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007797
Luca Risoliaf423b9a2007-03-26 16:12:04 -03007798USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007799M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007800L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007801L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007802T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007803W: http://www.linux-projects.org
7804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007805F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007806F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007807
7808USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007809M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007810L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007811W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07007812T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007813S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007814F: Documentation/usb/
7815F: drivers/net/usb/
7816F: drivers/usb/
7817F: include/linux/usb.h
7818F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007819
7820USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007821M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007822L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007824F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007825
David Brownell69ae9e32006-11-14 02:03:31 -08007826USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02007827M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007828L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007829W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07007830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007831F: drivers/net/usb/usbnet.c
7832F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007833
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007834USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07007835M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03007836L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007837L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007838T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03007839W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007840S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007841F: drivers/media/usb/uvc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007842
Laurent Pinchart8282da42012-10-04 02:32:42 +02007843USB WEBCAM GADGET
7844M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7845L: linux-usb@vger.kernel.org
7846S: Maintained
7847F: drivers/usb/gadget/*uvc*.c
7848F: drivers/usb/gadget/webcam.c
7849
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007850USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07007851M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007852L: linux-wireless@vger.kernel.org
7853S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007854F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007855
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007856USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08007857M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007858L: linux-usb@vger.kernel.org
7859S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08007860F: drivers/usb/host/xhci*
7861F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007862
Linus Torvalds1da177e2005-04-16 15:20:36 -07007863USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04007864L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007865W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04007866S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007867F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007868
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007869USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007870M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007871L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007872L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007873T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007874W: http://royale.zerezo.com/zr364xx/
7875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007876F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007877F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007878
Randy Dunlape7839f22008-10-12 16:11:45 -07007879USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07007880M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01007881M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007882L: user-mode-linux-devel@lists.sourceforge.net
7883L: user-mode-linux-user@lists.sourceforge.net
7884W: http://user-mode-linux.sourceforge.net
7885S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07007886F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07007887F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02007888F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07007889F: fs/hostfs/
7890F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007891
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007892USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07007893M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08007894M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007896F: Documentation/DocBook/uio-howto.tmpl
7897F: drivers/uio/
7898F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007899
Karel Zak256cccb2012-06-01 10:13:09 +02007900UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07007901M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02007902L: util-linux@vger.kernel.org
7903W: http://en.wikipedia.org/wiki/Util-linux
7904T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07007905S: Maintained
7906
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007907UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007908M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007909L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007910W: http://dev.gentoo.org/~spock/projects/uvesafb/
7911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007912F: Documentation/fb/uvesafb.txt
7913F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007914
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007915VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007916M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007918F: Documentation/filesystems/vfat.txt
7919F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007920
Alex Williamsoncba33452012-07-31 08:16:22 -06007921VFIO DRIVER
7922M: Alex Williamson <alex.williamson@redhat.com>
7923L: kvm@vger.kernel.org
7924S: Maintained
7925F: Documentation/vfio.txt
7926F: drivers/vfio/
7927F: include/linux/vfio.h
7928
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007929VIDEOBUF2 FRAMEWORK
7930M: Pawel Osciak <pawel@osciak.com>
7931M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03007932M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007933L: linux-media@vger.kernel.org
7934S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007935F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007936F: include/media/videobuf2-*
7937
Amit Shah9a824462010-03-23 18:23:09 +05307938VIRTIO CONSOLE DRIVER
7939M: Amit Shah <amit.shah@redhat.com>
7940L: virtualization@lists.linux-foundation.org
7941S: Maintained
7942F: drivers/char/virtio_console.c
7943F: include/linux/virtio_console.h
7944
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10307945VIRTIO CORE, NET AND BLOCK DRIVERS
7946M: Rusty Russell <rusty@rustcorp.com.au>
7947M: "Michael S. Tsirkin" <mst@redhat.com>
7948L: virtualization@lists.linux-foundation.org
7949S: Maintained
7950F: drivers/virtio/
7951F: drivers/net/virtio_net.c
7952F: drivers/block/virtio_blk.c
7953F: include/linux/virtio_*.h
7954
Michael S. Tsirkin3a4d5c942010-01-14 06:17:27 +00007955VIRTIO HOST (VHOST)
7956M: "Michael S. Tsirkin" <mst@redhat.com>
7957L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00007958L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c942010-01-14 06:17:27 +00007959L: netdev@vger.kernel.org
7960S: Maintained
7961F: drivers/vhost/
7962F: include/linux/vhost.h
7963
Linus Torvalds1da177e2005-04-16 15:20:36 -07007964VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007965M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007966S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007967F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007968
Harald Weltef0bf7f62009-06-17 20:22:39 +02007969VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08007970M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07007971M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02007972S: Maintained
7973F: drivers/mmc/host/via-sdmmc.c
7974
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007975VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007976M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007977L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007978S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007979F: include/linux/via-core.h
7980F: include/linux/via-gpio.h
7981F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07007982F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007983
Francois Romieu01f20732007-01-26 00:57:17 -08007984VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007985M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08007986L: netdev@vger.kernel.org
7987S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007988F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007989
Patrick McHardybe7f8272007-10-23 20:26:36 -07007990VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07007991M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07007992L: netdev@vger.kernel.org
7993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007994F: drivers/net/macvlan.c
7995F: include/linux/if_*vlan.h
7996F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07007997
Florian Fainelli55e331c2009-06-16 15:33:53 -07007998VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07007999M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008000L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008001S: Maintained
8002F: drivers/vlynq/vlynq.c
8003F: include/linux/vlynq.h
8004
Martyn Welch390beae2012-05-03 17:52:36 +01008005VME SUBSYSTEM
8006M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008007M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008008M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8009L: devel@driverdev.osuosl.org
8010S: Maintained
8011T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8012F: Documentation/vme_api.txt
8013F: drivers/staging/vme/
8014F: drivers/vme/
8015F: include/linux/vme*
8016
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008017VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008018M: Shreyas Bhatewara <sbhatewara@vmware.com>
8019M: "VMware, Inc." <pv-drivers@vmware.com>
8020L: netdev@vger.kernel.org
8021S: Maintained
8022F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008023
Alok Kataria851b1642009-10-13 14:51:05 -07008024VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008025M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008026M: VMware PV-Drivers <pv-drivers@vmware.com>
8027L: linux-scsi@vger.kernel.org
8028S: Maintained
8029F: drivers/scsi/vmw_pvscsi.c
8030F: drivers/scsi/vmw_pvscsi.h
8031
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008032VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008033M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008034M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008035W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008036W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008037T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008038S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008039F: drivers/regulator/
8040F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008041
Juerg Haefligerab413192006-09-24 20:54:04 +02008042VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008043M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008044L: lm-sensors@lm-sensors.org
8045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008046F: Documentation/hwmon/vt1211
8047F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008048
Roger Lucas1de9e372005-11-26 20:20:05 +01008049VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008050M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008051L: lm-sensors@lm-sensors.org
8052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008053F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008054
Tony Olech88095e72011-05-14 16:48:13 -04008055VUB300 USB to SDIO/SD/MMC bridge chip
8056M: Tony Olech <tony.olech@elandigitalsystems.com>
8057L: linux-mmc@vger.kernel.org
8058L: linux-usb@vger.kernel.org
8059S: Supported
8060F: drivers/mmc/host/vub300.c
8061
Linus Torvalds1da177e2005-04-16 15:20:36 -07008062W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008063M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008065F: Documentation/w1/
8066F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008067
Charles Spirakis13927072006-07-05 18:05:15 +02008068W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008069M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008070L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008072F: Documentation/hwmon/w83791d
8073F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008074
Rudolf Marek61db0112006-12-12 18:18:30 +01008075W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008076M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008077L: lm-sensors@lm-sensors.org
8078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008079F: Documentation/hwmon/w83793
8080F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008081
Jean Delvaree3760b42010-10-28 20:31:49 +02008082W83795 HARDWARE MONITORING DRIVER
8083M: Jean Delvare <khali@linux-fr.org>
8084L: lm-sensors@lm-sensors.org
8085S: Maintained
8086F: drivers/hwmon/w83795.c
8087
Linus Torvalds1da177e2005-04-16 15:20:36 -07008088W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008089M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008091F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008092
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008093WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008094M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008095L: linux-watchdog@vger.kernel.org
8096W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008097T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008099F: Documentation/watchdog/
8100F: drivers/watchdog/
8101F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008102
Linus Torvalds1da177e2005-04-16 15:20:36 -07008103WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008104M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008105L: linux-scsi@vger.kernel.org
8106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008107F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008108
David Herrmannb22e00f2011-09-06 13:50:40 +02008109WIIMOTE HID DRIVER
8110M: David Herrmann <dh.herrmann@googlemail.com>
8111L: linux-input@vger.kernel.org
8112S: Maintained
8113F: drivers/hid/hid-wiimote*
8114
David Härdemane258b802009-09-21 17:04:53 -07008115WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008116M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008117S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008118F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008119
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008120WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008121M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008122M: linux-wimax@intel.com
8123L: wimax@linuxwimax.org
8124S: Supported
8125W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008126F: Documentation/wimax/README.wimax
8127F: include/linux/wimax.h
8128F: include/linux/wimax/debug.h
8129F: include/net/wimax.h
8130F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008131
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008132WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008133M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008135F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008136
Linus Torvalds1da177e2005-04-16 15:20:36 -07008137WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008138M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008139L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008140W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008142F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008143
Mark Brownfebf1df2008-04-02 00:51:09 -04008144WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008145M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8146M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008147L: linux-input@vger.kernel.org
8148T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8149W: http://opensource.wolfsonmicro.com/node/7
8150S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008151F: drivers/input/touchscreen/*wm97*
8152F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008153
Mark Brown055bcbc2010-08-13 14:18:12 +01008154WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008155M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008156L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008157T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008158T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008159W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008160S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008161F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008162F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008163F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008164F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008165F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008166F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008167F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008168F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008169F: drivers/input/misc/wm831x-on.c
8170F: drivers/input/touchscreen/wm831x-ts.c
8171F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008172F: drivers/mfd/arizona*
8173F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008174F: drivers/power/wm83*.c
8175F: drivers/rtc/rtc-wm83*.c
8176F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008177F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008178F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008179F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008180F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008181F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008182F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008183F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008184F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008185F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008186F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008187
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008188WORKQUEUE
8189M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008190T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8191S: Maintained
8192F: include/linux/workqueue.h
8193F: kernel/workqueue.c
8194F: Documentation/workqueue.txt
8195
Linus Torvalds1da177e2005-04-16 15:20:36 -07008196X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008197M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008198L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008199S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008200F: Documentation/networking/x25*
8201F: include/net/x25*
8202F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008203
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07008204X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008205M: Thomas Gleixner <tglx@linutronix.de>
8206M: Ingo Molnar <mingo@redhat.com>
8207M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008208M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008209T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07008210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008211F: Documentation/x86/
8212F: arch/x86/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07008213
Matthew Garrettd09448532010-02-11 10:40:13 -05008214X86 PLATFORM DRIVERS
8215M: Matthew Garrett <mjg@redhat.com>
8216L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008217T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd09448532010-02-11 10:40:13 -05008218S: Maintained
8219F: drivers/platform/x86
8220
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008221X86 MCE INFRASTRUCTURE
8222M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008223M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008224L: linux-edac@vger.kernel.org
8225S: Maintained
8226F: arch/x86/kernel/cpu/mcheck/*
8227
Ian Campbellc4468082011-04-27 15:26:46 -07008228XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008229M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008230M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008231L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8232L: virtualization@lists.linux-foundation.org
8233S: Supported
8234F: arch/x86/xen/
8235F: drivers/*/xen-*front.c
8236F: drivers/xen/
8237F: arch/x86/include/asm/xen/
8238F: include/xen/
8239
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008240XEN HYPERVISOR ARM
8241M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8242L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8243S: Supported
8244F: arch/arm/xen/
8245F: arch/arm/include/asm/xen/
8246
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008247XEN NETWORK BACKEND DRIVER
8248M: Ian Campbell <ian.campbell@citrix.com>
8249L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8250L: netdev@vger.kernel.org
8251S: Supported
8252F: drivers/net/xen-netback/*
8253
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008254XEN PCI SUBSYSTEM
8255M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008256L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008257S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008258F: arch/x86/pci/*xen*
8259F: drivers/pci/*xen*
8260
8261XEN SWIOTLB SUBSYSTEM
8262M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008263L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008264S: Supported
8265F: arch/x86/xen/*swiotlb*
8266F: drivers/xen/*swiotlb*
8267
Linus Torvalds1da177e2005-04-16 15:20:36 -07008268XFS FILESYSTEM
8269P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008270M: Ben Myers <bpm@sgi.com>
8271M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008272M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008273L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008274W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008275T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008276S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008277F: Documentation/filesystems/xfs.txt
8278F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008279
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008280XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008281M: Anirudha Sarangi <anirudh@xilinx.com>
8282M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008283S: Maintained
8284F: drivers/net/ethernet/xilinx/xilinx_axienet*
8285
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008286XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008287M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008288W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008290F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008291
Peter Korsgaard238b8722006-12-06 20:35:17 -08008292XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008293M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008294L: linux-serial@vger.kernel.org
8295S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008296F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008297
Linus Torvalds1da177e2005-04-16 15:20:36 -07008298YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008299M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008300L: linux-hams@vger.kernel.org
8301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008302F: drivers/net/hamradio/yam*
8303F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008304
Henkaf64a5e2005-10-12 15:02:56 +02008305YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008306M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008307L: usbb2k-api-dev@nongnu.org
8308S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008309F: Documentation/input/yealink.txt
8310F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008311
Linus Torvalds1da177e2005-04-16 15:20:36 -07008312Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008313M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008314W: http://yaina.de/jreuter/
8315W: http://www.qsl.net/dl1bke/
8316L: linux-hams@vger.kernel.org
8317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008318F: Documentation/networking/z8530drv.txt
8319F: drivers/net/hamradio/*scc.c
8320F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008321
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008322ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008323M: Daniel Drake <dsd@gentoo.org>
8324M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008325W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008326L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008327L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008329F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008330
Linus Torvalds1da177e2005-04-16 15:20:36 -07008331ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008332L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008333L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008334W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008335T: Mercurial http://linuxtv.org/hg/v4l-dvb
8336S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008337F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008338
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008339ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008340M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008341S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008342F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008343
Linus Torvalds1da177e2005-04-16 15:20:36 -07008344THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008345M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008346L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008347Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008348T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008349S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008350F: *
8351F: */