blob: fe95ef189db0ca96e3897dc6f7f2e8e7300c1102 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93 X: Files and directories that are NOT maintained, same rules as F:
94 Files exclusions are tested before file matches.
95 Can be useful for excluding a specific subdirectory, for instance:
96 F: net/
97 X: net/ipv6/
98 matches all files in and below net excluding net/ipv6/
99 K: Keyword perl extended regex pattern to match content in a
100 patch or file. For instance:
101 K: of_get_profile
102 matches patches or files that contain "of_get_profile"
103 K: \b(printk|pr_(info|err))\b
104 matches patches or files that contain one or more of the words
105 printk, pr_info or pr_err
106 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108Note: For the hard of thinking, this list is meant to remain in alphabetical
109order. If you could add yourselves to it in alphabetical order that would be
110so much easier [Ed]
111
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700114 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163C505 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700117M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700118L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -0700120F: drivers/net/ethernet/i825xx/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Steffen Klasserta6d89912007-08-10 14:05:27 -07001223C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700123M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700124L: netdev@vger.kernel.org
125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700127F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700130M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700131L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700133F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
adam radfordc4de0ce2010-03-08 12:40:36 -08001353WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
136M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800138W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800140F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
14253C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700143M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144L: linux-scsi@vger.kernel.org
145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700146F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
1486PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700149M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150L: linux-hams@vger.kernel.org
151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700152F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700155M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700156M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700157L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700159F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
1618250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800162M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163L: linux-serial@vger.kernel.org
164W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700165S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700166T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800167F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700168F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
1708390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700171L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000172S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700173F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001759P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700176M: Eric Van Hensbergen <ericvh@gmail.com>
177M: Ron Minnich <rminnich@sandia.gov>
178M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100179L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500180W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800181Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800182T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700184F: Documentation/filesystems/9p.txt
185F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800186
Antti Palosaari91952bc2012-10-01 12:28:46 -0300187A8293 MEDIA DRIVER
188M: Antti Palosaari <crope@iki.fi>
189L: linux-media@vger.kernel.org
190W: http://linuxtv.org/
191W: http://palosaari.fi/linux/
192Q: http://patchwork.linuxtv.org/project/linux-media/list/
193T: git git://linuxtv.org/anttip/media_tree.git
194S: Maintained
195F: drivers/media/dvb-frontends/a8293*
196
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700197AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700198M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700199L: linux-scsi@vger.kernel.org
200W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700202F: Documentation/scsi/aacraid.txt
203F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100206M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207L: lm-sensors@lm-sensors.org
208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700209F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200210
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700212M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213L: lm-sensors@lm-sensors.org
214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700215F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700218M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219L: linux-acenic@sunsite.dk
220S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700221F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Peter Feuerere86435e2009-06-21 18:53:03 +0200223ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700224M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500225L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700226W: http://piie.net/?section=acerhdf
227S: Maintained
228F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200229
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230ACER WMI LAPTOP EXTRAS
Carlos Corbachod9269a72011-05-02 09:57:18 +0100231M: Joey Lee <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500232L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700234F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700237M: Len Brown <lenb@kernel.org>
Len Brown6968e502005-12-30 00:32:49 -0500238L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400239W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800240Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400241T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500242S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700243F: drivers/acpi/
244F: drivers/pnp/pnpacpi/
245F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700246F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500247
Len Brown8b59a452007-01-08 19:03:28 -0500248ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700249M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500250L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300251W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500252S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700253F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Len Brown8b59a452007-01-08 19:03:28 -0500255ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700256M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500257L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300258W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500259S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700260F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700261
Len Brown359acec2007-02-10 01:59:24 -0500262ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700263M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500264L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300265W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500266S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700267F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500268
Carlos Corbachobff431e2008-02-05 02:17:04 +0000269ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500270L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100271S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700272F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000273
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100274AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700275M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200276W: http://wiki.parisc-linux.org/AD1889
277L: linux-parisc@vger.kernel.org
278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700279F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100280
Michael Hennerich527a1a82010-10-28 11:31:28 +0000281AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
282M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100283L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700284W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000285S: Supported
286F: drivers/misc/ad525x_dpot.c
287
288AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
289M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100290L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700291W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000292S: Supported
293F: drivers/regulator/ad5398.c
294
295AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
296M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100297L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700298W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000299S: Supported
300F: drivers/input/misc/ad714x.c
301
302AD7877 TOUCHSCREEN DRIVER
303M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100304L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700305W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000306S: Supported
307F: drivers/input/touchscreen/ad7877.c
308
309AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
310M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100311L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700312W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000313S: Supported
314F: drivers/input/touchscreen/ad7879.c
315
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700316ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
317M: Jiri Kosina <jkosina@suse.cz>
318S: Maintained
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700321M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200322L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700324F: Documentation/hwmon/adm1025
325F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Corentin Labbecae2caa2007-02-14 21:15:04 +0100327ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700328M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100329L: lm-sensors@lm-sensors.org
330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700331F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100332
Michael Wucc0b88c2007-08-31 01:15:25 -0400333ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400334L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200335W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400336S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700337F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400338
Michael Hennerich527a1a82010-10-28 11:31:28 +0000339ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
340M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100341L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700342W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000343S: Supported
344F: drivers/mfd/adp5520.c
345F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700346F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800347F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000348F: drivers/input/keyboard/adp5520-keys.c
349
350ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
351M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100352L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700353W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000354S: Supported
355F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800356F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000357
358ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
359M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100360L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700361W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000362S: Supported
363F: drivers/video/backlight/adp8860_bl.c
364
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100365ADS1015 HARDWARE MONITOR DRIVER
366M: Dirk Eibach <eibach@gdsys.de>
367L: lm-sensors@lm-sensors.org
368S: Maintained
369F: Documentation/hwmon/ads1015
370F: drivers/hwmon/ads1015.c
371F: include/linux/i2c/ads1015.h
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700374M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700376F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Jean Delvareb058b852009-12-09 20:36:08 +0100378ADT7475 HARDWARE MONITOR DRIVER
379M: Jean Delvare <khali@linux-fr.org>
380L: lm-sensors@lm-sensors.org
381S: Maintained
382F: Documentation/hwmon/adt7475
383F: drivers/hwmon/adt7475.c
384
Michael Hennerich527a1a82010-10-28 11:31:28 +0000385ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
386M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100387L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700388W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000389S: Supported
390F: drivers/input/misc/adxl34x.c
391
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400392ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700393M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400394L: linux-scsi@vger.kernel.org
395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700396F: Documentation/scsi/advansys.txt
397F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700400M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700402F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Antti Palosaari91952bc2012-10-01 12:28:46 -0300404AF9013 MEDIA DRIVER
405M: Antti Palosaari <crope@iki.fi>
406L: linux-media@vger.kernel.org
407W: http://linuxtv.org/
408W: http://palosaari.fi/linux/
409Q: http://patchwork.linuxtv.org/project/linux-media/list/
410T: git git://linuxtv.org/anttip/media_tree.git
411S: Maintained
412F: drivers/media/dvb-frontends/af9013*
413
414AF9033 MEDIA DRIVER
415M: Antti Palosaari <crope@iki.fi>
416L: linux-media@vger.kernel.org
417W: http://linuxtv.org/
418W: http://palosaari.fi/linux/
419Q: http://patchwork.linuxtv.org/project/linux-media/list/
420T: git git://linuxtv.org/anttip/media_tree.git
421S: Maintained
422F: drivers/media/dvb-frontends/af9033*
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200425L: linux-fsdevel@vger.kernel.org
426S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700427F: Documentation/filesystems/affs.txt
428F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700430AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700431M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700432L: linux-afs@lists.infradead.org
433S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700434F: fs/afs/
435F: include/net/af_rxrpc.h
436F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700439M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700440T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700442F: drivers/char/agp/
443F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700446M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447L: linux-scsi@vger.kernel.org
448S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700449F: drivers/scsi/aha152x*
450F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Hannes Reinecke64624d42007-10-19 10:32:29 +0200452AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700453M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200454L: linux-scsi@vger.kernel.org
455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700456F: drivers/scsi/aic7xxx/
457F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200458
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700459AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700460M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700461L: linux-aio@kvack.org
462S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700463F: fs/aio.c
464F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700467M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700468L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469W: http://www.linux-usb.org/SpeedTouch/
470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700471F: drivers/usb/atm/speedtch.c
472F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Pierre Ossman272f1332007-05-14 21:25:26 +0200474ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700475M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700477F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200478
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000479ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700480M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100481L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700483F: Documentation/i2c/busses/i2c-ali1563
484F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700487M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700488M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500489M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700490S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700491L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700492F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Tobias Klauseradf92512011-02-09 10:58:29 +0100494ALTERA UART/JTAG UART SERIAL DRIVERS
495M: Tobias Klauser <tklauser@distanz.ch>
496L: linux-serial@vger.kernel.org
497L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
498S: Maintained
499F: drivers/tty/serial/altera_uart.c
500F: drivers/tty/serial/altera_jtaguart.c
501F: include/linux/altera_uart.h
502F: include/linux/altera_jtaguart.h
503
Andreas Herrmann512d1022011-05-25 20:43:31 +0200504AMD FAM15H PROCESSOR POWER MONITORING DRIVER
505M: Andreas Herrmann <andreas.herrmann3@amd.com>
506L: lm-sensors@lm-sensors.org
507S: Maintained
508F: Documentation/hwmon/fam15h_power
509F: drivers/hwmon/fam15h_power.c
510
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700511AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700512M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700513L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700515F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700516
Jordan Crousef90b8112006-01-06 00:12:14 -0800517AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800518P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700519L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800520W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
521S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700522F: drivers/char/hw_random/geode-rng.c
523F: drivers/crypto/geode*
524F: drivers/video/geode/
525F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800526
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200527AMD IOMMU (AMD-VI)
Joe Perches8b58be82009-07-29 15:04:30 -0700528M: Joerg Roedel <joerg.roedel@amd.com>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200529L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100530T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200531S: Supported
Joe Perchesb2c16392011-12-08 20:21:40 -0800532F: drivers/iommu/amd_iommu*.[ch]
533F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200534
Peter Orubae7f5b302008-07-28 18:44:11 +0200535AMD MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700536M: Andreas Herrmann <andreas.herrmann3@amd.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700537L: amd64-microcode@amd64.org
538S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700539F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200540
Stelian Pop284f42b2006-12-12 18:18:31 +0100541AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700542M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100543S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200544F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100545
Tom Tuckerf94b5332006-09-22 15:22:48 -0700546AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700547M: Tom Tucker <tom@opengridcomputing.com>
548M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700549L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700551F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700552
Michael Hennerich527a1a82010-10-28 11:31:28 +0000553ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200554M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100555L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000556L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700557W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000558S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100559F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200560F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000561F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000562F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100563F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000564
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400565ANALOG DEVICES INC ASOC DRIVERS
566L: uclinux-dist-devel@blackfin.uclinux.org
567L: alsa-devel@alsa-project.org (moderated for non-subscribers)
568W: http://blackfin.uclinux.org/
569S: Supported
570F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400571
Johannes Berg42269062006-07-25 16:15:50 +0200572AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700573M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000574L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700575L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200576S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700577F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200580M: Jiri Kosina <jkosina@suse.cz>
581S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700582F: arch/x86/kernel/apm_32.c
583F: include/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200584F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700586APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700587M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700588L: linux-input@vger.kernel.org
589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700590F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700591
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700592APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200593M: Henrik Rydberg <rydberg@euromail.se>
594L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700596F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700599M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700601F: drivers/net/appletalk/
602F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Viresh Kumara4801672011-02-22 15:46:07 +0530604ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700605M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530606L: linux-ide@vger.kernel.org
607S: Maintained
608F: include/linux/pata_arasan_cf_data.h
609F: drivers/ata/pata_arasan_cf.c
610
Jaya Kumar1154ea72005-06-21 17:17:04 -0700611ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700612M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700614F: drivers/video/arcfb.c
615F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700618M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700620F: arch/arm/lib/floppydma.S
621F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Will Deacon6f965212011-07-01 14:38:53 +0100623ARM PMU PROFILING AND DEBUGGING
624M: Will Deacon <will.deacon@arm.com>
625S: Maintained
626F: arch/arm/kernel/perf_event*
627F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100628F: arch/arm/include/asm/pmu.h
629F: arch/arm/kernel/hw_breakpoint.c
630F: arch/arm/include/asm/hw_breakpoint.h
631
Russell Kingd4275352009-04-16 14:05:27 +0100632ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700633M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700634L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100635W: http://www.arm.linux.org.uk/
636S: Maintained
637F: arch/arm/
638
Russell Kingcefbf4e2009-11-22 17:40:28 +0000639ARM PRIMECELL AACI PL041 DRIVER
640M: Russell King <linux@arm.linux.org.uk>
641S: Maintained
642F: sound/arm/aaci.*
643
644ARM PRIMECELL CLCD PL110 DRIVER
645M: Russell King <linux@arm.linux.org.uk>
646S: Maintained
647F: drivers/video/amba-clcd.*
648
649ARM PRIMECELL KMI PL050 DRIVER
650M: Russell King <linux@arm.linux.org.uk>
651S: Maintained
652F: drivers/input/serio/ambakmi.*
653F: include/linux/amba/kmi.h
654
Russell King2761f5c2007-05-24 06:56:08 +0200655ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200656S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700657F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200658
Russell Kingcefbf4e2009-11-22 17:40:28 +0000659ARM PRIMECELL BUS SUPPORT
660M: Russell King <linux@arm.linux.org.uk>
661S: Maintained
662F: drivers/amba/
663F: include/linux/amba/bus.h
664
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800665ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700666M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700667L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800668S: Maintained
669
Sergey Lapin9c784f92008-08-03 02:29:48 +0100670ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700671M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700672L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100673S: Maintained
674
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800675ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700676M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700677L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800678S: Maintained
679
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800680ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700681M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800682M: Nicolas Ferre <nicolas.ferre@atmel.com>
683M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700684L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200685W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800686W: http://www.linux4sam.org
687S: Supported
688F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100689
Rob Herring986cf2e2011-06-22 11:28:53 -0500690ARM/CALXEDA HIGHBANK ARCHITECTURE
691M: Rob Herring <rob.herring@calxeda.com>
692L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
693S: Maintained
694F: arch/arm/mach-highbank/
695
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300696ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
697M: Anton Vorontsov <avorontsov@mvista.com>
698S: Maintained
699F: arch/arm/mach-cns3xxx/
700T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
701
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800702ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100703M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000704M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700705L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800706S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100707F: arch/arm/mach-ep93xx/
708F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800709
710ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700711M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700712L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800713S: Maintained
714
Russell Kingd4275352009-04-16 14:05:27 +0100715ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700716M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700717L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700718S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100719F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700720F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100721
Mike Rapoportd48134e72008-08-20 09:03:26 +0100722ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700723M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700724L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100725S: Maintained
726
Hubert Feurstein94150092009-10-07 08:36:07 +0100727ARM/CONTEC MICRO9 MACHINE SUPPORT
728M: Hubert Feurstein <hubert.feurstein@contec.at>
729S: Maintained
730F: arch/arm/mach-ep93xx/micro9.c
731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700733M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734S: Maintained
735
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200736ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100737M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700738L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100739T: git git://git.berlios.de/gemini-board
740S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300741F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200742
Barry Songa990cbd2011-07-12 21:44:10 +0800743ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
744M: Barry Song <baohua.song@csr.com>
745L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
746S: Maintained
747F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800748F: drivers/dma/sirf-dma.c
749F: drivers/i2c/busses/i2c-sirf.c
750F: drivers/pinctrl/pinctrl-sirf.c
751F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800752
Russell Kingd4275352009-04-16 14:05:27 +0100753ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700754M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700755L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100756W: http://www.arm.linux.org.uk/
757S: Maintained
758F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700759F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100760
Russell Kinga9da4f72008-07-12 21:42:04 +0100761ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700762M: Daniel Ribeiro <drwyrm@gmail.com>
763M: Stefan Schmidt <stefan@openezx.org>
764M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200765L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100766W: http://www.openezx.org/
767S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200768T: topgit git://git.openezx.org/openezx.git
769F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100770
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200771ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100772M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700773L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100774S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700775T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300776F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200777
Russell Kingd4275352009-04-16 14:05:27 +0100778ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700779M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700780L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100781W: http://www.arm.linux.org.uk/
782S: Maintained
783F: arch/arm/include/asm/hardware/dec21285.h
784F: arch/arm/mach-footbridge/
785
Sascha Hauer86183a52008-07-24 23:50:35 +0200786ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700787M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700788L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200789S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700790T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100791F: arch/arm/mach-imx/
Uwe Kleine-Königb16533d2009-11-30 16:53:24 +0100792F: arch/arm/plat-mxc/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700793F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200794
Shawn Guo8bcb9762011-10-07 22:24:18 +0800795ARM/FREESCALE IMX6
796M: Shawn Guo <shawn.guo@linaro.org>
797L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
798S: Maintained
799T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
800F: arch/arm/mach-imx/*imx6*
801
Shawn Guoa9866a02011-10-21 11:53:34 +0800802ARM/FREESCALE MXS ARM ARCHITECTURE
803M: Shawn Guo <shawn.guo@linaro.org>
804L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
805S: Maintained
806T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
807F: arch/arm/mach-mxs/
808
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800809ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700810M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700811L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800812S: Maintained
813
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100814ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700815M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700816L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100817S: Maintained
818
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200819ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700820M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100821M: Paul Parsons <lost.distance@yahoo.com>
822L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200823S: Maintained
824F: arch/arm/mach-pxa/hx4700.c
825F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100826F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200827
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100828ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700829M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200830W: www.jlime.com
831S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700832T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
833F: arch/arm/mach-sa1100/jornada720.c
834F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100835
Marek Vasut403d2972010-05-22 00:29:39 +0200836ARM/INCOME PXA270 SUPPORT
837M: Marek Vasut <marek.vasut@gmail.com>
838L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
839S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700840F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200841
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800842ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700843M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700844M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700845L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700846S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100847
848ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700849M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700850L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700851S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800852
853ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700854M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700855M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700856L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700857S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800858
859ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700860M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700861M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700862L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700863S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800864
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800865ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700866M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700867L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800868S: Maintained
869
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200870ARM/INTEL IXP4XX ARM ARCHITECTURE
871M: Imre Kaloz <kaloz@openwrt.org>
872M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100873L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200874S: Maintained
875F: arch/arm/mach-ixp4xx/
876
Joe Perches838553c2010-10-26 14:22:59 -0700877ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100878M: Jonathan Cameron <jic23@cam.ac.uk>
879L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
880S: Maintained
881F: arch/arm/mach-pxa/stargate2.c
882F: drivers/pcmcia/pxa2xx_stargate2.c
883
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800884ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700885M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700886M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700887L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700888S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800889
890ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700891M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700892L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800893S: Maintained
894
895ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700896M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700897L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800898S: Maintained
899
Philipp Zabel3b8861712008-07-09 21:27:15 +0100900ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700901M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100902S: Maintained
903
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200904ARM/Marvell Armada 370 and Armada XP SOC support
905M: Jason Cooper <jason@lakedaemon.net>
906M: Andrew Lunn <andrew@lunn.ch>
907M: Gregory Clement <gregory.clement@free-electrons.com>
908L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
909S: Maintained
910F: arch/arm/mach-mvebu/
911
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400912ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
913M: Jason Cooper <jason@lakedaemon.net>
914M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700915L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400916S: Maintained
917F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400918F: arch/arm/mach-kirkwood/
919F: arch/arm/mach-mv78xx0/
920F: arch/arm/mach-orion5x/
921F: arch/arm/plat-orion/
922
Alexander Clouterd69ac132011-04-14 15:22:02 -0700923ARM/Orion SoC/Technologic Systems TS-78xx platform support
924M: Alexander Clouter <alex@digriz.org.uk>
925L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
926W: http://www.digriz.org.uk/ts78xx/kernel
927S: Maintained
928F: arch/arm/mach-orion5x/ts78xx-*
929
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000930ARM/MICREL KS8695 ARCHITECTURE
931M: Greg Ungerer <gerg@uclinux.org>
932L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
933F: arch/arm/mach-ks8695
934S: Odd Fixes
935
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200936ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700937M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700938L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200939F: arch/arm/mach-pxa/mioa701.c
940S: Maintained
941
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100942ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700943M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100944S: Maintained
945
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100946ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700947M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200948M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700949M: STEricsson <STEricsson_nomadik_linux@list.st.com>
950L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
951S: Maintained
952F: arch/arm/mach-nomadik/
953F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100954F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200955T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100956
Andy Green9d762952009-05-19 06:41:42 -0300957ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700958M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300959L: openmoko-kernel@lists.openmoko.org (subscribers-only)
960W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
961S: Supported
962
Daniel Walker0c19d212009-12-07 16:53:51 -0800963ARM/QUALCOMM MSM MACHINE SUPPORT
964M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -0800965M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -0800966M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -0800967L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -0800968F: arch/arm/mach-msm/
969F: drivers/video/msm/
970F: drivers/mmc/host/msm_sdcc.c
971F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800972F: drivers/tty/serial/msm_serial.h
973F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -0700974F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -0700975F: drivers/*/pm8???-*
976F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -0800977T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -0800978S: Maintained
979
Dirk Opfer8459c152005-11-06 14:27:52 +0000980ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700981M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
982M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000983S: Maintained
984
Marek Vasut5d783a22009-07-16 13:26:48 +0200985ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -0700986M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +0200987L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100988W: http://hackndev.com
989S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700990F: arch/arm/mach-pxa/include/mach/palmtx.h
991F: arch/arm/mach-pxa/palmtx.c
992F: arch/arm/mach-pxa/include/mach/palmt5.h
993F: arch/arm/mach-pxa/palmt5.c
994F: arch/arm/mach-pxa/include/mach/palmld.h
995F: arch/arm/mach-pxa/palmld.c
996F: arch/arm/mach-pxa/include/mach/palmte2.h
997F: arch/arm/mach-pxa/palmte2.c
998F: arch/arm/mach-pxa/include/mach/palmtc.h
999F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001000
Joe Perchesb57fe922009-12-14 18:00:52 -08001001ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001002M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001003L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001004W: http://hackndev.com
1005S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001006F: arch/arm/mach-pxa/include/mach/palmtreo.h
1007F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001008
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001009ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001010M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001011L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001012W: http://hackndev.com
1013S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001014F: arch/arm/mach-pxa/include/mach/palmz72.h
1015F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001018M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1020S: Maintained
1021
1022ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001023M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001024L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025W: http://www.arm.linux.org.uk/
1026S: Maintained
1027
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001028ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001029M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001030L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001031S: Maintained
1032
Russell Kingd4275352009-04-16 14:05:27 +01001033ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001034M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001035L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001036W: http://www.arm.linux.org.uk/
1037S: Maintained
1038F: arch/arm/common/time-acorn.c
1039F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1040F: arch/arm/include/asm/hardware/ioc.h
1041F: arch/arm/include/asm/hardware/iomd.h
1042F: arch/arm/include/asm/hardware/memc.h
1043F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001044F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001045F: drivers/net/ethernet/i825xx/ether1*
1046F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001047F: drivers/scsi/arm/
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001050M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051W: http://www.shark-linux.de/shark.html
1052S: Maintained
1053
Ben Dooksb21477f2009-06-13 10:46:34 +01001054ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001055M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001056M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001057L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001058L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001059W: http://www.fluff.org/ben/linux/
1060S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001061F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001062F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001063F: arch/arm/plat-s5p/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001064F: arch/arm/mach-s3c24*/
1065F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001066F: drivers/*/*s3c2410*
1067F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001068F: drivers/spi/spi-s3c*
1069F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001071ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001072M: Kukjin Kim <kgene.kim@samsung.com>
1073L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1074L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1075S: Maintained
1076F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001077F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001078
Kyungmin Park10ffa962011-03-04 17:36:26 -08001079ARM/SAMSUNG MOBILE MACHINE SUPPORT
1080M: Kyungmin Park <kyungmin.park@samsung.com>
1081L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1082S: Maintained
1083F: arch/arm/mach-s5pv210/mach-aquila.c
1084F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001085F: arch/arm/mach-exynos/mach-universal_c210.c
1086F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001087
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001088ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1089M: Kyungmin Park <kyungmin.park@samsung.com>
1090M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1091L: linux-arm-kernel@lists.infradead.org
1092L: linux-media@vger.kernel.org
1093S: Maintained
1094F: arch/arm/plat-s5p/dev-fimc*
1095F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001096F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001097
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001098ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1099M: Kyungmin Park <kyungmin.park@samsung.com>
1100M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001101M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001102L: linux-arm-kernel@lists.infradead.org
1103L: linux-media@vger.kernel.org
1104S: Maintained
1105F: arch/arm/plat-s5p/dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001106F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001107
1108ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1109M: Kyungmin Park <kyungmin.park@samsung.com>
1110M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1111L: linux-arm-kernel@lists.infradead.org
1112L: linux-media@vger.kernel.org
1113S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001114F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001115
Paul Mundtd48d38e2010-02-08 12:50:24 +09001116ARM/SHMOBILE ARM ARCHITECTURE
1117M: Paul Mundt <lethal@linux-sh.org>
1118M: Magnus Damm <magnus.damm@gmail.com>
1119L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001120W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001121Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtd22c0e52010-11-10 18:09:14 +09001122T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest
Paul Mundtd48d38e2010-02-08 12:50:24 +09001123S: Supported
1124F: arch/arm/mach-shmobile/
1125F: drivers/sh/
1126
Dinh Nguyen66314222012-07-18 16:07:18 -06001127ARM/SOCFPGA ARCHITECTURE
1128M: Dinh Nguyen <dinguyen@altera.com>
1129S: Maintained
1130F: arch/arm/mach-socfpga/
1131
1132ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1133M: Dinh Nguyen <dinguyen@altera.com>
1134S: Maintained
1135F: drivers/clk/socfpga/
1136
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001137ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001138M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001139L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001140S: Maintained
1141
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001142ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001143M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001144L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1145S: Maintained
1146
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001147ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001148M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001149L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001150S: Maintained
1151
wanzongshun98ad6e32009-02-13 06:04:32 +01001152ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001153M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001154L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001155W: http://www.mcuos.com
1156S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001157F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001158F: drivers/input/keyboard/w90p910_keypad.c
1159F: drivers/input/touchscreen/w90p910_ts.c
1160F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001161F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001162F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001163F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001164F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001165F: drivers/usb/host/ehci-w90x900.c
1166F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001167
Linus Walleij54274d72010-04-04 10:58:03 +01001168ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001169M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001170L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1171S: Supported
1172F: arch/arm/mach-u300/
1173F: drivers/i2c/busses/i2c-stu300.c
1174F: drivers/rtc/rtc-coh901331.c
1175F: drivers/watchdog/coh901327_wdt.c
1176F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001177F: drivers/mfd/ab3100*
1178F: drivers/rtc/rtc-ab3100.c
1179F: drivers/rtc/rtc-coh901331.c
1180T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001181
Linus Walleij87572882010-12-22 09:18:29 +01001182ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001183M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001184M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001185L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1186S: Maintained
1187F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001188F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001189F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001190F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001191F: drivers/mfd/abx500*
1192F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001193F: drivers/mfd/dbx500*
1194F: drivers/mfd/db8500*
1195F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001196F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001197F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001198T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001199
Russell Kingd4275352009-04-16 14:05:27 +01001200ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001201M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001202L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001203W: http://www.arm.linux.org.uk/
1204S: Maintained
1205F: arch/arm/vfp/
1206
Marek Vasute66b6d82010-03-26 06:51:32 +01001207ARM/VOIPAC PXA270 SUPPORT
1208M: Marek Vasut <marek.vasut@gmail.com>
1209L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1210S: Maintained
1211F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001212F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001213
Tony Prisk04529fe2012-07-24 04:19:37 +12001214ARM/VT8500 ARM ARCHITECTURE
1215M: Tony Prisk <linux@prisktech.co.nz>
1216L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1217S: Maintained
1218F: arch/arm/mach-vt8500/
1219F: drivers/video/vt8500lcdfb.*
1220F: drivers/video/wm8505fb*
1221F: drivers/video/wmt_ge_rops.*
1222F: drivers/tty/serial/vt8500_serial.c
1223F: drivers/rtc/rtc-vt8500-c
1224
Marek Vasute66b6d82010-03-26 06:51:32 +01001225ARM/ZIPIT Z2 SUPPORT
1226M: Marek Vasut <marek.vasut@gmail.com>
1227L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1228S: Maintained
1229F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001230F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001231
Catalin Marinas38074222012-03-05 11:49:34 +00001232ARM64 PORT (AARCH64 ARCHITECTURE)
1233M: Catalin Marinas <catalin.marinas@arm.com>
1234L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1235S: Maintained
1236F: arch/arm64/
1237
George Josephd58de032010-03-05 22:17:25 +01001238ASC7621 HARDWARE MONITOR DRIVER
1239M: George Joseph <george.joseph@fairview5.com>
1240L: lm-sensors@lm-sensors.org
1241S: Maintained
1242F: Documentation/hwmon/asc7621
1243F: drivers/hwmon/asc7621.c
1244
Corentin Charyb229ece2011-02-26 10:20:40 +01001245ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001246M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001248L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001249W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001251F: drivers/platform/x86/asus*.c
1252F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001254ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001255M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001256L: lm-sensors@lm-sensors.org
1257S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001258F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001259
Andrew Morton953a6472008-11-06 12:53:28 -08001260ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001261M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001262W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001264F: Documentation/crypto/async-tx-api.txt
1265F: crypto/async_tx/
1266F: drivers/dma/
1267F: include/linux/dmaengine.h
1268F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001269
Wolfram Sanga1867d32009-09-18 22:45:51 +02001270AT24 EEPROM DRIVER
1271M: Wolfram Sang <w.sang@pengutronix.de>
1272L: linux-i2c@vger.kernel.org
1273S: Maintained
1274F: drivers/misc/eeprom/at24.c
1275F: include/linux/i2c/at24.h
1276
Randy Dunlape7839f22008-10-12 16:11:45 -07001277ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001278M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001279W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001281F: Documentation/aoe/
1282F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Joe Perches9a10a872010-12-01 09:37:55 -08001284ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001285M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001286L: linux-wireless@vger.kernel.org
1287S: Supported
1288F: drivers/net/wireless/ath/*
1289
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001290ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001291M: Jiri Slaby <jirislaby@gmail.com>
1292M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001293M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001294L: linux-wireless@vger.kernel.org
1295L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001296W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001297S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001298F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001299
Kalle Valo12e62d62011-09-13 10:21:25 +03001300ATHEROS ATH6KL WIRELESS DRIVER
1301M: Kalle Valo <kvalo@qca.qualcomm.com>
1302L: linux-wireless@vger.kernel.org
1303W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1304T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1305S: Supported
1306F: drivers/net/wireless/ath/ath6kl/
1307
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001308ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001309M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1310M: Jouni Malinen <jouni@qca.qualcomm.com>
1311M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1312M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001313L: linux-wireless@vger.kernel.org
1314L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001315W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001316S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001317F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001318
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001319CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1320M: Christian Lamparter <chunkeey@googlemail.com>
1321L: linux-wireless@vger.kernel.org
1322W: http://wireless.kernel.org/en/users/Drivers/carl9170
1323S: Maintained
1324F: drivers/net/wireless/ath/carl9170/
1325
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001326ATK0110 HWMON DRIVER
1327M: Luca Tettamanti <kronos.it@gmail.com>
1328L: lm-sensors@lm-sensors.org
1329S: Maintained
1330F: drivers/hwmon/asus_atk0110.c
1331
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001332ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001333M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001335F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001336
Chris Snook7ae115b2008-09-09 03:26:57 -04001337ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001338M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001339M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001340L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001341W: http://sourceforge.net/projects/atl1
1342W: http://atl1.sourceforge.net
1343S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001344F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001347M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001348L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001349L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350W: http://linux-atm.sourceforge.net
1351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001352F: drivers/atm/
1353F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Pierre Ossman272f1332007-05-14 21:25:26 +02001355ATMEL AT91 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001356M: Ludovic Desroches <ludovic.desroches@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001357L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001358W: http://www.atmel.com/products/AT91/
1359W: http://www.at91.com/
1360S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001361F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001362
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001363ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001364M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001365S: Maintained
1366F: drivers/mmc/host/atmel-mci.c
1367F: drivers/mmc/host/atmel-mci-regs.h
1368
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001369ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001370M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001371S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001372F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001373
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001374ATMEL DMA DRIVER
1375M: Nicolas Ferre <nicolas.ferre@atmel.com>
1376L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1377S: Supported
1378F: drivers/dma/at_hdmac.c
1379F: drivers/dma/at_hdmac_regs.h
1380F: arch/arm/mach-at91/include/mach/at_hdmac.h
1381
Josh Wu15515542012-03-23 17:56:29 +08001382ATMEL ISI DRIVER
1383M: Josh Wu <josh.wu@atmel.com>
1384L: linux-media@vger.kernel.org
1385S: Supported
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001386F: drivers/media/platform/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001387F: include/media/atmel-isi.h
1388
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001389ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001390M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001391L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001393F: drivers/video/atmel_lcdfb.c
1394F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001395
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001396ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001397M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001398S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001399F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001400
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001401ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001402M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001403S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001404F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001405
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001406ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1407M: Nicolas Ferre <nicolas.ferre@atmel.com>
1408L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1409S: Supported
1410F: drivers/misc/atmel_tclib.c
1411F: drivers/clocksource/tcb_clksrc.c
1412
Josh Wuff2675d2012-03-23 17:56:55 +08001413ATMEL TSADCC DRIVER
1414M: Josh Wu <josh.wu@atmel.com>
1415L: linux-input@vger.kernel.org
1416S: Supported
1417F: drivers/input/touchscreen/atmel_tsadcc.c
1418
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001419ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001420M: Nicolas Ferre <nicolas.ferre@atmel.com>
1421L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001422S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001423F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001426M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001427L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428W: http://www.thekelleys.org.uk/atmel
1429W: http://atmelwlandriver.sourceforge.net/
1430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001431F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Chris Wrighta92b7b82005-07-07 18:12:23 -07001433AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001434M: Al Viro <viro@zeniv.linux.org.uk>
1435M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001436L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001437W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001438T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001439S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001440F: include/linux/audit.h
1441F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001442
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001443AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001444M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001445W: http://miguelojeda.es/auxdisplay.htm
1446W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001448F: drivers/auxdisplay/
1449F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001450
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001451AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001452M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1453M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001454W: http://www.atmel.com/products/AVR32/
1455W: http://avr32linux.org/
1456W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001458F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001459
1460AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001461M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1462M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001464F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001467M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001469W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001471F: include/linux/ax25.h
1472F: include/net/ax25.h
1473F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001475B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001476M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001477L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001478L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001479W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001481F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001482
1483B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001484M: Larry Finger <Larry.Finger@lwfinger.net>
1485M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001486L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001487L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001488W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001490F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001491
Richard Purdie300abeb2007-02-07 22:21:07 +00001492BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001493M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001495F: drivers/video/backlight/
1496F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001497
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001498BATMAN ADVANCED
1499M: Marek Lindner <lindner_marek@yahoo.de>
1500M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001501M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001502L: b.a.t.m.a.n@lists.open-mesh.org
1503W: http://www.open-mesh.org/
1504S: Maintained
1505F: net/batman-adv/
1506
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001507BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001508M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001509L: linux-hams@vger.kernel.org
1510W: http://www.baycom.org/~tom/ham/ham.html
1511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001512F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001513
1514BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001515S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001516F: Documentation/filesystems/befs.txt
1517F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001518
1519BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001520M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001522F: Documentation/filesystems/bfs.txt
1523F: fs/bfs/
1524F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001525
Bryan Wu1394f032007-05-06 14:50:22 -07001526BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001527M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001528L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001529W: http://blackfin.uclinux.org
1530S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001531F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001532
Bryan Wue190d6b2007-07-17 14:43:44 +08001533BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001534L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001535W: http://blackfin.uclinux.org
1536S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001537F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001538
Mike Frysinger566da5b2007-06-11 15:31:30 +08001539BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001540M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001541L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001542W: http://blackfin.uclinux.org
1543S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001544F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001545
Mike Frysinger936ed492010-03-10 15:20:38 -08001546BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001547M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001548L: uclinux-dist-devel@blackfin.uclinux.org
1549W: http://blackfin.uclinux.org
1550S: Supported
1551F: drivers/mmc/host/bfin_sdh.c
1552
Bryan Wu1394f032007-05-06 14:50:22 -07001553BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001554M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001555L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001556W: http://blackfin.uclinux.org
1557S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001558F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001559
Bryan Wu1e6d3202007-07-15 02:50:02 +08001560BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001561M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001562L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001563W: http://blackfin.uclinux.org
1564S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001565F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001566
Bryan Wud24ecfc2007-05-01 23:26:32 +02001567BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001568M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001569L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001570W: http://blackfin.uclinux.org/
1571S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001572F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001573
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001574BLINKM RGB LED DRIVER
1575M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1576S: Maintained
1577F: drivers/leds/leds-blinkm.c
1578
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001580M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001581T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001583F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
Joern Engel2b54aae2008-02-06 01:38:02 -08001585BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001586M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001587L: linux-mtd@lists.infradead.org
1588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001589F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001590
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001591BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001592M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001593M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001594M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001595L: linux-bluetooth@vger.kernel.org
1596W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001597T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1598T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001599S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001600F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001603M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001604M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001605M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001606L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001607W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001608T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1609T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001611F: net/bluetooth/
1612F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001615M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001616M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001617L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001618W: http://sourceforge.net/projects/bonding/
1619S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001620F: drivers/net/bonding/
1621F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Gary Zambrano39105892006-06-22 17:26:20 -07001623BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001624M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001625L: netdev@vger.kernel.org
1626S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001627F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001628
Michael Chan948c51e2006-06-04 02:51:39 -07001629BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001630M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001631L: netdev@vger.kernel.org
1632S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001633F: drivers/net/ethernet/broadcom/bnx2.*
1634F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001635
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001636BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001637M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001638L: netdev@vger.kernel.org
1639S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001640F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001641
Stephen Warrenf680f252012-09-15 00:18:54 -06001642BROADCOM BCM2835 ARM ARCHICTURE
1643M: Stephen Warren <swarren@wwwdotorg.org>
1644L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1645T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1646S: Maintained
1647F: arch/arm/mach-bcm2835/
1648F: arch/arm/boot/dts/bcm2835*
1649F: arch/arm/configs/bcm2835_defconfig
1650F: drivers/*/*bcm2835*
1651
Michael Chan948c51e2006-06-04 02:51:39 -07001652BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001653M: Matt Carlson <mcarlson@broadcom.com>
1654M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001655L: netdev@vger.kernel.org
1656S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001657F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001658
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001659BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1660M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001661M: Roland Vossen <rvossen@broadcom.com>
1662M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001663M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
1664M: Kan Yan <kanyan@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001665L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001666L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001667S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001668F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001669
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001670BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1671M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1672L: linux-scsi@vger.kernel.org
1673S: Supported
1674F: drivers/scsi/bnx2fc/
1675
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001676BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1677M: Rafał Miłecki <zajec5@gmail.com>
1678L: linux-wireless@vger.kernel.org
1679S: Maintained
1680F: drivers/bcma/
1681F: include/linux/bcma/
1682
Jing Huang7725ccf2009-09-23 17:46:15 -07001683BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001684M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001685L: linux-scsi@vger.kernel.org
1686S: Supported
1687F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001688
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001689BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1690M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001691L: netdev@vger.kernel.org
1692S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001693F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001694
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001695BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001696M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001697L: linux-scsi@vger.kernel.org
1698S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001699F: block/bsg.c
1700F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001701
Clemens Ladischaf399172011-01-10 16:32:54 +01001702BT87X AUDIO DRIVER
1703M: Clemens Ladisch <clemens@ladisch.de>
1704L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1705T: git git://git.alsa-project.org/alsa-kernel.git
1706S: Maintained
1707F: Documentation/sound/alsa/Bt87x.txt
1708F: sound/pci/bt87x.c
1709
Michael Bueschff1d5c22008-07-25 01:46:10 -07001710BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001711M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001712W: http://bu3sch.de/btgpio.php
1713S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001714F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001715
Joe Percheseb1eb042009-01-21 10:49:16 -05001716BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001717M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001718L: linux-btrfs@vger.kernel.org
1719W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001720Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001721T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001723F: Documentation/filesystems/btrfs.txt
1724F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001727M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001728L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001729W: http://linuxtv.org
Joe Perches08deed12012-03-23 15:01:57 -07001730T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001732F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001733F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Clemens Ladischaf399172011-01-10 16:32:54 +01001735C-MEDIA CMI8788 DRIVER
1736M: Clemens Ladisch <clemens@ladisch.de>
1737L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1738T: git git://git.alsa-project.org/alsa-kernel.git
1739S: Maintained
1740F: sound/pci/oxygen/
1741
Mark Salter21413552011-10-04 11:21:42 -04001742C6X ARCHITECTURE
1743M: Mark Salter <msalter@redhat.com>
1744M: Aurelien Jacquiot <a-jacquiot@ti.com>
1745L: linux-c6x-dev@linux-c6x.org
1746W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1747S: Maintained
1748F: arch/c6x/
1749
David Howellsa5432f52009-04-20 15:46:45 +01001750CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001751M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001752L: linux-cachefs@redhat.com
1753S: Supported
1754F: Documentation/filesystems/caching/cachefiles.txt
1755F: fs/cachefiles/
1756
Jonathan Corbet77d51402007-03-22 19:44:17 -03001757CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001758M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001759L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07001760T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001762F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001763F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001764
Joe Perches201b6ba2010-09-07 20:33:24 +00001765CAIF NETWORK LAYER
1766M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1767L: netdev@vger.kernel.org
1768S: Supported
1769F: Documentation/networking/caif/
1770F: drivers/net/caif/
1771F: include/linux/caif/
1772F: include/net/caif/
1773F: net/caif/
1774
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001775CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001776M: Muli Ben-Yehuda <muli@il.ibm.com>
1777M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001778L: discuss@x86-64.org
1779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001780F: arch/x86/kernel/pci-calgary_64.c
1781F: arch/x86/kernel/tce_64.c
1782F: arch/x86/include/asm/calgary.h
1783F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001784
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001785CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001786M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001787L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001788W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001789T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001790S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001791F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001792F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001793F: include/linux/can/core.h
1794F: include/linux/can/bcm.h
1795F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001796F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001797
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001798CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001799M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001800M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001801L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001802W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001803T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001804S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001805F: drivers/net/can/
1806F: include/linux/can/dev.h
1807F: include/linux/can/error.h
1808F: include/linux/can/netlink.h
1809F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001810
James Morris95d16c72012-03-16 12:05:48 +11001811CAPABILITIES
1812M: Serge Hallyn <serge.hallyn@canonical.com>
1813L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001814S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001815F: include/linux/capability.h
1816F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001817F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001818F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001819
Arnd Bergmannb8154542008-05-16 11:10:59 +02001820CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001821M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001822L: linuxppc-dev@lists.ozlabs.org
1823L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001824W: http://www.ibm.com/developerworks/power/cell/
1825S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001826F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001827F: arch/powerpc/include/asm/spu*.h
1828F: arch/powerpc/oprofile/*cell*
1829F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001830
Sage Weil9030aaf2009-10-06 11:31:15 -07001831CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001832M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001833L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001834W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001835T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001836S: Supported
1837F: Documentation/filesystems/ceph.txt
1838F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001839F: net/ceph
1840F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001841F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001842
David Vrabel18332a82008-09-17 16:34:44 +01001843CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001844L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001845S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001846F: Documentation/usb/WUSB-Design-overview.txt
1847F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001848F: drivers/usb/host/hwa-hc.c
1849F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001850F: drivers/usb/wusbcore/
1851F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001852
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001853CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001854M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001855W: http://miguelojeda.es/auxdisplay.htm
1856W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001858F: drivers/auxdisplay/cfag12864b.c
1859F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001860
1861CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001862M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001863W: http://miguelojeda.es/auxdisplay.htm
1864W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001866F: drivers/auxdisplay/cfag12864bfb.c
1867F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001868
Johannes Berg704232c2007-04-23 12:20:05 -07001869CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001870M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001871L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001872W: http://wireless.kernel.org/
1873T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1874T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001876F: include/linux/nl80211.h
1877F: include/net/cfg80211.h
1878F: net/wireless/*
1879X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001880
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001881CHAR and MISC DRIVERS
1882M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001883M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001884T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001885S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001886F: drivers/char/*
1887F: drivers/misc/*
1888
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001889CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001890M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001891S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001892F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001893
Harry Weif8407f22011-02-25 14:44:15 -08001894CHINESE DOCUMENTATION
1895M: Harry Wei <harryxiyou@gmail.com>
1896L: xiyoulinuxkernelgroup@googlegroups.com
1897L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1898S: Maintained
1899F: Documentation/zh_CN/
1900
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001901CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1902M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1903L: linux-usb@vger.kernel.org
1904S: Maintained
1905F: drivers/usb/chipidea/
1906
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001907CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001908M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001909M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001910M: Neel Patel <neepatel@cisco.com>
1911M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001912S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001913F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001914
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001915CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001916M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001917L: netdev@vger.kernel.org
1918S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001919F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001920
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001921CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001922M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001923L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001925F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001926
Timur Tabid9e9d822008-04-24 08:45:26 +10001927CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001928M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001929L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001930S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001931F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001932
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001933CLEANCACHE API
1934M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1935L: linux-kernel@vger.kernel.org
1936S: Maintained
1937F: mm/cleancache.c
1938F: include/linux/cleancache.h
1939
Russell Kingd4275352009-04-16 14:05:27 +01001940CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001941M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001942S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001943F: include/linux/clk.h
1944
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001945CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001946M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001947M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1948M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001949L: linux-scsi@vger.kernel.org
1950S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001951F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001952
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001953CMPC ACPI DRIVER
1954M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1955M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001956L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001957S: Supported
1958F: drivers/platform/x86/classmate-laptop.c
1959
Nicolas Palix74425ee2010-06-06 17:15:01 +02001960COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02001961M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02001962M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02001963M: Nicolas Palix <nicolas.palix@imag.fr>
1964L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02001965W: http://coccinelle.lip6.fr/
1966S: Supported
1967F: scripts/coccinelle/
1968F: scripts/coccicheck
1969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001971M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972M: coda@cs.cmu.edu
1973L: codalist@coda.cs.cmu.edu
1974W: http://www.coda.cs.cmu.edu/
1975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001976F: Documentation/filesystems/coda.txt
1977F: fs/coda/
1978F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
Mike Turquette7704add2012-05-02 18:37:45 -07001980COMMON CLK FRAMEWORK
1981M: Mike Turquette <mturquette@ti.com>
1982M: Mike Turquette <mturquette@linaro.org>
1983L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
1984T: git git://git.linaro.org/people/mturquette/linux.git
1985S: Maintained
1986F: drivers/clk/clk.c
1987F: drivers/clk/clk-*
1988F: include/linux/clk-pr*
1989
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001990COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07001991M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04001992L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08001993L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001994W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001995Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07001996T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001997S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001998F: Documentation/filesystems/cifs.txt
1999F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002002M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002003L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002005F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
2007COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002008M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002009L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002011F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
2013COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002014M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002015L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002017F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002019COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002020M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002021L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002023F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002024
Simon Arlott949be0f2007-03-06 02:47:46 -08002025CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002026M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002027L: accessrunner-general@lists.sourceforge.net
2028W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002030F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002031
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002032CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002033M: Joel Becker <jlbec@evilplan.org>
2034T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002035S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002036F: fs/configfs/
2037F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002038
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002039CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002040M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002041L: netdev@vger.kernel.org
2042S: Maintained
2043F: drivers/connector/
2044
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002045CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002046M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002047M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002048L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002049L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002050T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002052F: include/linux/cgroup*
2053F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002054F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002055
Rudolf Marekbebe4672007-05-08 17:22:02 +02002056CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002057M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002058L: lm-sensors@lm-sensors.org
2059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002060F: Documentation/hwmon/coretemp
2061F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002062
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002064M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065W: http://www.fi.muni.cz/~kas/cosa/
2066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002067F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Florian Fainelli4371ee32009-06-01 02:43:17 -07002069CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002070M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002071L: netdev@vger.kernel.org
2072S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002073F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002074
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002076M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002077L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002078L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002080F: drivers/cpufreq/
2081F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002084M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002086F: arch/x86/kernel/cpuid.c
2087F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002089CPU POWER MONITORING SUBSYSTEM
2090M: Dominik Brodowski <linux@dominikbrodowski.net>
2091M: Thomas Renninger <trenn@suse.de>
2092S: Maintained
2093F: tools/power/cpupower
2094
Paul Jacksoned90fb42005-09-27 21:45:37 -07002095CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002096M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002097W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002098W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07002099S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002100F: Documentation/cgroups/cpusets.txt
2101F: include/linux/cpuset.h
2102F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002105W: http://sourceforge.net/projects/cramfs/
2106S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002107F: Documentation/filesystems/cramfs.txt
2108F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
2110CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002111M: Mikael Starvik <starvik@axis.com>
2112M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002113L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114W: http://developer.axis.com
2115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002116F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002117F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
2119CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002120M: Herbert Xu <herbert@gondor.apana.org.au>
2121M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002123T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002125F: Documentation/crypto/
2126F: arch/*/crypto/
2127F: crypto/
2128F: drivers/crypto/
2129F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
Neil Horman5b07bd52009-02-05 16:03:04 +11002131CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002132M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002133L: linux-crypto@vger.kernel.org
2134S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002135F: crypto/ansi_cprng.c
2136F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002137
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002138CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002139M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002141F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002142
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002143CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002144M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002145L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002146L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07002147T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002148W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002149W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002151F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002152F: drivers/media/pci/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002153
Antti Palosaari91952bc2012-10-01 12:28:46 -03002154CXD2820R MEDIA DRIVER
2155M: Antti Palosaari <crope@iki.fi>
2156L: linux-media@vger.kernel.org
2157W: http://linuxtv.org/
2158W: http://palosaari.fi/linux/
2159Q: http://patchwork.linuxtv.org/project/linux-media/list/
2160T: git git://linuxtv.org/anttip/media_tree.git
2161S: Maintained
2162F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002163
Steve Wisee5ec3782008-05-20 14:06:33 -07002164CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002165M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002166L: netdev@vger.kernel.org
2167W: http://www.chelsio.com
2168S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002169F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002170
2171CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002172M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002173L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002174W: http://www.openfabrics.org
2175S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002176F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002177
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002178CXGB4 ETHERNET DRIVER (CXGB4)
2179M: Dimitris Michailidis <dm@chelsio.com>
2180L: netdev@vger.kernel.org
2181W: http://www.chelsio.com
2182S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002183F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002184
2185CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2186M: Steve Wise <swise@chelsio.com>
2187L: linux-rdma@vger.kernel.org
2188W: http://www.openfabrics.org
2189S: Supported
2190F: drivers/infiniband/hw/cxgb4/
2191
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002192CXGB4VF ETHERNET DRIVER (CXGB4VF)
2193M: Casey Leedom <leedom@chelsio.com>
2194L: netdev@vger.kernel.org
2195W: http://www.chelsio.com
2196S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002197F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002198
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002199STMMAC ETHERNET DRIVER
2200M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2201L: netdev@vger.kernel.org
2202W: http://www.stlinux.com
2203S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002204F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002205
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002207M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002208L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209W: http://www.arm.linux.org.uk/
2210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002211F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002212
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002214M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002215W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002217F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
2219CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002221S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002222F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002223F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
2225CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002227S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002228F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002230CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002231M: Javier Martinez Canillas <javier@dowhile0.org>
2232L: linux-input@vger.kernel.org
2233S: Maintained
2234F: drivers/input/touchscreen/cyttsp*
2235F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002236
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002238M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239W: http://yaina.de/jreuter/
2240W: http://www.qsl.net/dl1bke/
2241L: linux-hams@vger.kernel.org
2242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002243F: net/ax25/af_ax25.c
2244F: net/ax25/ax25_dev.c
2245F: net/ax25/ax25_ds_*
2246F: net/ax25/ax25_in.c
2247F: net/ax25/ax25_out.c
2248F: net/ax25/ax25_timer.c
2249F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002251DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002252L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002253S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002254F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002255F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002256
2257DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002258M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002259W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002260M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002262F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002263
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002265M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002266M: Ali Akcaagac <aliakc@web.de>
2267M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002269L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270L: http://lists.twibble.org/mailman/listinfo/dc395x/
2271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002272F: Documentation/scsi/dc395x.txt
2273F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002275DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002276M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002277L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002278W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002280F: include/linux/dccp.h
2281F: include/linux/tfrc.h
2282F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002283
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285W: http://linux-decnet.sourceforge.net
2286L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002287S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002288F: Documentation/networking/decnet.txt
2289F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
2291DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002292M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002294F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002296DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002297M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002298L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002300F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002301
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002303M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304W: http://www.debian.org/~dz/i8k/
2305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002306F: drivers/char/i8k.c
2307F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
Doug Warzecha90563ec2005-09-06 15:17:15 -07002309DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002310M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002312F: Documentation/dcdbas.txt
2313F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002314
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002315DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002316M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002317S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002318F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002319
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002320DESIGNWARE USB3 DRD IP DRIVER
2321M: Felipe Balbi <balbi@ti.com>
2322L: linux-usb@vger.kernel.org
2323L: linux-omap@vger.kernel.org
2324T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2325S: Maintained
2326F: drivers/usb/dwc3/
2327
Kyungmin Park89d07762012-01-10 15:09:09 -08002328DEVICE FREQUENCY (DEVFREQ)
2329M: MyungJoo Ham <myungjoo.ham@samsung.com>
2330M: Kyungmin Park <kyungmin.park@samsung.com>
2331L: linux-kernel@vger.kernel.org
2332S: Maintained
2333F: drivers/devfreq/
2334
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002336M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338S: Maintained
2339
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002340DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002341M: Alasdair Kergon <agk@redhat.com>
2342M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002343L: dm-devel@redhat.com
2344W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002345Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002346T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002348F: Documentation/device-mapper/
2349F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002350F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002351F: include/linux/device-mapper.h
2352F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002353
Guenter Roeck335d7c52011-01-26 11:45:49 -08002354DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002355M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002356L: linux-i2c@vger.kernel.org
2357S: Maintained
2358F: drivers/i2c/busses/i2c-diolan-u2c.c
2359
Randy Dunlape7839f22008-10-12 16:11:45 -07002360DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002361M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002363F: Documentation/filesystems/dnotify.txt
2364F: fs/notify/dnotify/
2365F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
2367DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002368M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2370W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2371W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2372S: Maintained
2373
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002374DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002375M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002377F: Documentation/filesystems/quota.txt
2378F: fs/quota/
2379F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380
Bernie Thompson702686a2012-03-01 13:52:13 -08002381DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2382M: Bernie Thompson <bernie@plugable.com>
2383L: linux-fbdev@vger.kernel.org
2384S: Maintained
2385W: http://plugable.com/category/projects/udlfb/
2386F: drivers/video/udlfb.c
2387F: include/video/udlfb.h
2388F: Documentation/fb/udlfb.txt
2389
Randy Dunlape7839f22008-10-12 16:11:45 -07002390DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002391M: Christine Caulfield <ccaulfie@redhat.com>
2392M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002393L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002394W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002395T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002396S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002397F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002398
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302399DMA BUFFER SHARING FRAMEWORK
2400M: Sumit Semwal <sumit.semwal@linaro.org>
2401S: Maintained
2402L: linux-media@vger.kernel.org
2403L: dri-devel@lists.freedesktop.org
2404L: linaro-mm-sig@lists.linaro.org
2405F: drivers/base/dma-buf*
2406F: include/linux/dma-buf*
2407F: Documentation/dma-buf-sharing.txt
2408T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2409
Dan Williamsb3e5f262007-08-07 10:26:35 -07002410DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002411M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002412M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002413S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002414F: drivers/dma/
2415F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302416T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2417T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002418
Juerg Haefligerb8250372007-06-09 10:11:16 -04002419DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002420M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002421L: lm-sensors@lm-sensors.org
2422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002423F: Documentation/hwmon/dme1737
2424F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002425
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002426DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002427M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002428L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002429S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002430F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002431
Joe Perches7d2c86b2009-04-07 20:59:01 -07002432DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002433M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002434L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002435T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002437F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002438
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002440M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441L: blinux-list@redhat.com
2442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002443F: drivers/char/dtlk.c
2444F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002446DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002447M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002448L: linux-scsi@vger.kernel.org
2449W: http://www.adaptec.com/
2450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002451F: drivers/scsi/dpt*
2452F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002453
Philipp Reisnerb411b362009-09-25 16:07:19 -07002454DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002455P: Philipp Reisner
2456P: Lars Ellenberg
2457M: drbd-dev@lists.linbit.com
2458L: drbd-user@lists.linbit.com
2459W: http://www.drbd.org
2460T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2461T: git git://git.drbd.org/drbd-8.3.git
2462S: Supported
2463F: drivers/block/drbd/
2464F: lib/lru_cache.c
2465F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002466
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002467DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002468M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002469T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002471F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002472F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002473F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002474F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002475F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002476F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002477F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
2479DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002480M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002481L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002482T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002484F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002485F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Chris Wilson8daf7472010-09-28 14:07:26 +01002487INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002488M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002489L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002490L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002491T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002492S: Supported
2493F: drivers/gpu/drm/i915
2494F: include/drm/i915*
2495
Kyungmin Park398a6d42011-11-02 11:33:16 +09002496DRM DRIVERS FOR EXYNOS
2497M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002498M: Joonyoung Shim <jy0922.shim@samsung.com>
2499M: Seung-Woo Kim <sw0312.kim@samsung.com>
2500M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002501L: dri-devel@lists.freedesktop.org
2502S: Supported
2503F: drivers/gpu/drm/exynos
2504F: include/drm/exynos*
2505
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002507M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002508L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002510F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511
Antti Palosaari91952bc2012-10-01 12:28:46 -03002512DVB_USB_AF9015 MEDIA DRIVER
2513M: Antti Palosaari <crope@iki.fi>
2514L: linux-media@vger.kernel.org
2515W: http://linuxtv.org/
2516W: http://palosaari.fi/linux/
2517Q: http://patchwork.linuxtv.org/project/linux-media/list/
2518T: git git://linuxtv.org/anttip/media_tree.git
2519S: Maintained
2520F: drivers/media/usb/dvb-usb-v2/af9015*
2521
2522DVB_USB_AF9035 MEDIA DRIVER
2523M: Antti Palosaari <crope@iki.fi>
2524L: linux-media@vger.kernel.org
2525W: http://linuxtv.org/
2526W: http://palosaari.fi/linux/
2527Q: http://patchwork.linuxtv.org/project/linux-media/list/
2528T: git git://linuxtv.org/anttip/media_tree.git
2529S: Maintained
2530F: drivers/media/usb/dvb-usb-v2/af9035*
2531
2532DVB_USB_ANYSEE MEDIA DRIVER
2533M: Antti Palosaari <crope@iki.fi>
2534L: linux-media@vger.kernel.org
2535W: http://linuxtv.org/
2536W: http://palosaari.fi/linux/
2537Q: http://patchwork.linuxtv.org/project/linux-media/list/
2538T: git git://linuxtv.org/anttip/media_tree.git
2539S: Maintained
2540F: drivers/media/usb/dvb-usb-v2/anysee*
2541
2542DVB_USB_AU6610 MEDIA DRIVER
2543M: Antti Palosaari <crope@iki.fi>
2544L: linux-media@vger.kernel.org
2545W: http://linuxtv.org/
2546W: http://palosaari.fi/linux/
2547Q: http://patchwork.linuxtv.org/project/linux-media/list/
2548T: git git://linuxtv.org/anttip/media_tree.git
2549S: Maintained
2550F: drivers/media/usb/dvb-usb-v2/au6610*
2551
2552DVB_USB_CE6230 MEDIA DRIVER
2553M: Antti Palosaari <crope@iki.fi>
2554L: linux-media@vger.kernel.org
2555W: http://linuxtv.org/
2556W: http://palosaari.fi/linux/
2557Q: http://patchwork.linuxtv.org/project/linux-media/list/
2558T: git git://linuxtv.org/anttip/media_tree.git
2559S: Maintained
2560F: drivers/media/usb/dvb-usb-v2/ce6230*
2561
Michael Krufkyd099dea2012-10-02 00:56:20 -03002562DVB_USB_CXUSB MEDIA DRIVER
2563M: Michael Krufky <mkrufky@linuxtv.org>
2564L: linux-media@vger.kernel.org
2565W: http://linuxtv.org/
2566W: http://github.com/mkrufky
2567Q: http://patchwork.linuxtv.org/project/linux-media/list/
2568T: git git://linuxtv.org/media_tree.git
2569S: Maintained
2570F: drivers/media/usb/dvb-usb-v2/cxusb*
2571
Antti Palosaari91952bc2012-10-01 12:28:46 -03002572DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2573M: Antti Palosaari <crope@iki.fi>
2574L: linux-media@vger.kernel.org
2575W: http://linuxtv.org/
2576W: http://palosaari.fi/linux/
2577Q: http://patchwork.linuxtv.org/project/linux-media/list/
2578T: git git://linuxtv.org/anttip/media_tree.git
2579S: Maintained
2580F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2581
2582DVB_USB_EC168 MEDIA DRIVER
2583M: Antti Palosaari <crope@iki.fi>
2584L: linux-media@vger.kernel.org
2585W: http://linuxtv.org/
2586W: http://palosaari.fi/linux/
2587Q: http://patchwork.linuxtv.org/project/linux-media/list/
2588T: git git://linuxtv.org/anttip/media_tree.git
2589S: Maintained
2590F: drivers/media/usb/dvb-usb-v2/ec168*
2591
Michael Krufky8856f5f2012-10-02 00:55:50 -03002592DVB_USB_MXL111SF MEDIA DRIVER
2593M: Michael Krufky <mkrufky@linuxtv.org>
2594L: linux-media@vger.kernel.org
2595W: http://linuxtv.org/
2596W: http://github.com/mkrufky
2597Q: http://patchwork.linuxtv.org/project/linux-media/list/
2598T: git git://linuxtv.org/mkrufky/mxl111sf.git
2599S: Maintained
2600F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2601
Antti Palosaari91952bc2012-10-01 12:28:46 -03002602DVB_USB_RTL28XXU MEDIA DRIVER
2603M: Antti Palosaari <crope@iki.fi>
2604L: linux-media@vger.kernel.org
2605W: http://linuxtv.org/
2606W: http://palosaari.fi/linux/
2607Q: http://patchwork.linuxtv.org/project/linux-media/list/
2608T: git git://linuxtv.org/anttip/media_tree.git
2609S: Maintained
2610F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2611
2612DVB_USB_V2 MEDIA DRIVER
2613M: Antti Palosaari <crope@iki.fi>
2614L: linux-media@vger.kernel.org
2615W: http://linuxtv.org/
2616W: http://palosaari.fi/linux/
2617Q: http://patchwork.linuxtv.org/project/linux-media/list/
2618T: git git://linuxtv.org/anttip/media_tree.git
2619S: Maintained
2620F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2621F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2622
Jason Baronac0ac382011-08-11 14:36:43 -04002623DYNAMIC DEBUG
2624M: Jason Baron <jbaron@redhat.com>
2625S: Maintained
2626F: lib/dynamic_debug.c
2627F: include/linux/dynamic_debug.h
2628
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002629DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002630M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002631S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002632F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002633
Antti Palosaari91952bc2012-10-01 12:28:46 -03002634E4000 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/tuners/e4000*
2643
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002645M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002646L: linux-eata@i-connect.net
2647L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002649F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
2651EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002652M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653L: linux-scsi@vger.kernel.org
2654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002655F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
2657EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002658M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002659L: linux-eata@i-connect.net
2660L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002662F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663
2664EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002665M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002666L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667W: http://ebtables.sourceforge.net/
2668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002669F: include/linux/netfilter_bridge/ebt_*.h
2670F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
Antti Palosaari91952bc2012-10-01 12:28:46 -03002672EC100 MEDIA DRIVER
2673M: Antti Palosaari <crope@iki.fi>
2674L: linux-media@vger.kernel.org
2675W: http://linuxtv.org/
2676W: http://palosaari.fi/linux/
2677Q: http://patchwork.linuxtv.org/project/linux-media/list/
2678T: git git://linuxtv.org/anttip/media_tree.git
2679S: Maintained
2680F: drivers/media/dvb-frontends/ec100*
2681
Michael Halcrow237fead2006-10-04 02:16:22 -07002682ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002683M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002684M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002685L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002686W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002687S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002688F: Documentation/filesystems/ecryptfs.txt
2689F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002690
Alan Coxda9bb1d2006-01-18 17:44:13 -08002691EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002692M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002693L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002694W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002695S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002696F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002697F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002698F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002699
Borislav Petkovc476c232009-05-20 20:31:58 +02002700EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002701M: Doug Thompson <dougthompson@xmission.com>
2702M: Borislav Petkov <borislav.petkov@amd.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002703L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002704W: bluesmoke.sourceforge.net
2705S: Supported
2706F: drivers/edac/amd64_edac*
2707
Dave Peterson0e438e32006-03-26 01:38:55 -08002708EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002709M: Mark Gross <mark.gross@intel.com>
2710M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002711L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002712W: bluesmoke.sourceforge.net
2713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002714F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002715
2716EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002717M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002718L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002719W: bluesmoke.sourceforge.net
2720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002721F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002722
Douglas Thompson6bc78402007-07-19 01:50:12 -07002723EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002724M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002725L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002726W: bluesmoke.sourceforge.net
2727S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002728F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002729
2730EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002731M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002732L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002733W: bluesmoke.sourceforge.net
2734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002735F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002736
2737EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002738M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002739L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002740W: bluesmoke.sourceforge.net
2741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002742F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002743
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002744EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002745M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002746L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002747W: bluesmoke.sourceforge.net
2748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002749F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002750
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002751EDAC-I7300
2752M: Mauro Carvalho Chehab <mchehab@redhat.com>
2753L: linux-edac@vger.kernel.org
2754W: bluesmoke.sourceforge.net
2755S: Maintained
2756F: drivers/edac/i7300_edac.c
2757
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002758EDAC-I7CORE
2759M: Mauro Carvalho Chehab <mchehab@redhat.com>
2760L: linux-edac@vger.kernel.org
2761W: bluesmoke.sourceforge.net
2762S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002763F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002764
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002765EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002766M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302767M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002768L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002769W: bluesmoke.sourceforge.net
2770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002771F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002772
2773EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002774M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002775L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002776W: bluesmoke.sourceforge.net
2777S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002778F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002779
Dave Peterson0e438e32006-03-26 01:38:55 -08002780EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002781M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002782L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002783W: bluesmoke.sourceforge.net
2784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002785F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002786
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002787EDAC-SBRIDGE
2788M: Mauro Carvalho Chehab <mchehab@redhat.com>
2789L: linux-edac@vger.kernel.org
2790W: bluesmoke.sourceforge.net
2791S: Maintained
2792F: drivers/edac/sb_edac.c
2793
Clemens Ladischaf399172011-01-10 16:32:54 +01002794EDIROL UA-101/UA-1000 DRIVER
2795M: Clemens Ladisch <clemens@ladisch.de>
2796L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2797T: git git://git.alsa-project.org/alsa-kernel.git
2798S: Maintained
2799F: sound/usb/misc/ua101.c
2800
Matt Fleming1f7df952012-10-03 10:04:02 +01002801EXTENSIBLE FIRMWARE INTERFACE (EFI)
2802M: Matt Fleming <matt.fleming@intel.com>
2803L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002804T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002805S: Maintained
2806F: Documentation/x86/efi-stub.txt
2807F: arch/ia64/kernel/efi.c
2808F: arch/x86/boot/compressed/eboot.[ch]
2809F: arch/x86/include/asm/efi.h
2810F: arch/x86/platform/efi/*
2811F: drivers/firmware/efivars.c
2812F: include/linux/efi*.h
2813
Peter Jones85a00d92010-09-22 13:05:04 -07002814EFIFB FRAMEBUFFER DRIVER
2815L: linux-fbdev@vger.kernel.org
2816M: Peter Jones <pjones@redhat.com>
2817S: Maintained
2818F: drivers/video/efifb.c
2819
Josh Triplett0bee8d22006-07-30 03:03:58 -07002820EFS FILESYSTEM
2821W: http://aeschi.ch.eu.org/efs/
2822S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002823F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002824
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002825EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002826M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2827M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002828L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002829S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002830F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002831
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002832EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002833M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002834L: netdev@vger.kernel.org
2835S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002836F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002837
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002838EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002839M: Paul Gortmaker <paul.gortmaker@windriver.com>
2840M: Matt Mackall <mpm@selenic.com>
2841M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002842L: linux-embedded@vger.kernel.org
2843S: Maintained
2844
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002845EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002846M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002847L: linux-scsi@vger.kernel.org
2848W: http://sourceforge.net/projects/lpfcxxxx
2849S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002850F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002851
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002852ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002853M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002854S: Maintained
2855F: drivers/misc/cb710/
2856F: drivers/mmc/host/cb710-mmc.*
2857F: include/linux/cb710.h
2858
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002859ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2860M: Maxim Levitsky <maximlevitsky@gmail.com>
2861S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002862F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002863
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002865M: Christopher Hoover <ch@murgatroid.com>
2866M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002868F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002870EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002871M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002872S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002873T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002874F: drivers/video/s1d13xxxfb.c
2875F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002876
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002878M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002879L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002881F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882
2883ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002884M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002885L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002886L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002887W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002889F: include/linux/netfilter_bridge/
2890F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
2892ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002893M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002895F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
2897EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002898M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002899L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002901F: Documentation/filesystems/ext2.txt
2902F: fs/ext2/
2903F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904
2905EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002906M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002907M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002908M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002909L: linux-ext4@vger.kernel.org
2910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002911F: Documentation/filesystems/ext3.txt
2912F: fs/ext3/
2913F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002914
2915EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002916M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002917M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002918L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002919W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002920Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002922F: Documentation/filesystems/ext4.txt
2923F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924
Mimi Zoharc5532b02011-08-17 18:52:24 -04002925Extended Verification Module (EVM)
2926M: Mimi Zohar <zohar@us.ibm.com>
2927S: Supported
2928F: security/integrity/evm/
2929
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09002930EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
2931M: MyungJoo Ham <myungjoo.ham@samsung.com>
2932M: Chanwoo Choi <cw00.choi@samsung.com>
2933L: linux-kernel@vger.kernel.org
2934S: Maintained
2935F: drivers/extcon/
2936F: Documentation/extcon/
2937
Jingoo Han0a799512012-02-06 11:30:39 +09002938EXYNOS DP DRIVER
2939M: Jingoo Han <jg1.han@samsung.com>
2940L: linux-fbdev@vger.kernel.org
2941S: Maintained
2942F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07002943F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09002944
Donghwa Lee33ad3912012-03-06 11:44:58 +09002945EXYNOS MIPI DISPLAY DRIVERS
2946M: Inki Dae <inki.dae@samsung.com>
2947M: Donghwa Lee <dh09.lee@samsung.com>
2948M: Kyungmin Park <kyungmin.park@samsung.com>
2949L: linux-fbdev@vger.kernel.org
2950S: Maintained
2951F: drivers/video/exynos/exynos_mipi*
2952F: include/video/exynos_mipi*
2953
Jean Delvaree53004e2006-01-09 23:26:14 +01002954F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002955M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002956L: lm-sensors@lm-sensors.org
2957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002958F: Documentation/hwmon/f71805f
2959F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002960
Michael Büscheea977e2012-04-02 12:14:32 -03002961FC0011 TUNER DRIVER
2962M: Michael Buesch <m@bues.ch>
2963L: linux-media@vger.kernel.org
2964S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03002965F: drivers/media/tuners/fc0011.h
2966F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03002967
Antti Palosaari91952bc2012-10-01 12:28:46 -03002968FC2580 MEDIA DRIVER
2969M: Antti Palosaari <crope@iki.fi>
2970L: linux-media@vger.kernel.org
2971W: http://linuxtv.org/
2972W: http://palosaari.fi/linux/
2973Q: http://patchwork.linuxtv.org/project/linux-media/list/
2974T: git git://linuxtv.org/anttip/media_tree.git
2975S: Maintained
2976F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
Eric Paris88b2dbd2010-08-18 12:25:50 -04002978FANOTIFY
2979M: Eric Paris <eparis@redhat.com>
2980S: Maintained
2981F: fs/notify/fanotify/
2982F: include/linux/fanotify.h
2983
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002985M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986W: http://www.farsite.co.uk/
2987S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002988F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989
Akinobu Mitac5408b82007-04-23 14:41:20 -07002990FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002991M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07002992S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002993F: Documentation/fault-injection/
2994F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002995
Robert Lovecae727d2010-02-16 12:16:00 -08002996FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
2997M: Robert Love <robert.w.love@intel.com>
2998L: devel@open-fcoe.org
2999W: www.Open-FCoE.org
3000S: Supported
3001F: drivers/scsi/libfc/
3002F: drivers/scsi/fcoe/
3003F: include/scsi/fc/
3004F: include/scsi/libfc.h
3005F: include/scsi/libfcoe.h
3006
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003007FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003008M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003009L: linux-fsdevel@vger.kernel.org
3010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003011F: include/linux/fcntl.h
3012F: include/linux/fs.h
3013F: fs/fcntl.c
3014F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003015
3016FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003017M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003018L: linux-fsdevel@vger.kernel.org
3019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003020F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003021
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003022FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003023M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003024L: lm-sensors@lm-sensors.org
3025S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003026F: drivers/hwmon/f75375s.c
3027F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003028
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003029FIREWIRE AUDIO DRIVERS
3030M: Clemens Ladisch <clemens@ladisch.de>
3031L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3032T: git git://git.alsa-project.org/alsa-kernel.git
3033S: Maintained
3034F: sound/firewire/
3035
Chris Boota511ce32012-04-14 17:50:35 -07003036FIREWIRE SBP-2 TARGET
3037M: Chris Boot <bootc@bootc.net>
3038L: linux-scsi@vger.kernel.org
3039L: target-devel@vger.kernel.org
3040L: linux1394-devel@lists.sourceforge.net
3041T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3042S: Maintained
3043F: drivers/target/sbp/
3044
Joe Perches7d2c86b2009-04-07 20:59:01 -07003045FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003046M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003047L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003048W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003049T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003051F: drivers/firewire/
3052F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003053F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003054
3055FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003056M: Ming Lei <ming.lei@canonical.com>
3057L: linux-kernel@vger.kernel.org
3058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003059F: Documentation/firmware_class/
3060F: drivers/base/firmware*.c
3061F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003062
Jiri Kosina8206f662012-05-18 13:52:29 +02003063FLOPPY DRIVER
3064M: Jiri Kosina <jkosina@suse.cz>
3065T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3066S: Odd fixes
3067F: drivers/block/floppy.c
3068
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003069FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003070M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003071W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003073F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003074
3075FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003076L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003077S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003078F: drivers/net/wan/dlci.c
3079F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003080
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003082M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003083L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003085Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003086T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003088F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003089F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003090F: drivers/video/
3091F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003092F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
Zhang Wei173acc72008-03-01 07:42:48 -07003094FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003095M: Li Yang <leoli@freescale.com>
3096M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003097L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003099F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003100
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003101FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003102M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003103L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003104L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003106F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003107
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003108FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003109M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003110L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003111L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003113F: arch/arm/plat-mxc/include/mach/imxfb.h
3114F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003115
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003116FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003117M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3118M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003119L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003120L: netdev@vger.kernel.org
3121S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003122F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003123F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003124
Timur Tabid9e9d822008-04-24 08:45:26 +10003125FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003126M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003127L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003128S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003129F: arch/powerpc/sysdev/qe_lib/
3130F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003131
Joe Perchesb55ef922009-10-26 16:49:46 -07003132FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003133M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003134L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003135L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003136S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003137F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003138
Li Yangbeaf53b2007-05-25 13:54:02 +08003139FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003140M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003141L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003142L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003143S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003144F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003145
Timur Tabid9e9d822008-04-24 08:45:26 +10003146FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003147M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003148L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003149S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003150F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003151
3152FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003153M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003154L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003155L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003156S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003157F: sound/soc/fsl/fsl*
3158F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003159
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003161M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003164F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165
Pavel Machek71038f52009-01-15 13:51:02 -08003166FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003167M: Pavel Machek <pavel@ucw.cz>
3168M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003169L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003170S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003171F: Documentation/power/freezing-of-tasks.txt
3172F: include/linux/freezer.h
3173F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003174
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003175FRONTSWAP API
3176M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3177L: linux-kernel@vger.kernel.org
3178S: Maintained
3179F: mm/frontswap.c
3180F: include/linux/frontswap.h
3181
David Howellsa5432f52009-04-20 15:46:45 +01003182FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003183M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003184L: linux-cachefs@redhat.com
3185S: Supported
3186F: Documentation/filesystems/caching/
3187F: fs/fscache/
3188F: include/linux/fscache*.h
3189
David Howells5ab7ffe2007-04-10 15:10:45 +01003190FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003191M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003193F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
Jonathan Woithe20b93732008-06-11 10:14:56 +09303195FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303196M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003197L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003199F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303200
Heungjun Kim4da621b2011-11-11 08:05:33 -03003201FUJITSU M-5MO LS CAMERA ISP DRIVER
3202M: Kyungmin Park <kyungmin.park@samsung.com>
3203M: Heungjun Kim <riverful.kim@samsung.com>
3204L: linux-media@vger.kernel.org
3205S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003206F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003207F: include/media/m5mols.h
3208
Robert Gerlach2d24c492012-01-18 14:26:22 +01003209FUJITSU TABLET EXTRAS
3210M: Robert Gerlach <khnz@gmx.de>
3211L: platform-driver-x86@vger.kernel.org
3212S: Maintained
3213F: drivers/platform/x86/fujitsu-tablet.c
3214
Miklos Szeredi04578f12005-09-09 13:10:22 -07003215FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003216M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003217L: fuse-devel@lists.sourceforge.net
3218W: http://fuse.sourceforge.net/
3219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003220F: fs/fuse/
3221F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003222
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003224M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003226S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003227F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228
3229GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003230M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231L: linux-scsi@vger.kernel.org
3232W: http://www.icp-vortex.com/
3233S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003234F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003236GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003237M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003238S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003239F: drivers/i2c/busses/i2c-gpio.c
3240F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003241
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003242GENERIC GPIO I2C MULTIPLEXER DRIVER
3243M: Peter Korsgaard <peter.korsgaard@barco.com>
3244L: linux-i2c@vger.kernel.org
3245S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003246F: drivers/i2c/muxes/i2c-mux-gpio.c
3247F: include/linux/i2c-mux-gpio.h
3248F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003249
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003250GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003251M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003254F: drivers/net/wan/c101.c
3255F: drivers/net/wan/hd6457*
3256F: drivers/net/wan/hdlc*
3257F: drivers/net/wan/n2.c
3258F: drivers/net/wan/pc300too.c
3259F: drivers/net/wan/pci200syn.c
3260F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003262GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003263M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003264L: linux-arch@vger.kernel.org
3265T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3266S: Maintained
3267F: include/asm-generic
3268
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003269GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003270M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003271L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003272S: Supported
3273F: drivers/uio/uio_pci_generic.c
3274
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003275GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003276M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003277L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003278W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003279T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3280T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003281S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003282F: Documentation/filesystems/gfs2*.txt
3283F: fs/gfs2/
3284F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003285
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003286GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003287M: Hansjoerg Lipp <hjlipp@web.de>
3288M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003289L: gigaset307x-common@lists.sourceforge.net
3290W: http://gigaset307x.sourceforge.net/
3291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003292F: Documentation/isdn/README.gigaset
3293F: drivers/isdn/gigaset/
3294F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003295
Grant Likelya0dc00b2011-02-12 01:48:14 -07003296GPIO SUBSYSTEM
3297M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003298M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003299S: Maintained
3300T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003301F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003302F: drivers/gpio/
3303F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003304F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003305
Harry Wei71a6d0a2011-05-11 15:13:33 -07003306GRE DEMULTIPLEXER DRIVER
3307M: Dmitry Kozlov <xeb@mail.ru>
3308L: netdev@vger.kernel.org
3309S: Maintained
3310F: net/ipv4/gre.c
3311F: include/net/gre.h
3312
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003313GRETH 10/100/1G Ethernet MAC device driver
3314M: Kristoffer Glembo <kristoffer@gaisler.com>
3315L: netdev@vger.kernel.org
3316S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003317F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003318
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003319GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003320M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003321L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003322T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003323S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003324F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003325
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003326GSPCA GL860 SUBDRIVER
3327M: Olivier Lorin <o.lorin@laposte.net>
3328L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003329T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003330S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003331F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003332
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003333GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003334M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003335L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003336T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003337S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003338F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003339
3340GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003341M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003342L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003343T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003344S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003345F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003346
Brian Johnson261982f2009-07-19 15:58:56 -03003347GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003348M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003349L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003350T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Brian Johnson261982f2009-07-19 15:58:56 -03003351S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003352F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003353
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003354GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003355M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003356L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003357T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003358S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003359F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003360
3361GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003362M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003363L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003364T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003365S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003366F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003367
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003368STK1160 USB VIDEO CAPTURE DRIVER
3369M: Ezequiel Garcia <elezegarcia@gmail.com>
3370L: linux-media@vger.kernel.org
3371T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3372S: Maintained
3373F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003374
Harry Wei71a6d0a2011-05-11 15:13:33 -07003375HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3376M: Frank Seidel <frank@f-seidel.de>
3377L: platform-driver-x86@vger.kernel.org
3378W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3379S: Maintained
3380F: drivers/platform/x86/hdaps.c
3381
3382HWPOISON MEMORY FAILURE HANDLING
3383M: Andi Kleen <andi@firstfloor.org>
3384L: linux-mm@kvack.org
3385T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3386S: Maintained
3387F: mm/memory-failure.c
3388F: mm/hwpoison-inject.c
3389
3390HYPERVISOR VIRTUAL CONSOLE DRIVER
3391L: linuxppc-dev@lists.ozlabs.org
3392S: Odd Fixes
3393F: drivers/tty/hvc/
3394
Michael Buesch844dd052006-06-26 00:24:59 -07003395HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003396M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003397M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003398L: lm-sensors@lm-sensors.org
3399W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003400T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003401T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003402S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003403F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003404F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003405F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003406
3407HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003408M: Matt Mackall <mpm@selenic.com>
3409M: Herbert Xu <herbert@gondor.apana.org.au>
3410S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003411F: Documentation/hw_random.txt
3412F: drivers/char/hw_random/
3413F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003414
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003415HARDWARE SPINLOCK CORE
3416M: Ohad Ben-Cohen <ohad@wizery.com>
3417S: Maintained
3418F: Documentation/hwspinlock.txt
3419F: drivers/hwspinlock/hwspinlock_*
3420F: include/linux/hwspinlock.h
3421
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003423L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003425F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426
Antti Palosaari91952bc2012-10-01 12:28:46 -03003427HD29L2 MEDIA DRIVER
3428M: Antti Palosaari <crope@iki.fi>
3429L: linux-media@vger.kernel.org
3430W: http://linuxtv.org/
3431W: http://palosaari.fi/linux/
3432Q: http://patchwork.linuxtv.org/project/linux-media/list/
3433T: git git://linuxtv.org/anttip/media_tree.git
3434S: Maintained
3435F: drivers/media/dvb-frontends/hd29l2*
3436
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003437HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003438M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003439L: iss_storagedev@hp.com
3440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003441F: Documentation/blockdev/cpqarray.txt
3442F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003443
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003444HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003445M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003446L: iss_storagedev@hp.com
3447S: Supported
3448F: Documentation/scsi/hpsa.txt
3449F: drivers/scsi/hpsa*.[ch]
3450F: include/linux/cciss*.h
3451
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003452HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003453M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003454L: iss_storagedev@hp.com
3455S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003456F: Documentation/blockdev/cciss.txt
3457F: drivers/block/cciss*
3458F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003459
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003461L: linux-fsdevel@vger.kernel.org
3462S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003463F: Documentation/filesystems/hfs.txt
3464F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
3466HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003467M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468L: linux-nvidia@lists.surfsouth.com
3469W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003471F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003473HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003474M: Pavel Machek <pavel@ucw.cz>
3475M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003476L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003477S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003478F: arch/x86/power/
3479F: drivers/base/power/
3480F: kernel/power/
3481F: include/linux/suspend.h
3482F: include/linux/freezer.h
3483F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003484F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003485
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003486HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003487M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003488L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003489T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003491F: drivers/hid/
3492F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003493
Ingo Molnar38bed542007-02-22 09:09:34 +01003494HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003495M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003496T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003498F: Documentation/timers/
3499F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003500F: kernel/time/clockevents.c
3501F: kernel/time/tick*.*
3502F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003503F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003504F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003505
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003508S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003509F: drivers/net/hamradio/dmascc.c
3510F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003512HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003513M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003514W: http://www.highpoint-tech.com
3515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003516F: Documentation/scsi/hptiop.txt
3517F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003518
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003520M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521L: linux-hippi@sunsite.dk
3522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003523F: include/linux/hippidevice.h
3524F: include/linux/if_hippi.h
3525F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003526F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527
Jouni Malinenff1d2762005-05-12 22:54:16 -04003528HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003529M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003530L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003531L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003532W: http://hostap.epitest.fi/
3533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003534F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003535
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003536HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003537L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003538S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003539F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003540
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003541HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003542M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003543S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003544F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003545
Joe Perches7d2c86b2009-04-07 20:59:01 -07003546HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003547M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003549F: Documentation/timers/hpet.txt
3550F: drivers/char/hpet.c
3551F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003552
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003553HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003554M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003556F: arch/x86/kernel/hpet.c
3557F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003558
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003560M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003563F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564
Joe Perches7d2c86b2009-04-07 20:59:01 -07003565HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003566M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003567W: http://www.pharscape.org
3568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003569F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003570
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003571HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003572M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003573L: linux-input@vger.kernel.org
3574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003575F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003576
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003578M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003580F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003582Hyper-V CORE AND DRIVERS
3583M: K. Y. Srinivasan <kys@microsoft.com>
3584M: Haiyang Zhang <haiyangz@microsoft.com>
3585L: devel@linuxdriverproject.org
3586S: Maintained
3587F: drivers/hv/
3588F: drivers/hid/hid-hyperv.c
3589F: drivers/net/hyperv/
3590F: drivers/staging/hv/
3591
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003592I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003593M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003594L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003596F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003597
Jean Delvare5b543962005-08-15 19:51:02 +02003598I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003599M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
3600M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Wolfram Sangd7a5e242012-01-12 20:32:05 +01003601M: "Wolfram Sang (embedded platforms)" <w.sang@pengutronix.de>
Jean Delvare846557d2008-10-30 15:55:47 +01003602L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003603W: http://i2c.wiki.kernel.org/
3604T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003605T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003607F: Documentation/i2c/
3608F: drivers/i2c/
3609F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003610F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611
Till Harbaume8c76ee2007-05-01 23:26:35 +02003612I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003613M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003614L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003615W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003617F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003618
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003620M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003622F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623
3624i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003625M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003626T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627S: Maintained
3628
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003630M: Tony Luck <tony.luck@intel.com>
3631M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003633T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003635F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636
Kent Yoder956c2032012-09-07 04:17:01 +08003637IBM Power in-Nest Crypto Acceleration
3638M: Kent Yoder <key@linux.vnet.ibm.com>
3639L: linux-crypto@vger.kernel.org
3640S: Supported
3641F: drivers/crypto/nx/
3642
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003643IBM Power 842 compression accelerator
3644M: Robert Jennings <rcj@linux.vnet.ibm.com>
3645S: Supported
3646F: drivers/crypto/nx/nx-842.c
3647F: include/linux/nx842.h
3648
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003650M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003652F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653
Santiago Leon9d348af2010-09-03 18:29:53 +00003654IBM Power Virtual Ethernet Device Driver
3655M: Santiago Leon <santil@linux.vnet.ibm.com>
3656L: netdev@vger.kernel.org
3657S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003658F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003659
Robert Jennings4b7652c2012-07-31 12:34:36 -05003660IBM Power Virtual SCSI/FC Device Drivers
3661M: Robert Jennings <rcj@linux.vnet.ibm.com>
3662L: linux-scsi@vger.kernel.org
3663S: Supported
3664F: drivers/scsi/ibmvscsi/
3665X: drivers/scsi/ibmvscsi/ibmvstgt.c
3666
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667IBM ServeRAID RAID DRIVER
3668P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003669M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003671S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003672F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003674ICH LPC AND GPIO DRIVER
3675M: Peter Tyser <ptyser@xes-inc.com>
3676S: Maintained
3677F: drivers/mfd/lpc_ich.c
3678F: drivers/gpio/gpio-ich.c
3679
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003680IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003681M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003683Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003684T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003686F: Documentation/ide/
3687F: drivers/ide/
3688F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689
Ike Panhc6cb8c132011-08-25 22:28:45 +08003690IDEAPAD LAPTOP EXTRAS DRIVER
3691M: Ike Panhc <ike.pan@canonical.com>
3692L: platform-driver-x86@vger.kernel.org
3693W: http://launchpad.net/ideapad-laptop
3694S: Maintained
3695F: drivers/platform/x86/ideapad-laptop.c
3696
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003697IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003698M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003699L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003701F: Documentation/cdrom/ide-cd
3702F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703
Andy Henroid27471fd2008-10-09 11:45:22 -07003704IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003705M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003706L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003707S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003708F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003709
Sergey Lapin02cf2282009-06-08 12:18:50 +00003710IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003711M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003712M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003713L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003714W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003715T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003716S: Maintained
3717F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003718F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003719F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003720
Ameya Palande9545f862012-01-10 09:00:58 -08003721IIO SUBSYSTEM AND DRIVERS
3722M: Jonathan Cameron <jic23@cam.ac.uk>
3723L: linux-iio@vger.kernel.org
3724S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003725F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003726F: drivers/staging/iio/
3727
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003728IKANOS/ADI EAGLE ADSL USB DRIVER
3729M: Matthieu Castet <castet.matthieu@free.fr>
3730M: Stanislaw Gruszka <stf_xl@wp.pl>
3731S: Maintained
3732F: drivers/usb/atm/ueagle-atm.c
3733
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003734INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003735M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003736S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003737F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003738
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003740L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003741S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003742F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743
3744INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003745M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003746M: Sean Hefty <sean.hefty@intel.com>
3747M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003748L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003749W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003750Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003751T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003753F: Documentation/infiniband/
3754F: drivers/infiniband/
3755F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756
Robert Lovec9f04f52005-07-15 12:21:07 -04003757INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003758M: John McCutchan <john@johnmccutchan.com>
3759M: Robert Love <rlove@rlove.org>
3760M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003762F: Documentation/filesystems/inotify.txt
3763F: fs/notify/inotify/
3764F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003765
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003766INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003767M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3768M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003769L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003770Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003771T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003773F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003774F: include/linux/input.h
3775F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003776
Henrik Rydberg3267a872010-06-24 19:10:40 -07003777INPUT MULTITOUCH (MT) PROTOCOL
3778M: Henrik Rydberg <rydberg@euromail.se>
3779L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003780T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003781S: Maintained
3782F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003783F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003784K: \b(ABS|SYN)_MT_
3785
Dave Jiang4ac13e12011-07-29 17:16:55 -07003786INTEL C600 SERIES SAS CONTROLLER DRIVER
3787M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003788M: Lukasz Dorau <lukasz.dorau@intel.com>
3789M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003790M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003791L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003792T: git git://git.code.sf.net/p/intel-sas/isci
3793S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003794F: drivers/scsi/isci/
3795F: firmware/isci/
3796
Len Brown26717172010-03-08 14:07:30 -05003797INTEL IDLE DRIVER
3798M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003799L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003800T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003801S: Supported
3802F: drivers/idle/intel_idle.c
3803
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003804INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003805M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003806L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003808F: Documentation/fb/intelfb.txt
3809F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003810
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003812M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003813L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003815F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303817INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003818M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003819L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303820W: http://www.lesswatts.org/projects/acpi/
3821S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003822F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303823
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003825M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003827F: arch/x86/kernel/microcode_core.c
3828F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003830INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003831M: Dan Williams <djbw@fb.com>
3832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003833F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003834
David Woodhouse6c8909b2008-10-18 16:12:17 +01003835INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003836M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003837L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003838T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003839S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003840F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07003841F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003842
Dan Williamsb3e5f262007-08-07 10:26:35 -07003843INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003844M: Dan Williams <djbw@fb.com>
3845S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003846F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003847
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003848INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003849M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003851F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3852F: arch/arm/mach-ixp4xx/include/mach/npe.h
3853F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3854F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07003855F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07003856F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003857
Michael Buesch844dd052006-06-26 00:24:59 -07003858INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003859M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003861F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003862
Jeff Kirsher0d164402010-10-05 01:15:17 +00003863INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003864M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3865M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3866M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003867M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3868M: Don Skidmore <donald.c.skidmore@intel.com>
3869M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003870M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003871M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003872M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003873L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003874W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003875T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
3876T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00003878F: Documentation/networking/e100.txt
3879F: Documentation/networking/e1000.txt
3880F: Documentation/networking/e1000e.txt
3881F: Documentation/networking/igb.txt
3882F: Documentation/networking/igbvf.txt
3883F: Documentation/networking/ixgb.txt
3884F: Documentation/networking/ixgbe.txt
3885F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003886F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887
Len Brown6dccf9c2011-07-12 22:29:32 -04003888INTEL MRST PMU DRIVER
3889M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003890L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04003891S: Supported
3892F: arch/x86/platform/mrst/pmu.*
3893
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003894INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
3895M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07003896L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003898F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07003899F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003900F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06003901
Shane Wang4bd96a72010-03-10 14:36:10 +08003902INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07003903M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
3904M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08003905M: Shane Wang <shane.wang@intel.com>
3906L: tboot-devel@lists.sourceforge.net
3907W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07003908T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08003909S: Supported
3910F: Documentation/intel_txt.txt
3911F: include/linux/tboot.h
3912F: arch/x86/kernel/tboot.c
3913
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003914INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003915M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003916M: linux-wimax@intel.com
3917L: wimax@linuxwimax.org
3918S: Supported
3919W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003920F: Documentation/wimax/README.i2400m
3921F: drivers/net/wimax/i2400m/
3922F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003923
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003924INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
3925M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003926L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003927S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003928F: drivers/net/wireless/iwlegacy/
3929
Zhu Yib481de92007-09-25 17:54:57 -07003930INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07003931M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07003932M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07003933M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07003934L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07003935W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07003936T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07003937S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003938F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003939
Tomas Winklerde8fe022012-05-09 16:39:02 +03003940INTEL MANAGEMENT ENGINE (mei)
3941M: Tomas Winkler <tomas.winkler@intel.com>
3942L: linux-kernel@vger.kernel.org
3943S: Supported
3944F: include/linux/mei.h
3945F: drivers/misc/mei/*
3946F: Documentation/mei/*
3947
Ralf Baechlecb109a02007-08-30 23:56:30 -07003948IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003949M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950L: linux-mips@linux-mips.org
3951S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07003952F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953
Ralf Baechlecb109a02007-08-30 23:56:30 -07003954IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003955M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01003956L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003957S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003958F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003959
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003960IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07003961M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003963F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964
Francois Romieu1202d6f2007-09-17 17:13:55 -07003965IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003966M: Francois Romieu <romieu@fr.zoreil.com>
3967M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07003968L: netdev@vger.kernel.org
3969S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07003970F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07003971
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003972IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04003973M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003974L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07003975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003976F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003977
Corey Minyard4409ebe2006-04-20 02:43:12 -07003978IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003979M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08003980L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07003981W: http://openipmi.sourceforge.net/
3982S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003983F: Documentation/IPMI.txt
3984F: drivers/char/ipmi/
3985F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003986
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003987IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003988M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003989L: linux-scsi@vger.kernel.org
3990W: http://www.adaptec.com/
3991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003992F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003993
3994IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07003995M: Wensong Zhang <wensong@linux-vs.org>
3996M: Simon Horman <horms@verge.net.au>
3997M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003998L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003999L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004001F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004002F: include/net/ip_vs.h
4003F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004004F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005
Randy Dunlape7839f22008-10-12 16:11:45 -07004006IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004007M: Jiri Kosina <jkosina@suse.cz>
4008M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004009S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004010F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004011
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004012IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004013M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004014L: netdev@vger.kernel.org
4015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004016F: include/linux/ipx.h
4017F: include/net/ipx.h
4018F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004019
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004021M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004022L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004023L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004025S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004026T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004027F: Documentation/networking/irda.txt
4028F: drivers/net/irda/
4029F: include/net/irda/
4030F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004032IRQ SUBSYSTEM
4033M: Thomas Gleixner <tglx@linutronix.de>
4034S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004035T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004036F: kernel/irq/
4037
Grant Likely7ab3a832012-02-14 14:06:47 -07004038IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4039M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4040M: Grant Likely <grant.likely@secretlab.ca>
4041T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4042S: Maintained
4043F: Documentation/IRQ-domain.txt
4044F: include/linux/irqdomain.h
4045F: kernel/irq/irqdomain.c
4046
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004047ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004048M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004050F: Documentation/isapnp.txt
4051F: drivers/pnp/isapnp/
4052F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004053
Harry Wei71a6d0a2011-05-11 15:13:33 -07004054iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4055M: Peter Jones <pjones@redhat.com>
4056M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4057S: Maintained
4058F: drivers/firmware/iscsi_ibft*
4059
Mike Christie14816b12007-11-28 16:22:06 -08004060ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004061M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b12007-11-28 16:22:06 -08004062L: open-iscsi@googlegroups.com
4063W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004064T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08004065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004066F: drivers/scsi/*iscsi*
4067F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08004068
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004070M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004071L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004072L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004074T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004076F: Documentation/isdn/
4077F: drivers/isdn/
4078F: include/linux/isdn.h
4079F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080
4081ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004082M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004083L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084W: http://www.melware.de
4085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004086F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087
Jean Delvared6248702010-03-05 22:17:20 +01004088IT87 HARDWARE MONITORING DRIVER
4089M: Jean Delvare <khali@linux-fr.org>
4090L: lm-sensors@lm-sensors.org
4091S: Maintained
4092F: Documentation/hwmon/it87
4093F: drivers/hwmon/it87.c
4094
Hans Verkuil91821ff2007-12-02 09:35:33 -03004095IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004096M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004097L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004098L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004099T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004100W: http://www.ivtvdriver.org
4101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004102F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004103F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004104F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004105
Guenter Roeck4453d732010-08-09 17:21:08 -07004106JC42.4 TEMPERATURE SENSOR DRIVER
4107M: Guenter Roeck <linux@roeck-us.net>
4108L: lm-sensors@lm-sensors.org
4109S: Maintained
4110F: drivers/hwmon/jc42.c
4111F: Documentation/hwmon/jc42
4112
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004113JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004114M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004115L: jfs-discussion@lists.sourceforge.net
4116W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004117T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004119F: Documentation/filesystems/jfs.txt
4120F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004121
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004122JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004123M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004124L: netdev@vger.kernel.org
4125S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004126F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004127
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004129M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004130L: linux-mtd@lists.infradead.org
4131W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004133F: fs/jffs2/
4134F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135
Josh Triplettde456d32006-07-30 03:04:00 -07004136JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004137M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004138M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004139L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004140S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004141F: fs/jbd/
4142F: include/linux/ext3_jbd.h
4143F: include/linux/jbd.h
4144
4145JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4146M: "Theodore Ts'o" <tytso@mit.edu>
4147L: linux-ext4@vger.kernel.org
4148S: Maintained
4149F: fs/jbd2/
4150F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004151
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004152JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004153M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004154L: linux-serial@vger.kernel.org
4155S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004156F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004157
Clemens Ladischaf399172011-01-10 16:32:54 +01004158K10TEMP HARDWARE MONITORING DRIVER
4159M: Clemens Ladisch <clemens@ladisch.de>
4160L: lm-sensors@lm-sensors.org
4161S: Maintained
4162F: Documentation/hwmon/k10temp
4163F: drivers/hwmon/k10temp.c
4164
Rudolf Marek4660cb32006-10-08 22:01:26 +02004165K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004166M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004167L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004169F: Documentation/hwmon/k8temp
4170F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171
4172KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004173M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004174L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004175S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004176F: Documentation/kbuild/kconfig-language.txt
4177F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178
Vivek Goyalea6c2082006-05-20 14:59:55 -07004179KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004180M: Vivek Goyal <vgoyal@redhat.com>
4181M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004182L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004183W: http://lse.sourceforge.net/kdump/
4184S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004185F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004186
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004188M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004189L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004191F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192
Michal Marek70fb7ba2010-01-29 14:22:43 +01004193KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004194M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004195T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4196T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004197L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004199F: Documentation/kbuild/
4200F: Makefile
4201F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004202F: scripts/basic/
4203F: scripts/mk*
4204F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205
4206KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004207L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004208W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004209S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004211KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004212M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004213L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004215S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004216F: fs/nfsd/
4217F: include/linux/nfsd/
4218F: fs/lockd/
4219F: fs/nfs_common/
4220F: net/sunrpc/
4221F: include/linux/lockd/
4222F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223
Avi Kivity426d62e2006-12-13 00:34:03 -08004224KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07004225M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004226M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004227L: kvm@vger.kernel.org
4228W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004229S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004230F: Documentation/*/kvm.txt
4231F: arch/*/kvm/
4232F: arch/*/include/asm/kvm*
4233F: include/linux/kvm*
4234F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004235
Joerg Roedelad8003d2008-09-10 20:01:07 +02004236KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07004237M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004238L: kvm@vger.kernel.org
4239W: http://kvm.qumranet.com
4240S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004241F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004242F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004243
Hollis Blanchard513014b2008-04-16 23:28:08 -05004244KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004245M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004246L: kvm-ppc@vger.kernel.org
4247W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05004248S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004249F: arch/powerpc/include/asm/kvm*
4250F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004251
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004252KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004253M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004254L: kvm-ia64@vger.kernel.org
4255W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004256S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004257F: Documentation/ia64/kvm.txt
4258F: arch/ia64/include/asm/kvm*
4259F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004260
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004261KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004262M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004263M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004264M: linux390@de.ibm.com
4265L: linux-s390@vger.kernel.org
4266W: http://www.ibm.com/developerworks/linux/linux390/
4267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004268F: Documentation/s390/kvm.txt
4269F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004270F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004271F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004272
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004273KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004274M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004275W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004276L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004278F: include/linux/kexec.h
4279F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004280
David Howellse9714612010-03-29 23:42:09 +01004281KEYS/KEYRINGS:
4282M: David Howells <dhowells@redhat.com>
4283L: keyrings@linux-nfs.org
4284S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004285F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004286F: include/linux/key.h
4287F: include/linux/key-type.h
4288F: include/keys/
4289F: security/keys/
4290
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004291KEYS-TRUSTED
4292M: David Safford <safford@watson.ibm.com>
4293M: Mimi Zohar <zohar@us.ibm.com>
4294L: linux-security-module@vger.kernel.org
4295L: keyrings@linux-nfs.org
4296S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004297F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004298F: include/keys/trusted-type.h
4299F: security/keys/trusted.c
4300F: security/keys/trusted.h
4301
4302KEYS-ENCRYPTED
4303M: Mimi Zohar <zohar@us.ibm.com>
4304M: David Safford <safford@watson.ibm.com>
4305L: linux-security-module@vger.kernel.org
4306L: keyrings@linux-nfs.org
4307S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004308F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004309F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004310F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004311
Jason Wessel5b778da2010-05-20 21:04:28 -05004312KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004313M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004314W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004315L: kgdb-bugreport@lists.sourceforge.net
4316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004317F: Documentation/DocBook/kgdb.tmpl
4318F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004319F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004320F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004321F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004322F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004323
Pekka Enberg456db8c2008-04-28 22:47:29 +03004324KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004325M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004326M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004327S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004328F: Documentation/kmemcheck.txt
4329F: arch/x86/include/asm/kmemcheck.h
4330F: arch/x86/mm/kmemcheck/
4331F: include/linux/kmemcheck.h
4332F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004333
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004334KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004335M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004336S: Maintained
4337F: Documentation/kmemleak.txt
4338F: include/linux/kmemleak.h
4339F: mm/kmemleak.c
4340F: mm/kmemleak-test.c
4341
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004342KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004343M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4344M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4345M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004346M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004348F: Documentation/kprobes.txt
4349F: include/linux/kprobes.h
4350F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004351
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004352KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004353M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004354W: http://miguelojeda.es/auxdisplay.htm
4355W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004357F: Documentation/auxdisplay/ks0108
4358F: drivers/auxdisplay/ks0108.c
4359F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004360
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004363S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004364F: Documentation/networking/lapb-module.txt
4365F: include/*/lapb.h
4366F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367
4368LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004369M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370L: linux-scsi@vger.kernel.org
4371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004372F: Documentation/scsi/53c700.txt
4373F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374
Richard Purdie263de9b2006-05-15 09:44:16 -07004375LED SUBSYSTEM
Bryan Wu17ff3c12012-05-10 13:01:47 -07004376M: Bryan Wu <bryan.wu@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004377M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004378L: linux-leds@vger.kernel.org
4379T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004381F: drivers/leds/
4382F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004383
Jean Delvareb0461a42011-06-15 15:08:46 -07004384LEGACY EEPROM DRIVER
4385M: Jean Delvare <khali@linux-fr.org>
4386S: Maintained
4387F: Documentation/misc-devices/eeprom
4388F: drivers/misc/eeprom/eeprom.c
4389
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004391M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392L: legousb-devel@lists.sourceforge.net
4393W: http://legousb.sourceforge.net/
4394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004395F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396
Michael Krufky055616a2012-10-02 00:56:06 -03004397LG2160 MEDIA DRIVER
4398M: Michael Krufky <mkrufky@linuxtv.org>
4399L: linux-media@vger.kernel.org
4400W: http://linuxtv.org/
4401W: http://github.com/mkrufky
4402Q: http://patchwork.linuxtv.org/project/linux-media/list/
4403T: git git://linuxtv.org/mkrufky/tuners.git
4404S: Maintained
4405F: drivers/media/dvb-frontends/lg2160.*
4406
Michael Krufky6f0e7722012-10-02 00:56:00 -03004407LGDT3305 MEDIA DRIVER
4408M: Michael Krufky <mkrufky@linuxtv.org>
4409L: linux-media@vger.kernel.org
4410W: http://linuxtv.org/
4411W: http://github.com/mkrufky
4412Q: http://patchwork.linuxtv.org/project/linux-media/list/
4413T: git git://linuxtv.org/mkrufky/tuners.git
4414S: Maintained
4415F: drivers/media/dvb-frontends/lgdt3305.*
4416
Rusty Russell568a17f2007-10-25 14:12:24 +10004417LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004418M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004419L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004420W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004421S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004422F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004423F: arch/x86/lguest/
4424F: drivers/lguest/
4425F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004426F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004427
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004429M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430W: http://www.ibm.com/linux/ltc/projects/ppc
4431S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004432F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004434LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004435M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4436M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004438L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004439Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004440T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004442F: Documentation/powerpc/
4443F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444
4445LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004446M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004448L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004450F: arch/powerpc/platforms/powermac/
4451F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452
Grant Likely77a76362008-07-12 12:11:43 -06004453LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004454M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004455L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004456T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004458F: arch/powerpc/platforms/512x/
4459F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460
4461LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004462M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004463M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004465L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004466T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004468F: arch/powerpc/platforms/40x/
4469F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470
Grant Likely260c02a2007-10-02 12:15:34 +10004471LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004472M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004473W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004474L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004475T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004477F: arch/powerpc/*/*virtex*
4478F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479
Tom Rinie93adf12005-07-26 12:49:53 -07004480LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004481M: Vitaly Bordug <vitb@kernel.crashing.org>
4482M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004483W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004484L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004485S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004486F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004487
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004489M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004490W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004491L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004492S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004493F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004494F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495
Olof Johanssonab06ff32006-09-06 14:44:54 -05004496LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004497M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004498L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004499S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004500F: arch/powerpc/platforms/pasemi/
4501F: drivers/*/*pasemi*
4502F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004503
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004505M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004506L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507S: Supported
4508
Harry Weia23ce6d2011-02-11 16:52:20 +01004509LIS3LV02D ACCELEROMETER DRIVER
4510M: Eric Piel <eric.piel@tremplin-utc.net>
4511S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004512F: Documentation/misc-devices/lis3lv02d
4513F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004514F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004515
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004516LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004517M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004519F: include/linux/llc.h
4520F: include/net/llc*
4521F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004522
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004523LM73 HARDWARE MONITOR DRIVER
4524M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4525L: lm-sensors@lm-sensors.org
4526S: Maintained
4527F: drivers/hwmon/lm73.c
4528
Jean Delvare156e2d12011-07-25 21:46:11 +02004529LM78 HARDWARE MONITOR DRIVER
4530M: Jean Delvare <khali@linux-fr.org>
4531L: lm-sensors@lm-sensors.org
4532S: Maintained
4533F: Documentation/hwmon/lm78
4534F: drivers/hwmon/lm78.c
4535
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004537M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004538L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004540F: Documentation/hwmon/lm83
4541F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542
4543LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004544M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004545L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004547F: Documentation/hwmon/lm90
4548F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004550LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004551M: Peter Zijlstra <peterz@infradead.org>
4552M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004553T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004555F: Documentation/lockdep*.txt
4556F: Documentation/lockstat.txt
4557F: include/linux/lockdep.h
4558F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004559
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004560LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004561M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004562L: linux-ntfs-dev@lists.sourceforge.net
4563W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004565F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004566F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567
Joern Engelef6ada32009-11-20 22:17:12 +01004568LogFS
4569M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304570M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004571L: logfs@logfs.org
4572W: logfs.org
4573S: Maintained
4574F: fs/logfs/
4575
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004576LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004577M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004578M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004579L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004580L: linux-scsi@vger.kernel.org
4581W: http://www.lsilogic.com/support
4582S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004583F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004584
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004586M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587L: linux-scsi@vger.kernel.org
4588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004589F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590
Guenter Roecke5f5c992010-06-25 11:59:54 -07004591LTC4261 HARDWARE MONITOR DRIVER
4592M: Guenter Roeck <linux@roeck-us.net>
4593L: lm-sensors@lm-sensors.org
4594S: Maintained
4595F: Documentation/hwmon/ltc4261
4596F: drivers/hwmon/ltc4261.c
4597
Mike Frysinger81365c32008-10-29 14:01:12 -07004598LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004599M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004600M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004601M: Cyril Hrubis <chrubis@suse.cz>
4602M: Caspar Zhang <caspar@casparzhang.com>
4603M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004604L: ltp-list@lists.sourceforge.net (subscribers-only)
4605W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004606T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004607T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004608S: Maintained
4609
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004610M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004611M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004612L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004613L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4614W: http://www.linux-m32r.org/
4615S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004616F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004617
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004619M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620L: linux-m68k@lists.linux-m68k.org
4621W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004622T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004624F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004625F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626
4627M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004628M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004630L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004632F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633
4634M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004635M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636W: http://www.tazenda.demon.co.uk/phil/linux-hp
4637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004638F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639
Jiri Benc64a327a2007-05-05 11:47:08 -07004640MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004641M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004642L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004643W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004644T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4645T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004647F: Documentation/networking/mac80211-injection.txt
4648F: include/net/mac80211.h
4649F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004650
Stefano Brivio1036d862007-12-23 04:46:27 +01004651MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004652M: Stefano Brivio <stefano.brivio@polimi.it>
4653M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004654L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004655W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004656T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4657T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004659F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004660
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004661MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004662M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004663L: netdev@vger.kernel.org
4664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004665F: drivers/net/macvlan.c
4666F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004667
Michael Kerriskfaf16682005-07-31 22:34:47 -07004668MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004669M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004670W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004671L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004672S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004673
stephen hemminger44c14c12012-04-02 12:59:47 +00004674MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4675M: Mirko Lindner <mlindner@marvell.com>
4676M: Stephen Hemminger <shemminger@vyatta.com>
4677L: netdev@vger.kernel.org
4678S: Maintained
4679F: drivers/net/ethernet/marvell/sk*
4680
Stefano Brivio74cda162007-11-19 20:27:46 +01004681MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004682M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004683L: libertas-dev@lists.infradead.org
4684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004685F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004686
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004687MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004688M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004689L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004690S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004691F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004692F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693
Bing Zhaofcad5842011-07-13 13:11:58 -07004694MARVELL MWIFIEX WIRELESS DRIVER
4695M: Bing Zhao <bzhao@marvell.com>
4696L: linux-wireless@vger.kernel.org
4697S: Maintained
4698F: drivers/net/wireless/mwifiex/
4699
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004700MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004701M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004702L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004703S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004704F: drivers/net/wireless/mwl8k.c
4705
Pierre Ossman2a695672009-03-16 19:52:26 +01004706MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004707M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004708S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004709F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004710
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004712L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004713S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004714F: drivers/video/matrox/matroxfb_*
4715F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716
Guenter Roeckca462082012-06-01 23:28:23 -07004717MAX16065 HARDWARE MONITOR DRIVER
4718M: Guenter Roeck <linux@roeck-us.net>
4719L: lm-sensors@lm-sensors.org
4720S: Maintained
4721F: Documentation/hwmon/max16065
4722F: drivers/hwmon/max16065.c
4723
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004724MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004725M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004726L: lm-sensors@lm-sensors.org
4727S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004728F: Documentation/hwmon/max6650
4729F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004730
Joe Perches127c49a2009-04-08 08:34:04 -07004731MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07004732M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07004733P: LinuxTV.org Project
4734L: linux-media@vger.kernel.org
4735W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004736Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches08deed12012-03-23 15:01:57 -07004737T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Joe Perches127c49a2009-04-08 08:34:04 -07004738S: Maintained
4739F: Documentation/dvb/
4740F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004741F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004742F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004743F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004744F: include/media/
4745F: include/linux/dvb/
4746F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004747
4748MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004749M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004750L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004751W: http://megaraid.lsilogic.com
4752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004753F: Documentation/scsi/megaraid.txt
4754F: drivers/scsi/megaraid.*
4755F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004756
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004757MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759W: http://www.linux-mm.org
4760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004761F: include/linux/mm.h
4762F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004763
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004764MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08004765M: Johannes Weiner <hannes@cmpxchg.org>
4766M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07004767M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004768M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08004769L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004770L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004772F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004773F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004774
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004776M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004778W: http://www.linux-mtd.infradead.org/
4779Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004780T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004782F: drivers/mtd/
4783F: include/linux/mtd/
4784F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785
Michal Simekc6375b02009-03-27 14:25:52 +01004786MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004787M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02004788L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01004789W: http://www.monstr.eu/fdt/
4790T: git git://git.monstr.eu/linux-2.6-microblaze.git
4791S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004792F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793
4794MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02004795M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004797F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798
4799MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004800M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01004802W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00004803T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01004804Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00004805S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004806F: Documentation/mips/
4807F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004810M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004812F: include/linux/module.h
4813F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814
4815MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08004817S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004818F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004819F: drivers/media/pci/meye/
Joe Perches679655d2009-04-07 20:44:32 -07004820F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821
Pavel Pisac58ff042007-05-16 01:10:41 +02004822MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004823M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004824L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02004825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004826F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02004827
Jiri Slabyb9705b62008-04-30 00:53:48 -07004828MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07004829M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08004830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004831F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07004832F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08004833
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004834MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07004835M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004836L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004838F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004839
Anisse Astier0f1006b2009-12-17 11:28:49 +01004840MSI WMI SUPPORT
4841M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05004842L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01004843S: Supported
4844F: drivers/platform/x86/msi-wmi.c
4845
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004846MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07004847M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07004848T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004849S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004850F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004851
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02004852MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04004853M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07004854L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04004855T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
4856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004857F: drivers/mmc/
4858F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01004859
David Brownell15a05802007-08-08 09:12:54 -07004860MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06004861S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004862F: drivers/mmc/host/mmc_spi.c
4863F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004864
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004866M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004868F: Documentation/sound/oss/MultiSound
4869F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870
Jiri Slabyd7354102006-12-08 02:38:35 -08004871MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02004872S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07004873F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07004874F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004875
Felipe Balbi550a7372008-07-24 12:27:36 +03004876MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03004877M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004878L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004879T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004881F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004882
Michael Krufkyea0af5f2012-10-02 00:55:41 -03004883MXL5007T MEDIA DRIVER
4884M: Michael Krufky <mkrufky@linuxtv.org>
4885L: linux-media@vger.kernel.org
4886W: http://linuxtv.org/
4887W: http://github.com/mkrufky
4888Q: http://patchwork.linuxtv.org/project/linux-media/list/
4889T: git git://linuxtv.org/mkrufky/tuners.git
4890S: Maintained
4891F: drivers/media/tuners/mxl5007t.*
4892
Brice Goglin2d3cf582008-05-17 12:45:36 +02004893MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07004894M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02004895L: netdev@vger.kernel.org
4896W: http://www.myri.com/scs/download-Myri10GE.html
4897S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07004898F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004899
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04004901S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07004902F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903
Daniel Mack23dc05a2011-05-18 11:28:38 +02004904NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
4905M: Daniel Mack <zonque@gmail.com>
4906S: Maintained
4907L: alsa-devel@alsa-project.org
4908W: http://www.native-instruments.com
4909F: sound/usb/caiaq/
4910
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07004912M: Petr Vandrovec <petr@vandrovec.name>
4913S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004914F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915
4916NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07004917M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918L: linux-scsi@vger.kernel.org
4919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004920F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004922NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07004923M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004924L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00004925W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004926S: Supported
4927F: drivers/infiniband/hw/nes/
4928
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004929NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05004930M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07004931L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004933F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004934
Jon Masonb2f5a052010-07-15 08:47:27 +00004935NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00004936M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07004937L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07004938S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004939F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00004940F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07004941F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07004942
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944P: Harald Welte
4945P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01004946M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004947M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07004948L: netfilter-devel@vger.kernel.org
4949L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004950L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951W: http://www.netfilter.org/
4952W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02004953T: git git://1984.lsi.us.es/nf
4954T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004956F: include/linux/netfilter*
4957F: include/linux/netfilter/
4958F: include/net/netfilter/
4959F: net/*/netfilter.c
4960F: net/*/netfilter/
4961F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962
Paul Moore4cc67732006-09-25 15:57:13 -07004963NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00004964M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07004965W: http://netlabel.sf.net
4966L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00004967S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004968F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004969F: include/net/netlabel.h
4970F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004971
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004973M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004975W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004977F: include/linux/netrom.h
4978F: include/net/netrom.h
4979F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004981NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004982M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004984F: Documentation/blockdev/nbd.txt
4985F: drivers/block/nbd.c
4986F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987
Neil Horman6e436502009-10-05 03:56:55 +00004988NETWORK DROP MONITOR
4989M: Neil Horman <nhorman@tuxdriver.com>
4990L: netdev@vger.kernel.org
4991S: Maintained
4992W: https://fedorahosted.org/dropwatch/
4993F: net/core/drop_monitor.c
4994
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07004996M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004997L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004998W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00004999W: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005000T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5001T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005003F: net/
5004F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005005F: include/linux/in.h
5006F: include/linux/net.h
5007F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008
5009NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005010M: "David S. Miller" <davem@davemloft.net>
5011M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005012M: James Morris <jmorris@namei.org>
5013M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5014M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005015L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005016T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005018F: net/ipv4/
5019F: net/ipv6/
5020F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005021F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022
James Morris10e2ff12007-08-25 14:41:28 -07005023NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005024M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005025L: netdev@vger.kernel.org
5026S: Maintained
5027
John W. Linville29f8f632006-01-18 14:52:48 -08005028NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005029M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005030L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005031Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005032T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005033S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005034F: net/mac80211/
5035F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005036F: net/wireless/
5037F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005038F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005039F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005040F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005041
Joe Perches788873a2009-04-16 09:38:45 +00005042NETWORKING DRIVERS
5043L: netdev@vger.kernel.org
5044W: http://www.linuxfoundation.org/en/Net
Joe Perches08deed12012-03-23 15:01:57 -07005045T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5046T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005047S: Odd Fixes
5048F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005049F: include/linux/if_*
5050F: include/linux/*device.h
Joe Perches788873a2009-04-16 09:38:45 +00005051
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005052NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005053M: Sony Chacko <sony.chacko@qlogic.com>
5054M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005055L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005056W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005057S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005058F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005059
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005060NFC SUBSYSTEM
5061M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5062M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5063M: Samuel Ortiz <sameo@linux.intel.com>
5064L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005065L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005066S: Maintained
5067F: net/nfc/
5068F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005069F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005070F: drivers/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005072NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005073M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005074L: linux-nfs@vger.kernel.org
5075W: http://client.linux-nfs.org
5076T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005078F: fs/lockd/
5079F: fs/nfs/
5080F: fs/nfs_common/
5081F: net/sunrpc/
5082F: include/linux/lockd/
5083F: include/linux/nfs*
5084F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085
5086NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005087M: Jan-Pascal van Best <janpascal@vanbest.org>
5088M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005089L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005091F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005093NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005094M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005095L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005096W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005097T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005098S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005099F: Documentation/filesystems/nilfs2.txt
5100F: fs/nilfs2/
5101F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005102
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005104M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005107F: Documentation/scsi/NinjaSCSI.txt
5108F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109
5110NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005111M: GOTO Masanori <gotom@debian.or.jp>
5112M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005115F: Documentation/scsi/NinjaSCSI.txt
5116F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005119M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005121W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005122T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005123S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005124F: Documentation/filesystems/ntfs.txt
5125F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005127NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005128M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005129L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005131F: drivers/video/riva/
5132F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133
Tony Lindgrenf5525782009-05-28 13:23:53 -07005134OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005135M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005136L: linux-omap@vger.kernel.org
5137W: http://www.muru.com/linux/omap/
5138W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005139Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005140T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005141S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005142F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005143F: drivers/i2c/busses/i2c-omap.c
5144F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005145
5146OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005147M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005148L: linux-omap@vger.kernel.org
5149S: Maintained
5150F: arch/arm/*omap*/*clock*
5151
5152OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005153M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005154L: linux-omap@vger.kernel.org
5155S: Maintained
5156F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005157F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005158
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005159OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5160M: Rajendra Nayak <rnayak@ti.com>
5161M: Paul Walmsley <paul@pwsan.com>
5162L: linux-omap@vger.kernel.org
5163S: Maintained
5164F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5165F: arch/arm/mach-omap2/powerdomain44xx.c
5166F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5167F: arch/arm/mach-omap2/clockdomain44xx.c
5168
Tony Lindgrenf5525782009-05-28 13:23:53 -07005169OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005170M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005171M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005172L: alsa-devel@alsa-project.org (subscribers-only)
5173L: linux-omap@vger.kernel.org
5174S: Maintained
5175F: sound/soc/omap/
5176
5177OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005178M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005179L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005180L: linux-omap@vger.kernel.org
5181S: Maintained
5182F: drivers/video/omap/
5183
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005184OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005185M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005186L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005187L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005188S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005189F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005190F: Documentation/arm/OMAP/DSS
5191
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005192OMAP HARDWARE SPINLOCK SUPPORT
5193M: Ohad Ben-Cohen <ohad@wizery.com>
5194L: linux-omap@vger.kernel.org
5195S: Maintained
5196F: drivers/hwspinlock/omap_hwspinlock.c
5197F: arch/arm/mach-omap2/hwspinlock.c
5198
Tony Lindgrenf5525782009-05-28 13:23:53 -07005199OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005200M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005201L: linux-omap@vger.kernel.org
5202S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005203F: drivers/mmc/host/omap.c
5204
5205OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305206M: Venkatraman S <svenkatr@ti.com>
5207L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005208L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305209S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005210F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005211
5212OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005213M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005214S: Maintained
5215F: drivers/char/hw_random/omap-rng.c
5216
Paul Walmsleyf400c822010-12-06 19:08:54 -07005217OMAP HWMOD SUPPORT
5218M: Benoît Cousson <b-cousson@ti.com>
5219M: Paul Walmsley <paul@pwsan.com>
5220L: linux-omap@vger.kernel.org
5221S: Maintained
5222F: arch/arm/mach-omap2/omap_hwmod.c
5223F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5224
5225OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5226M: Benoît Cousson <b-cousson@ti.com>
5227L: linux-omap@vger.kernel.org
5228S: Maintained
5229F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5230
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005231OMAP IMAGE SIGNAL PROCESSOR (ISP)
5232M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5233L: linux-media@vger.kernel.org
5234S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005235F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005236
Tony Lindgrenf5525782009-05-28 13:23:53 -07005237OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005238M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005239L: linux-usb@vger.kernel.org
5240L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005241T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005242S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005243F: drivers/usb/*/*omap*
5244F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005245
Kevin Hilman6d994712012-07-16 10:05:07 -07005246OMAP GPIO DRIVER
5247M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5248M: Kevin Hilman <khilman@ti.com>
5249L: linux-omap@vger.kernel.org
5250S: Maintained
5251F: drivers/gpio/gpio-omap.c
5252
Bob Copeland0ad122d2008-07-25 19:45:18 -07005253OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005254M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005255L: linux-karma-devel@lists.sourceforge.net
5256S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005257F: Documentation/filesystems/omfs.txt
5258F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005259
Harald Weltec1986ee2005-11-13 16:06:29 -08005260OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005261M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005263F: drivers/char/pcmcia/cm4000_cs.c
5264F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005265
Harald Welte77c44ab2005-11-13 16:06:26 -08005266OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005267M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005268S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005269F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005270
Jonathan Corbet77d51402007-03-22 19:44:17 -03005271OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005272M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005273L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005274T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005275S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005276F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005277
Thomas Gleixner431bca72007-05-02 09:31:35 +02005278ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005279M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005280L: linux-mtd@lists.infradead.org
5281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005282F: drivers/mtd/onenand/
5283F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005284
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005286M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287L: osst-users@lists.sourceforge.net
5288L: linux-scsi@vger.kernel.org
5289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005290F: drivers/scsi/osst*
5291F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005293OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005294M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005295L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005297F: Documentation/i2c/busses/i2c-ocores
5298F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005299
Grant Likely860c44c2009-10-26 16:49:49 -07005300OPEN FIRMWARE AND FLATTENED DEVICE TREE
5301M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005302M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005303L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005304W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005305T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005306S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005307F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005308F: drivers/of
5309F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005310F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005311K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005312K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005313
Jonas Bonn19f9d392011-06-04 22:00:38 +03005314OPENRISC ARCHITECTURE
5315M: Jonas Bonn <jonas@southpole.se>
5316W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005317L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005318S: Maintained
5319T: git git://openrisc.net/~jonas/linux
5320F: arch/openrisc
5321
Jesse Grossccb13522011-10-25 19:26:31 -07005322OPENVSWITCH
5323M: Jesse Gross <jesse@nicira.com>
5324L: dev@openvswitch.org
5325W: http://openvswitch.org
5326T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5327S: Maintained
5328F: net/openvswitch/
5329
Clemens Ladischaf399172011-01-10 16:32:54 +01005330OPL4 DRIVER
5331M: Clemens Ladisch <clemens@ladisch.de>
5332L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5333T: git git://git.alsa-project.org/alsa-kernel.git
5334S: Maintained
5335F: sound/drivers/opl4/
5336
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07005338M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339L: oprofile-list@lists.sf.net
5340S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005341F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005342F: arch/*/oprofile/
5343F: drivers/oprofile/
5344F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005346ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005347M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005348M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005349L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5350W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005351T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005352S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005353F: Documentation/filesystems/ocfs2.txt
5354F: Documentation/filesystems/dlmfs.txt
5355F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005356
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005358L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005359W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005360W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005361S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005362F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005364OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005365M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005366M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005367L: osd-dev@open-osd.org
5368W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005369T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005370S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005371F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005372F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005373F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005374
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005375P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005376M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005377L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005378W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005380F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005381
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005382PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005383M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005384L: netdev@vger.kernel.org
5385S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005386F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005387
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005388PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005389M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005390L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005392F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005393
Steffen Klassert48fc2672010-08-13 10:10:46 -04005394PADATA PARALLEL EXECUTION MECHANISM
5395M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005396L: linux-crypto@vger.kernel.org
5397S: Maintained
5398F: kernel/padata.c
5399F: include/linux/padata.h
5400F: Documentation/padata.txt
5401
Harald Welte709ee532008-09-23 17:46:57 +02005402PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005403M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005404L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005406F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005407
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005408PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005409M: David Howells <dhowells@redhat.com>
5410M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005411L: linux-am33-list@redhat.com (moderated for non-subscribers)
5412W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005414F: Documentation/mn10300/
5415F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005416
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005418L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005419S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005420F: drivers/parport/
5421F: include/linux/parport*.h
5422F: drivers/char/ppdev.c
5423F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005425PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005426M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005427M: Chris Wright <chrisw@sous-sol.org>
5428M: Alok Kataria <akataria@vmware.com>
5429M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005430L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005431S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005432F: Documentation/ia64/paravirt_ops.txt
5433F: arch/*/kernel/paravirt*
5434F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005435
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005437M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005438L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439W: http://www.torque.net/linux-pp.html
5440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005441F: Documentation/blockdev/paride.txt
5442F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005443
5444PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005445M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005446M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005447L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005448W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005449Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005450T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005452F: arch/parisc/
5453F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005454
Jim Cromie1662d322006-10-06 00:43:59 -07005455PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005456M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005457L: lm-sensors@lm-sensors.org
5458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005459F: Documentation/hwmon/pc87360
5460F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005461
5462PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005463M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005465F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005466
Jean Delvare1ad107f2010-08-14 21:09:00 +02005467PC87427 HARDWARE MONITORING DRIVER
5468M: Jean Delvare <khali@linux-fr.org>
5469L: lm-sensors@lm-sensors.org
5470S: Maintained
5471F: Documentation/hwmon/pc87427
5472F: drivers/hwmon/pc87427.c
5473
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005474PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005475M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005476S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005477F: drivers/leds/leds-pca9532.c
5478F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005479
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005480PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005481M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005482L: linux-i2c@vger.kernel.org
5483S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005484F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005485
Wolfram Sanga1867d32009-09-18 22:45:51 +02005486PCA9564/PCA9665 I2C BUS DRIVER
5487M: Wolfram Sang <w.sang@pengutronix.de>
5488L: linux-i2c@vger.kernel.org
5489S: Maintained
5490F: drivers/i2c/algos/i2c-algo-pca.c
5491F: drivers/i2c/busses/i2c-pca-*
5492F: include/linux/i2c-algo-pca.h
5493F: include/linux/i2c-pca-platform.h
5494
Khalid Aziz3971dae2012-04-12 12:49:13 -07005495PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005496M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005497S: Maintained
5498F: drivers/firmware/pcdp.*
5499
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005500PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005501M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005502L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005503S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005504F: Documentation/PCI/pci-error-recovery.txt
5505F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005506
Linus Torvalds1da177e2005-04-16 15:20:36 -07005507PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005508M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005509L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005510Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005511T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005513F: Documentation/PCI/
5514F: drivers/pci/
5515F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005516
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005518P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005519L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005520W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005521T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005523F: Documentation/pcmcia/
5524F: drivers/pcmcia/
5525F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526
5527PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005528M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005529L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005531F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532
Steffen Klassert48fc2672010-08-13 10:10:46 -04005533PCRYPT PARALLEL CRYPTO ENGINE
5534M: Steffen Klassert <steffen.klassert@secunet.com>
5535L: linux-crypto@vger.kernel.org
5536S: Maintained
5537F: crypto/pcrypt.c
5538F: include/crypto/pcrypt.h
5539
Tejun Heoe72df0b2010-12-10 17:02:49 +01005540PER-CPU MEMORY ALLOCATOR
5541M: Tejun Heo <tj@kernel.org>
5542M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005543T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5544S: Maintained
5545F: include/linux/percpu*.h
5546F: mm/percpu*.c
5547F: arch/*/include/asm/percpu.h
5548
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005549PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005550M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005552F: include/linux/delayacct.h
5553F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005554
Ingo Molnar57c0c152009-09-21 12:20:38 +02005555PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005556M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5557M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005558M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005559M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005560T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005561S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005562F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005563F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005564F: arch/*/kernel/perf_event*.c
5565F: arch/*/kernel/*/perf_event*.c
5566F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005567F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005568F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005569F: arch/*/kernel/perf_callchain.c
5570F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005571
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005572PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005573M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005574L: linux-abi-devel@lists.sourceforge.net
5575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005576F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005577
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005578PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005579M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005580S: Supported
5581F: Documentation/networking/phonet.txt
5582F: include/linux/phonet.h
5583F: include/net/phonet/
5584F: net/phonet/
5585
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005587M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588L: linux-mtd@lists.infradead.org
5589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005590F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591
Bruno Prémontefdbb102012-07-30 21:39:03 +02005592PICOLCD HID DRIVER
5593M: Bruno Prémont <bonbons@linux-vserver.org>
5594L: linux-input@vger.kernel.org
5595S: Maintained
5596F: drivers/hid/hid-picolcd*
5597
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005598PICOXCELL SUPPORT
5599M: Jamie Iles <jamie@jamieiles.com>
5600L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5601T: git git://github.com/jamieiles/linux-2.6-ji.git
5602S: Supported
5603F: arch/arm/mach-picoxcell
5604F: drivers/*/picoxcell*
5605F: drivers/*/*/picoxcell*
5606
Linus Walleij2744e8a2011-05-02 20:50:54 +02005607PIN CONTROL SUBSYSTEM
5608M: Linus Walleij <linus.walleij@linaro.org>
5609S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005610F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005611F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005612
Viresh Kumardeda8282012-03-28 22:27:07 +05305613PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005614M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305615L: spear-devel@list.st.com
5616L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5617W: http://www.st.com/spear
5618S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005619F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305620
Peter Osterlund249a6772005-09-27 21:45:30 -07005621PKTCDVD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005622M: Peter Osterlund <petero2@telia.com>
Peter Osterlund249a6772005-09-27 21:45:30 -07005623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005624F: drivers/block/pktcdvd.c
5625F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005626
GuanXuetaob31d8272011-01-16 00:35:49 +08005627PKUNITY SOC DRIVERS
5628M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5629W: http://mprc.pku.edu.cn/~guanxuetao/linux
5630S: Maintained
5631T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5632F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005633F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005634F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005635F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005636
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005637PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005638M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005639L: lm-sensors@lm-sensors.org
5640W: http://www.lm-sensors.org/
5641W: http://www.roeck-us.net/linux/drivers/
5642T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5643S: Maintained
5644F: Documentation/hwmon/pmbus
5645F: drivers/hwmon/pmbus/
5646F: include/linux/i2c/pmbus.h
5647
Anil Ravindranath89a36812009-08-25 17:35:18 -07005648PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005649M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005650L: linux-scsi@vger.kernel.org
5651W: http://www.pmc-sierra.com/
5652S: Supported
5653F: drivers/scsi/pmcraid.*
5654
jack wangdbf9bfe2009-10-14 16:19:21 +08005655PMC SIERRA PM8001 DRIVER
5656M: jack_wang@usish.com
5657M: lindar_liu@usish.com
5658L: linux-scsi@vger.kernel.org
5659S: Supported
5660F: drivers/scsi/pm8001/
5661
Linus Torvalds1da177e2005-04-16 15:20:36 -07005662POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005663M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005664T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005666F: fs/timerfd.c
5667F: include/linux/timer*
5668F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005669
Anton Vorontsov3be86142007-07-15 04:43:36 +04005670POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005671M: Anton Vorontsov <cbou@mail.ru>
5672M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005673T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005675F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005676F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005677
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005679M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005680M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005682F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683
Vitaly Wool999445d2007-01-04 13:07:03 +01005684PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005685M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005686L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005688F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005689
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005691M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005692L: linux-ppp@vger.kernel.org
5693S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005694F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695
5696PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005697M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005699F: net/atm/pppoatm.c
5700F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005701
5702PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005703M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005705F: drivers/net/ppp/pppoe.c
5706F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707
James Chapmana6d23702007-06-27 15:53:17 -07005708PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005709M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005710S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005711F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005712F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005713
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005714PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005715M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005716W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5717L: linuxpps@ml.enneenne.com (subscribers-only)
5718S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005719F: Documentation/pps/
5720F: drivers/pps/
5721F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005722
Harry Wei71a6d0a2011-05-11 15:13:33 -07005723PPTP DRIVER
5724M: Dmitry Kozlov <xeb@mail.ru>
5725L: netdev@vger.kernel.org
5726S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005727F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005728W: http://sourceforge.net/projects/accel-pptp
5729
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005731M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732L: kpreempt-tech@lists.sourceforge.net
5733W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5734S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005735F: Documentation/preempt-locking.txt
5736F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005737
5738PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005739M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005740L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005741W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005742S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005743F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005745PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005746M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005747L: linux-ide@vger.kernel.org
5748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005749F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005750
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005751PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005752M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005753L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005754L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005755S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07005756F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005757
Geoff Levandf58a9d12006-11-23 00:46:51 +01005758PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005759M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005760L: linuxppc-dev@lists.ozlabs.org
5761L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005763F: arch/powerpc/boot/ps3*
5764F: arch/powerpc/include/asm/lv1call.h
5765F: arch/powerpc/include/asm/ps3*.h
5766F: arch/powerpc/platforms/ps3/
5767F: drivers/*/ps3*
5768F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00005769F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07005770F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00005771F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01005772
Jim Pariscffb4add2009-01-06 11:32:10 +00005773PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005774M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005775L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00005776S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07005777F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00005778
Anton Vorontsov8defe592012-08-03 18:07:20 -07005779PSTORE FILESYSTEM
5780M: Anton Vorontsov <cbouatmailru@gmail.com>
5781M: Colin Cross <ccross@android.com>
5782M: Kees Cook <keescook@chromium.org>
5783M: Tony Luck <tony.luck@intel.com>
5784S: Maintained
5785T: git git://git.infradead.org/users/cbou/linux-pstore.git
5786F: fs/pstore/
5787F: include/linux/pstore*
5788F: drivers/firmware/efivars.c
5789F: drivers/acpi/apei/erst.c
5790
Richard Cochran7fbc4152012-03-10 01:55:53 +00005791PTP HARDWARE CLOCK SUPPORT
5792M: Richard Cochran <richardcochran@gmail.com>
5793S: Maintained
5794W: http://linuxptp.sourceforge.net/
5795F: Documentation/ABI/testing/sysfs-ptp
5796F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07005797F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00005798F: drivers/net/phy/dp83640*
5799F: drivers/ptp/*
5800F: include/linux/ptp_cl*
5801
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005802PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005803M: Roland McGrath <roland@redhat.com>
5804M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005805S: Maintained
5806F: include/asm-generic/syscall.h
5807F: include/linux/ptrace.h
5808F: include/linux/regset.h
5809F: include/linux/tracehook.h
5810F: kernel/ptrace.c
5811
Michael Krufky83202042006-07-03 00:24:18 -07005812PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005813M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03005814L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005815L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07005816W: http://www.isely.net/pvrusb2/
Joe Perches08deed12012-03-23 15:01:57 -07005817T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Michael Krufky83202042006-07-03 00:24:18 -07005818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005819F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03005820F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07005821
Thierry Reding200efed2012-03-27 13:16:18 +02005822PWM SUBSYSTEM
5823M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005824L: linux-kernel@vger.kernel.org
5825S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02005826W: http://gitorious.org/linux-pwm
5827T: git git://gitorious.org/linux-pwm/linux-pwm.git
5828F: Documentation/pwm.txt
5829F: Documentation/devicetree/bindings/pwm/
5830F: include/linux/pwm.h
5831F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005832F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07005833F: drivers/video/backlight/pwm_bl.c
5834F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005835
Eric Miao30ec2612008-06-12 15:21:41 -07005836PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005837M: Eric Miao <eric.y.miao@gmail.com>
5838M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005839M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005840L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005841T: git git://github.com/hzhuang1/linux.git
5842T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005844F: arch/arm/mach-pxa/
5845F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08005846F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07005847F: drivers/usb/gadget/pxa2*
5848F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01005849F: sound/arm/pxa*
5850F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07005851
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005852MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005853M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005854M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005855L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005856T: git git://github.com/hzhuang1/linux.git
5857T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005858S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005859F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005860
Pierre Ossman272f1332007-05-14 21:25:26 +02005861PXA MMCI DRIVER
5862S: Orphan
5863
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005864PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005865M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005866L: rtc-linux@googlegroups.com
5867S: Maintained
5868
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005869QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005870M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005871L: linux-rdma@vger.kernel.org
5872S: Supported
5873F: drivers/infiniband/hw/qib/
5874
Jes Sorensen5e9772b2010-06-30 15:37:38 +02005875QLOGIC QLA1280 SCSI DRIVER
5876M: Michael Reed <mdr@sgi.com>
5877L: linux-scsi@vger.kernel.org
5878S: Maintained
5879F: drivers/scsi/qla1280.[ch]
5880
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005882M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08005883M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005884L: linux-scsi@vger.kernel.org
5885S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005886F: Documentation/scsi/LICENSE.qla2xxx
5887F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888
Ravi Anand883c98f2010-04-28 11:45:49 +05305889QLOGIC QLA4XXX iSCSI DRIVER
5890M: Ravi Anand <ravi.anand@qlogic.com>
5891M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
5892M: iscsi-driver@qlogic.com
5893L: linux-scsi@vger.kernel.org
5894S: Supported
5895F: drivers/scsi/qla4xxx/
5896
Ron Mercer5a4faa82006-07-25 00:40:21 -07005897QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00005898M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005899M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa82006-07-25 00:40:21 -07005900M: linux-driver@qlogic.com
5901L: netdev@vger.kernel.org
5902S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005903F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005904F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07005905
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005906QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00005907M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07005908M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005909M: linux-driver@qlogic.com
5910L: netdev@vger.kernel.org
5911S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005912F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005913
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005914QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00005915M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005916M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07005917M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005918L: netdev@vger.kernel.org
5919S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005920F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005921
Linus Torvalds1da177e2005-04-16 15:20:36 -07005922QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005923M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005924W: http://www.alarsen.net/linux/qnx4fs/
5925S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005926F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07005927F: include/linux/qnx4_fs.h
5928F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929
Antti Palosaari91952bc2012-10-01 12:28:46 -03005930QT1010 MEDIA DRIVER
5931M: Antti Palosaari <crope@iki.fi>
5932L: linux-media@vger.kernel.org
5933W: http://linuxtv.org/
5934W: http://palosaari.fi/linux/
5935Q: http://patchwork.linuxtv.org/project/linux-media/list/
5936T: git git://linuxtv.org/anttip/media_tree.git
5937S: Maintained
5938F: drivers/media/tuners/qt1010*
5939
Richard Kuo4f4567c2011-10-31 18:56:38 -05005940QUALCOMM HEXAGON ARCHITECTURE
5941M: Richard Kuo <rkuo@codeaurora.org>
5942L: linux-hexagon@vger.kernel.org
5943S: Supported
5944F: arch/hexagon/
5945
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005946RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07005947M: Yehuda Sadeh <yehuda@inktank.com>
5948M: Sage Weil <sage@inktank.com>
5949M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005950M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07005951W: http://ceph.com/
5952T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005953S: Supported
5954F: drivers/block/rbd.c
5955F: drivers/block/rbd_types.h
5956
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005958M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005959L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005961F: drivers/video/aty/radeon*
5962F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005963
5964RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005965M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005966L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005968F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969
Randy Dunlape7839f22008-10-12 16:11:45 -07005970RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005971P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01005972M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01005973M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01005974M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005975L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01005976L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005977W: http://rt2x00.serialmonkey.com/
5978S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07005979T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005980F: drivers/net/wireless/rt2x00/
5981
Nick Piggin9db55792008-02-08 04:19:49 -08005982RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10005983M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08005984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005985F: Documentation/blockdev/ramdisk.txt
5986F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08005987
Matt Mackall9e95ce22005-04-16 15:25:56 -07005988RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04005989M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07005990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005991F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07005992
Matt Porter394b7012005-11-07 01:00:15 -08005993RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005994M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08005995M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08005996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005997F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08005998
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005999RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006000L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006001S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006002F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006003
6004RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006005M: Josh Triplett <josh@freedesktop.org>
6006M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006007S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006008T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006009F: Documentation/RCU/torture.txt
6010F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006011
Florian Fainellic1f766b2008-02-06 22:39:44 +01006012RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006013M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006014S: Maintained
6015
Florian Fainellidb17f392007-12-19 11:30:30 +01006016RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006017M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006018L: netdev@vger.kernel.org
6019S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006020F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006021
Andy Grovera09ed662009-02-24 15:30:41 +00006022RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006023M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006024L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006025S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006026F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006027
Josh Triplett595182b2006-10-04 02:17:21 -07006028READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006029M: Dipankar Sarma <dipankar@in.ibm.com>
6030M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006031W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006032S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006033T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006034F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006035X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006036F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006037F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006038X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006039
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006040REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006041M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006042L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006043Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006045F: Documentation/rtc.txt
6046F: drivers/rtc/
6047F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006048
Linus Torvalds1da177e2005-04-16 15:20:36 -07006049REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006050L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006052F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053
Mark Brownb83a3132011-05-11 19:59:58 +02006054REGISTER MAP ABSTRACTION
6055M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6056T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6057S: Supported
6058F: drivers/base/regmap/
6059F: include/linux/regmap.h
6060
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006061REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6062M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006063T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006064S: Maintained
6065F: drivers/remoteproc/
6066F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006067F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006068
Ivo van Doorne08976452008-04-12 19:23:55 +02006069RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006070M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006071L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006072W: http://wireless.kernel.org/
6073T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6074T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006075S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006076F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006077F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006078
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006079RICOH SMARTMEDIA/XD DRIVER
6080M: Maxim Levitsky <maximlevitsky@gmail.com>
6081S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006082F: drivers/mtd/nand/r852.c
6083F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006084
Maxim Levitsky92634122011-03-25 01:56:59 -07006085RICOH R5C592 MEMORYSTICK DRIVER
6086M: Maxim Levitsky <maximlevitsky@gmail.com>
6087S: Maintained
6088F: drivers/memstick/host/r592.*
6089
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090ROCKETPORT DRIVER
6091P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006092W: http://www.comtrol.com
6093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006094F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006095F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006096
6097ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006098M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006100W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006102F: include/linux/rose.h
6103F: include/net/rose.h
6104F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105
Antti Palosaari91952bc2012-10-01 12:28:46 -03006106RTL2830 MEDIA DRIVER
6107M: Antti Palosaari <crope@iki.fi>
6108L: linux-media@vger.kernel.org
6109W: http://linuxtv.org/
6110W: http://palosaari.fi/linux/
6111Q: http://patchwork.linuxtv.org/project/linux-media/list/
6112T: git git://linuxtv.org/anttip/media_tree.git
6113S: Maintained
6114F: drivers/media/dvb-frontends/rtl2830*
6115
Larry Finger59840482008-11-12 17:13:09 -06006116RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006117M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006118L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006119W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006120T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006121S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006122F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006123
Larry Finger59840482008-11-12 17:13:09 -06006124RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006125M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006126M: Hin-Tak Leung <htl10@users.sourceforge.net>
6127M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006128L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006129W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006130T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006131S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006132F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006133
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006134RTL8192CE WIRELESS DRIVER
6135M: Larry Finger <Larry.Finger@lwfinger.net>
6136M: Chaoming Li <chaoming_li@realsil.com.cn>
6137L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006138W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006139T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6140S: Maintained
6141F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006142F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006143
6144S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006145M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006146L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006148F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006149
Linus Torvalds1da177e2005-04-16 15:20:36 -07006150S390
Joe Perches8b58be82009-07-29 15:04:30 -07006151M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6152M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006153M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006154L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006155W: http://www.ibm.com/developerworks/linux/linux390/
6156S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006157F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006158F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006159F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006160F: Documentation/s390/
6161F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006162
6163S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006164M: Ursula Braun <ursula.braun@de.ibm.com>
6165M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006166M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006167L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006168W: http://www.ibm.com/developerworks/linux/linux390/
6169S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006170F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006171
Felix Beckfeed9b62009-03-26 15:24:23 +01006172S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006173M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006174M: linux390@de.ibm.com
6175L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006176W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006177S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006178F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006179
Heiko Carstens5238da42006-02-11 17:56:01 -08006180S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006181M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006182M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006183L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006184W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006185S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006186F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006187
Ursula Braundd96df22007-09-19 13:09:02 +02006188S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006189M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006190M: linux390@de.ibm.com
6191L: linux-s390@vger.kernel.org
6192W: http://www.ibm.com/developerworks/linux/linux390/
6193S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006194F: drivers/s390/net/*iucv*
6195F: include/net/iucv/
6196F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006197
Ben Dooks4dde7f72008-06-30 22:40:38 +01006198S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006199M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006200L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006202F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006203
Linus Torvalds1da177e2005-04-16 15:20:36 -07006204SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006205M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006206L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006207T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006208W: http://www.mihu.de/linux/saa7146
6209S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006210F: drivers/media/common/saa7146/
6211F: drivers/media/pci/saa7146/
6212F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006213
Corentin Chary92304a42011-12-05 12:38:35 -05006214SAMSUNG LAPTOP DRIVER
6215M: Corentin Chary <corentincj@iksaif.net>
6216L: platform-driver-x86@vger.kernel.org
6217S: Maintained
6218F: drivers/platform/x86/samsung-laptop.c
6219
Mark Brown4a109cc2010-09-24 10:50:46 +01006220SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006221M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006222L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6223S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006224F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006225
Jingoo Han0d89a282011-12-19 11:09:35 +09006226SAMSUNG FRAMEBUFFER DRIVER
6227M: Jingoo Han <jg1.han@samsung.com>
6228L: linux-fbdev@vger.kernel.org
6229S: Maintained
6230F: drivers/video/s3c-fb.c
6231
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006232SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6233M: Sangbeom Kim <sbkim73@samsung.com>
6234L: linux-kernel@vger.kernel.org
6235S: Supported
6236F: drivers/mfd/sec*.c
6237F: drivers/regulator/s2m*.c
6238F: drivers/regulator/s5m*.c
6239F: drivers/rtc/rtc-sec.c
6240F: include/linux/mfd/samsung/
6241
Alan Coxca749e22011-03-18 13:56:14 +00006242SERIAL DRIVERS
6243M: Alan Cox <alan@linux.intel.com>
6244L: linux-serial@vger.kernel.org
6245S: Maintained
6246F: drivers/tty/serial
6247
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306248SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006249M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306250S: Maintained
6251F: include/linux/dw_dmac.h
6252F: drivers/dma/dw_dmac_regs.h
6253F: drivers/dma/dw_dmac.c
6254
Thomas Gleixner88606e82010-12-14 21:37:13 +01006255TIMEKEEPING, NTP
6256M: John Stultz <johnstul@us.ibm.com>
6257M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006258T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006259S: Supported
6260F: include/linux/clocksource.h
6261F: include/linux/time.h
6262F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006263F: kernel/time/clocksource.c
6264F: kernel/time/time*.c
6265F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006266F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006267
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006268TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006269M: Huang Shijie <shijie8@gmail.com>
6270M: Kang Yong <kangyong@telegent.com>
6271M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006272S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006273F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006274
Linus Torvalds1da177e2005-04-16 15:20:36 -07006275SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006276M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006278F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006279
6280SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006281M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006282M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006283T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006284S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006285F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006286F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006287
Chen Liqin6bcf6732009-06-13 15:24:33 +08006288SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006289M: Chen Liqin <liqin.chen@sunplusct.com>
6290M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006291W: http://www.sunplusct.com
6292S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006293F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006294
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006296M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297L: linux-scsi@vger.kernel.org
6298W: http://www.kernel.dk
6299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006300F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006301
Roland Dreierfb50a832010-10-07 09:54:53 -07006302SCSI RDMA PROTOCOL (SRP) INITIATOR
6303M: David Dillow <dillowda@ornl.gov>
6304L: linux-rdma@vger.kernel.org
6305S: Supported
6306W: http://www.openfabrics.org
6307Q: http://patchwork.kernel.org/project/linux-rdma/list/
6308T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6309F: drivers/infiniband/ulp/srp/
6310F: include/scsi/srp.h
6311
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006313M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006314L: linux-scsi@vger.kernel.org
6315W: http://www.torque.net/sg
6316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006317F: drivers/scsi/sg.c
6318F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319
6320SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006321M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006323T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6324T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6325T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006327F: drivers/scsi/
6328F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006329
6330SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006331M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006332L: linux-scsi@vger.kernel.org
6333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006334F: Documentation/scsi/st.txt
6335F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006336
6337SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006338M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006339M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006340L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006341W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006343F: Documentation/networking/sctp.txt
6344F: include/linux/sctp.h
6345F: include/net/sctp/
6346F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006347
6348SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006349M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006350S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006351F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006352F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006353F: drivers/watchdog/scx200_wdt.c
6354F: drivers/i2c/busses/scx200*
6355F: drivers/mtd/maps/scx200_docflash.c
6356F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006357
6358SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006359M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006360S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006361F: drivers/char/scx200_gpio.c
6362F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006363
6364SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006365M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006367F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368
Sascha Sommer6a369132008-07-15 14:21:29 +02006369SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006370M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006371L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006373F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006374
Randy Dunlape7839f22008-10-12 16:11:45 -07006375SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006376M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006377L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006378T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6379S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006380F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006381F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006382
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006383SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006384M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006385L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006386L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006387S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006388F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006389
Ben Dooks0d1bb412009-06-14 13:52:37 +01006390SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006391M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006392L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006393S: Maintained
6394F: drivers/mmc/host/sdhci-s3c.c
6395
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006396SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006397M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006398L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006399L: linux-mmc@vger.kernel.org
6400S: Maintained
6401F: drivers/mmc/host/sdhci-spear.c
6402
James Morris8711cca2008-12-04 03:19:45 +11006403SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006404M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006405L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006406T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006407W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006408S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006409F: security/
James Morris8711cca2008-12-04 03:19:45 +11006410
Linus Torvalds1da177e2005-04-16 15:20:36 -07006411SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006412M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006413S: Supported
6414
6415SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006416M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006417M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006418M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006419L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006420W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006421T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006422S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006423F: include/linux/selinux*
6424F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006425F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426
John Johansenc1c124e2010-07-29 14:48:09 -07006427APPARMOR SECURITY MODULE
6428M: John Johansen <john.johansen@canonical.com>
6429L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6430W: apparmor.wiki.kernel.org
6431T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6432S: Supported
6433F: security/apparmor/
6434
Jiri Slabycef2cf02007-05-08 00:31:45 -07006435SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006436M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006438F: drivers/misc/phantom.c
6439F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006440
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006441SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006442M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006444T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006446F: drivers/ata/
6447F: include/linux/ata.h
6448F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006449
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306450SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006451M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006452L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006453W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006454S: Supported
6455F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306456
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006457SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006458M: Sathya Perla <sathya.perla@emulex.com>
6459M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6460M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006461L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006462W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006463S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006464F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006465
Ben Hutchings8ceee662008-04-27 12:55:59 +01006466SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006467M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006468M: Ben Hutchings <bhutchings@solarflare.com>
6469L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006470S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006471F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006472
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006473SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006474M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006476F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006477
6478SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006479M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006480L: linux-ia64@vger.kernel.org
6481S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006482F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006483F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006484F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006485
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006487M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006488L: linux-visws-devel@lists.sf.net
6489W: http://linux-visws.sf.net
6490S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006491F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006492
Jack Steiner75312612008-08-15 00:40:42 -07006493SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006494M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006496F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006497
Len Brown6349d992009-08-14 15:07:14 -04006498SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006499M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006500L: sfi-devel@simplefirmware.org
6501W: http://simplefirmware.org/
6502T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006503S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006504F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006505F: drivers/sfi/
6506F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006507
Linus Torvalds1da177e2005-04-16 15:20:36 -07006508SIMTEC EB110ATX (Chalice CATS)
6509P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006510P: Vincent Sanders <vince@simtec.co.uk>
6511M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006512W: http://www.simtec.co.uk/products/EB110ATX/
6513S: Supported
6514
6515SIMTEC EB2410ITX (BAST)
6516P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006517P: Vincent Sanders <vince@simtec.co.uk>
6518M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006519W: http://www.simtec.co.uk/products/EB2410ITX/
6520S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006521F: arch/arm/mach-s3c2410/mach-bast.c
6522F: arch/arm/mach-s3c2410/bast-ide.c
6523F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006524
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006525TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006526M: Sekhar Nori <nsekhar@ti.com>
6527M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306528L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306529T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006530Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006531S: Supported
6532F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006533F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006534
Francois Romieu92aab3c2005-07-30 13:11:18 +02006535SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006536M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006537L: netdev@vger.kernel.org
6538S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006539F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006540
Linus Torvalds1da177e2005-04-16 15:20:36 -07006541SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006542M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006543W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006544L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006546F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006547
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006548SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006549M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006550L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006552F: Documentation/i2c/busses/i2c-sis96x
6553F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006554
Linus Torvalds1da177e2005-04-16 15:20:36 -07006555SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006556M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006559F: Documentation/fb/sisfb.txt
6560F: drivers/video/sis/
6561F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006562
6563SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006564M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006565W: http://www.winischhofer.at/linuxsisusbvga.shtml
6566S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006567F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006568
Christoph Lameter415ad262007-07-26 10:40:56 -07006569SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006570M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006571M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006572M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07006573L: linux-mm@kvack.org
6574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006575F: include/linux/sl?b*.h
6576F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07006577
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006578SLEEPABLE READ-COPY UPDATE (SRCU)
6579M: Lai Jiangshan <laijs@cn.fujitsu.com>
6580M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6581W: http://www.rdrop.com/users/paulmck/RCU/
6582S: Supported
6583T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6584F: include/linux/srcu*
6585F: kernel/srcu*
6586
Casey Schaufler66372842012-05-23 18:34:52 -07006587SMACK SECURITY MODULE
6588M: Casey Schaufler <casey@schaufler-ca.com>
6589L: linux-security-module@vger.kernel.org
6590W: http://schaufler-ca.com
6591T: git git://git.gitorious.org/smack-next/kernel.git
6592S: Maintained
6593F: Documentation/security/Smack.txt
6594F: security/smack/
6595
Linus Torvalds1da177e2005-04-16 15:20:36 -07006596SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006597M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006598S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006599F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006600
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006601SMM665 HARDWARE MONITOR DRIVER
6602M: Guenter Roeck <linux@roeck-us.net>
6603L: lm-sensors@lm-sensors.org
6604S: Maintained
6605F: Documentation/hwmon/smm665
6606F: drivers/hwmon/smm665.c
6607
Steve Glendinning9df73052010-08-14 21:08:54 +02006608SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006609M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006610L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006611S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006612F: Documentation/hwmon/emc2103
6613F: drivers/hwmon/emc2103.c
6614
Hans de Goedea98d5062011-03-21 17:59:36 +01006615SMSC SCH5627 HARDWARE MONITOR DRIVER
6616M: Hans de Goede <hdegoede@redhat.com>
6617L: lm-sensors@lm-sensors.org
6618S: Supported
6619F: Documentation/hwmon/sch5627
6620F: drivers/hwmon/sch5627.c
6621
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006622SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006623M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006624L: lm-sensors@lm-sensors.org
6625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006626F: Documentation/hwmon/smsc47b397
6627F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006628
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006629SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006630M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006631L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006633F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006634F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006635
Steve Glendinning2cb37722008-12-11 20:54:30 -08006636SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006637M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006638L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006639S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006640F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006641
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006642SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006643M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006644L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006645S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006646F: drivers/video/smscufx.c
6647
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006648SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006649M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006650L: linux-altix@sgi.com
6651L: linux-ia64@vger.kernel.org
6652W: http://www.sgi.com/altix
6653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006654F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006655
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006656SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006657M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006658L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006659T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006660S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006661F: include/media/soc*
6662F: drivers/media/i2c/soc_camera/
6663F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006664
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006665SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006666M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006668F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006669
Linus Torvalds1da177e2005-04-16 15:20:36 -07006670SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006671M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006672L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006673S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006674F: drivers/md/
6675F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006676
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006678M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006679L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006680S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07006681F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006682
Michael Buesch61e115a2007-09-18 15:12:50 -04006683SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02006684M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04006685L: netdev@vger.kernel.org
6686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006687F: drivers/ssb/
6688F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04006689
Linus Torvalds1da177e2005-04-16 15:20:36 -07006690SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006691M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05006692L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01006693W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07006694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006695F: Documentation/laptops/sony-laptop.txt
6696F: drivers/char/sonypi.c
6697F: drivers/platform/x86/sony-laptop.c
6698F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006699
Alex Dubovbaf85322008-02-09 10:20:54 -08006700SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006701M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08006702W: http://tifmxx.berlios.de/
6703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006704F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08006705
Linus Torvalds1da177e2005-04-16 15:20:36 -07006706SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07006707M: Jaroslav Kysela <perex@perex.cz>
6708M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07006709L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07006710W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02006711T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07006712T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006713S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07006714F: Documentation/sound/
6715F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07006716F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006717
Mark Brownbd903bd2008-11-19 19:16:05 +00006718SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01006719M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006720M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00006721T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07006722L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01006723W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006724S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006725F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01006726F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006727
Sam Ravnborg473321f2009-01-04 15:47:49 -08006728SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07006729M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006730L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006731Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07006732T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6733T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006735F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07006736F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006737
David S. Miller6404fcc2010-03-16 01:00:17 -07006738SPARC SERIAL DRIVERS
6739M: "David S. Miller" <davem@davemloft.net>
6740L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006741T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6742T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07006743S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05006744F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006745F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006746F: drivers/tty/serial/sunhv.c
6747F: drivers/tty/serial/sunsab.c
6748F: drivers/tty/serial/sunsab.h
6749F: drivers/tty/serial/sunsu.c
6750F: drivers/tty/serial/sunzilog.c
6751F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07006752
Christopher Li389325b2012-04-05 14:25:14 -07006753SPARSE CHECKER
6754M: "Christopher Li" <sparse@chrisli.org>
6755L: linux-sparse@vger.kernel.org
6756W: https://sparse.wiki.kernel.org/
6757T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
6758T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
6759S: Maintained
6760F: include/linux/compiler.h
6761
viresh kumarfc0c1952010-04-01 12:31:21 +01006762SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006763M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306764M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006765L: spear-devel@list.st.com
6766L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006767W: http://www.st.com/spear
6768S: Maintained
6769F: arch/arm/plat-spear/
6770
Viresh Kumar71e09a92012-04-20 22:39:48 +05306771SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006772M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306773M: Shiraz Hashim <shiraz.hashim@st.com>
6774L: spear-devel@list.st.com
6775L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6776W: http://www.st.com/spear
6777S: Maintained
6778F: arch/arm/mach-spear13xx/
6779
viresh kumarfc0c1952010-04-01 12:31:21 +01006780SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006781M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306782M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006783L: spear-devel@list.st.com
6784L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006785W: http://www.st.com/spear
6786S: Maintained
6787F: arch/arm/mach-spear3xx/
6788
6789SPEAR6XX MACHINE SUPPORT
6790M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306791M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006792M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006793L: spear-devel@list.st.com
6794L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006795W: http://www.st.com/spear
6796S: Maintained
6797F: arch/arm/mach-spear6xx/
6798
6799SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006800M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006801L: spear-devel@list.st.com
6802L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006803W: http://www.st.com/spear
6804S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05306805F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01006806
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006807SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07006808M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006809L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08006810Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06006811T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006813F: Documentation/spi/
6814F: drivers/spi/
6815F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006816
Jim Lewis2752e402006-09-29 02:01:19 -07006817SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07006818M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
6819M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07006820L: netdev@vger.kernel.org
6821S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006822F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006823F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07006824
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006825SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006826M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006827L: linuxppc-dev@lists.ozlabs.org
6828L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006829W: http://www.ibm.com/developerworks/power/cell/
6830S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006831F: Documentation/filesystems/spufs.txt
6832F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006833
Phillip Lougherfc555842009-01-05 08:46:29 +00006834SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01006835M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00006836L: squashfs-devel@lists.sourceforge.net (subscribers-only)
6837W: http://squashfs.org.uk
6838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006839F: Documentation/filesystems/squashfs.txt
6840F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00006841
Linus Torvalds1da177e2005-04-16 15:20:36 -07006842SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07006843M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006845F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006846
Linus Torvalds26e9a392008-10-17 09:50:12 -07006847STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08006848M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08006849L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08006850S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006851
Linus Torvalds26e9a392008-10-17 09:50:12 -07006852STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08006853M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07006854T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07006855L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08006856S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006857F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07006858
Joe Perchesc8c8b102011-07-05 09:42:12 -07006859STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
6860M: Henk de Groot <pe1dnn@amsat.org>
6861S: Odd Fixes
6862F: drivers/staging/wlags49_h2/
6863F: drivers/staging/wlags49_h25/
6864
Joe Perchesc9555152011-07-05 09:42:01 -07006865STAGING - ASUS OLED
6866M: Jakub Schmidtke <sjakub@gmail.com>
6867S: Odd Fixes
6868F: drivers/staging/asus_oled/
6869
Joe Perchesebd3d012011-07-05 09:42:02 -07006870STAGING - COMEDI
6871M: Ian Abbott <abbotti@mev.co.uk>
6872M: Mori Hess <fmhess@users.sourceforge.net>
6873S: Odd Fixes
6874F: drivers/staging/comedi/
6875
Joe Perches8ca572c2011-07-05 09:42:03 -07006876STAGING - CRYSTAL HD VIDEO DECODER
6877M: Naren Sankar <nsankar@broadcom.com>
6878M: Jarod Wilson <jarod@wilsonet.com>
6879M: Scott Davilla <davilla@4pi.com>
6880M: Manu Abraham <abraham.manu@gmail.com>
6881S: Odd Fixes
6882F: drivers/staging/crystalhd/
6883
Joe Perches0f16ffc2011-07-05 09:42:04 -07006884STAGING - ECHO CANCELLER
6885M: Steve Underwood <steveu@coppice.org>
6886M: David Rowe <david@rowetel.com>
6887S: Odd Fixes
6888F: drivers/staging/echo/
6889
Mark Einon8dc2bbe72011-08-29 18:42:37 +01006890STAGING - ET131X NETWORK DRIVER
6891M: Mark Einon <mark.einon@gmail.com>
6892S: Odd Fixes
6893F: drivers/staging/et131x/
6894
Joe Perchesa0138162011-07-05 15:21:34 -07006895STAGING - FLARION FT1000 DRIVERS
6896M: Marek Belisko <marek.belisko@gmail.com>
6897S: Odd Fixes
6898F: drivers/staging/ft1000/
6899
Joe Perchesec3fab92011-07-05 09:42:05 -07006900STAGING - FRONTIER TRANZPORT AND ALPHATRACK
6901M: David Täht <d@teklibre.com>
6902S: Odd Fixes
6903F: drivers/staging/frontier/
6904
Joe Perches6c1bb422011-07-05 09:42:07 -07006905STAGING - INDUSTRIAL IO
6906M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07006907L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07006908S: Odd Fixes
6909F: drivers/staging/iio/
6910
Joe Perchesa0138162011-07-05 15:21:34 -07006911STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
6912M: Jarod Wilson <jarod@wilsonet.com>
6913W: http://www.lirc.org/
6914S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006915F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07006916
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006917STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02006918M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006919M: Marc Dietrich <marvin24@gmx.de>
6920L: ac100@lists.launchpad.net (moderated for non-subscribers)
6921S: Maintained
6922F: drivers/staging/nvec/
6923
Joe Perchesa0138162011-07-05 15:21:34 -07006924STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
6925M: Andres Salomon <dilinger@queued.net>
6926M: Chris Ball <cjb@laptop.org>
6927M: Jon Nettleton <jon.nettleton@gmail.com>
6928W: http://wiki.laptop.org/go/DCON
6929S: Odd Fixes
6930F: drivers/staging/olpc_dcon/
6931
Chris Kelly94cfdd12012-03-14 10:55:42 +00006932STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00006933M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00006934M: Chris Kelly <ckelly@ozmodevices.com>
6935S: Maintained
6936F: drivers/staging/ozwpan/
6937
Joe Perchesa0138162011-07-05 15:21:34 -07006938STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07006939M: Willy Tarreau <willy@meta-x.org>
6940S: Odd Fixes
6941F: drivers/staging/panel/
6942
Joe Perchesa0138162011-07-05 15:21:34 -07006943STAGING - REALTEK RTL8712U DRIVERS
6944M: Larry Finger <Larry.Finger@lwfinger.net>
6945M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
6946S: Odd Fixes
6947F: drivers/staging/rtl8712/
6948
Joe Perches9629fa82011-07-05 09:42:09 -07006949STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
6950M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
6951S: Odd Fixes
6952F: drivers/staging/sm7xx/
6953
Joe Perchesa0138162011-07-05 15:21:34 -07006954STAGING - SOFTLOGIC 6x10 MPEG CODEC
6955M: Ben Collins <bcollins@bluecherry.net>
6956S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006957F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07006958
6959STAGING - SPEAKUP CONSOLE SPEECH DRIVER
6960M: William Hubbs <w.d.hubbs@gmail.com>
6961M: Chris Brannon <chris@the-brannons.com>
6962M: Kirk Reiser <kirk@braille.uwo.ca>
6963M: Samuel Thibault <samuel.thibault@ens-lyon.org>
6964L: speakup@braille.uwo.ca
6965W: http://www.linux-speakup.org/
6966S: Odd Fixes
6967F: drivers/staging/speakup/
6968
6969STAGING - TI DSP BRIDGE DRIVERS
6970M: Omar Ramirez Luna <omar.ramirez@ti.com>
6971S: Odd Fixes
6972F: drivers/staging/tidspbridge/
6973
Joe Perchesa0138162011-07-05 15:21:34 -07006974STAGING - USB ENE SM/MS CARD READER DRIVER
6975M: Al Cho <acho@novell.com>
6976S: Odd Fixes
6977F: drivers/staging/keucr/
6978
Joe Perchesb3e871c2011-07-05 09:42:10 -07006979STAGING - VIA VT665X DRIVERS
6980M: Forest Bond <forest@alittletooquiet.net>
6981S: Odd Fixes
6982F: drivers/staging/vt665?/
6983
Joe Perches81a9a522011-07-05 09:42:11 -07006984STAGING - WINBOND IS89C35 WLAN USB DRIVER
6985M: Pavel Machek <pavel@ucw.cz>
6986S: Odd Fixes
6987F: drivers/staging/winbond/
6988
Joe Perches709bcb02011-07-05 09:42:13 -07006989STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02006990M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07006991S: Odd Fixes
6992F: drivers/staging/xgifb/
6993
Linus Torvalds1da177e2005-04-16 15:20:36 -07006994STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006995M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07006996S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07006997F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006998
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006999SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007000M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007001W: http://sammy.net/sun3/
7002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007003F: arch/m68k/kernel/*sun3*
7004F: arch/m68k/sun3*/
7005F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007006F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007007
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007008SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007009M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007010L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007011W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007012Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007013T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007014S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007015F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007016F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007017F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007018
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007019SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007020M: Len Brown <len.brown@intel.com>
7021M: Pavel Machek <pavel@ucw.cz>
7022M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007023L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007024S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007025F: Documentation/power/
7026F: arch/x86/kernel/acpi/
7027F: drivers/base/power/
7028F: kernel/power/
7029F: include/linux/suspend.h
7030F: include/linux/freezer.h
7031F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007032
7033SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007034M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007035L: linux-video@atrey.karlin.mff.cuni.cz
7036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007037F: Documentation/svga.txt
7038F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007039
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007040SWIOTLB SUBSYSTEM
7041M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7042L: linux-kernel@vger.kernel.org
7043S: Supported
7044F: lib/swiotlb.c
7045F: arch/*/kernel/pci-swiotlb.c
7046F: include/linux/swiotlb.h
7047
Linus Torvalds1da177e2005-04-16 15:20:36 -07007048SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007049M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007051F: Documentation/filesystems/sysv-fs.txt
7052F: fs/sysv/
7053F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007054
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007055TARGET SUBSYSTEM
7056M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7057L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007058L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007059L: http://groups.google.com/group/linux-iscsi-target-dev
7060W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007061T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007062S: Supported
7063F: drivers/target/
7064F: include/target/
7065F: Documentation/target/
7066
Alan Cox4e688522008-04-30 00:52:11 -07007067TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007068M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007070F: Documentation/accounting/taskstats*
7071F: include/linux/taskstats*
7072F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007073
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007074TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007075M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007076L: netdev@vger.kernel.org
7077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007078F: include/linux/pkt_cls.h
7079F: include/net/pkt_cls.h
7080F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007081
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007082TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007083M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7084M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007085W: http://tcp-lp-mod.sourceforge.net/
7086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007087F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007088
Antti Palosaari91952bc2012-10-01 12:28:46 -03007089TDA10071 MEDIA DRIVER
7090M: Antti Palosaari <crope@iki.fi>
7091L: linux-media@vger.kernel.org
7092W: http://linuxtv.org/
7093W: http://palosaari.fi/linux/
7094Q: http://patchwork.linuxtv.org/project/linux-media/list/
7095T: git git://linuxtv.org/anttip/media_tree.git
7096S: Maintained
7097F: drivers/media/dvb-frontends/tda10071*
7098
7099TDA18212 MEDIA DRIVER
7100M: Antti Palosaari <crope@iki.fi>
7101L: linux-media@vger.kernel.org
7102W: http://linuxtv.org/
7103W: http://palosaari.fi/linux/
7104Q: http://patchwork.linuxtv.org/project/linux-media/list/
7105T: git git://linuxtv.org/anttip/media_tree.git
7106S: Maintained
7107F: drivers/media/tuners/tda18212*
7108
7109TDA18218 MEDIA DRIVER
7110M: Antti Palosaari <crope@iki.fi>
7111L: linux-media@vger.kernel.org
7112W: http://linuxtv.org/
7113W: http://palosaari.fi/linux/
7114Q: http://patchwork.linuxtv.org/project/linux-media/list/
7115T: git git://linuxtv.org/anttip/media_tree.git
7116S: Maintained
7117F: drivers/media/tuners/tda18218*
7118
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007119TDA18271 MEDIA DRIVER
7120M: Michael Krufky <mkrufky@linuxtv.org>
7121L: linux-media@vger.kernel.org
7122W: http://linuxtv.org/
7123W: http://github.com/mkrufky
7124Q: http://patchwork.linuxtv.org/project/linux-media/list/
7125T: git git://linuxtv.org/mkrufky/tuners.git
7126S: Maintained
7127F: drivers/media/tuners/tda18271*
7128
Michael Krufkye48307a2012-10-02 00:56:33 -03007129TDA827x MEDIA DRIVER
7130M: Michael Krufky <mkrufky@linuxtv.org>
7131L: linux-media@vger.kernel.org
7132W: http://linuxtv.org/
7133W: http://github.com/mkrufky
7134Q: http://patchwork.linuxtv.org/project/linux-media/list/
7135T: git git://linuxtv.org/mkrufky/tuners.git
7136S: Maintained
7137F: drivers/media/tuners/tda8290.*
7138
Michael Krufky66cf9212012-10-02 00:56:28 -03007139TDA8290 MEDIA DRIVER
7140M: Michael Krufky <mkrufky@linuxtv.org>
7141L: linux-media@vger.kernel.org
7142W: http://linuxtv.org/
7143W: http://github.com/mkrufky
7144Q: http://patchwork.linuxtv.org/project/linux-media/list/
7145T: git git://linuxtv.org/mkrufky/tuners.git
7146S: Maintained
7147F: drivers/media/tuners/tda8290.*
7148
Jiri Pirko3d249d42011-11-11 22:16:48 +00007149TEAM DRIVER
7150M: Jiri Pirko <jpirko@redhat.com>
7151L: netdev@vger.kernel.org
7152S: Supported
7153F: drivers/net/team/
7154F: include/linux/if_team.h
7155
Erik Gilling84b94142010-06-09 15:35:53 -07007156TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007157M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007158L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007159Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7160T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007161S: Supported
7162F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007163F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007164F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007165
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007166TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007167M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007168L: netdev@vger.kernel.org
7169S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007170F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007171
Alan Cox4e688522008-04-30 00:52:11 -07007172Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007173M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007174S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007175F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007176
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007177TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007178M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007179M: Max Filippov <jcmvbkbc@gmail.com>
7180L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007182F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007183
7184THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007185M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007186L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007187L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007188W: http://ibm-acpi.sourceforge.net
7189W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007190T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007192F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007193
Alex Dubov4020f2d2006-10-04 02:15:37 -07007194TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007195M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007197F: drivers/misc/tifm*
7198F: drivers/mmc/host/tifm_sd.c
7199F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007200
M R Swami Reddy152ad442012-04-02 20:02:31 +05307201TI LM49xxx FAMILY ASoC CODEC DRIVERS
7202M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307203M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307204L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7205S: Maintained
7206F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307207F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307208
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007209TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007210M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007211L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7212S: Maintained
7213F: sound/soc/codecs/twl4030*
7214
Luciano Coelho90921012011-11-20 21:40:41 +02007215TI WILINK WIRELESS DRIVERS
7216M: Luciano Coelho <coelho@ti.com>
7217L: linux-wireless@vger.kernel.org
7218W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7219W: http://wireless.kernel.org/en/users/Drivers/wl1251
7220T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7221S: Maintained
7222F: drivers/net/wireless/ti/
7223F: include/linux/wl12xx.h
7224
Per Lidene86eaa32006-01-12 16:45:18 +01007225TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007226M: Jon Maloy <jon.maloy@ericsson.com>
7227M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007228L: netdev@vger.kernel.org (core kernel code)
7229L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007230W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007232F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007233F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007234
Chris Metcalf867e3592010-05-28 23:09:12 -04007235TILE ARCHITECTURE
7236M: Chris Metcalf <cmetcalf@tilera.com>
7237W: http://www.tilera.com/scm/
7238S: Supported
7239F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007240F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007241F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007242F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007243
Linus Torvalds1da177e2005-04-16 15:20:36 -07007244TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007245M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007246L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007247W: http://sourceforge.net/projects/tlan/
7248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007249F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007250F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007251
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007252TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007253M: Kentaro Takeda <takedakn@nttdata.co.jp>
7254M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007255L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7256L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007257L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7258L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7259W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007260T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007262F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007263
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007264TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007265M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007266L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007267S: Maintained
7268F: drivers/platform/x86/topstar-laptop.c
7269
Linus Torvalds1da177e2005-04-16 15:20:36 -07007270TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05007271L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007272S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007273F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007274
7275TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007276M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007277L: tlinux-users@tce.toshiba-dme.co.jp
7278W: http://www.buzzard.org.uk/toshiba/
7279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007280F: drivers/char/toshiba.c
7281F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007282
Pierre Ossmand719f902009-03-24 21:06:09 +01007283TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007284M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007285M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007286L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007287S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007288F: drivers/mmc/host/tmio_mmc*
7289F: drivers/mmc/host/sh_mobile_sdhi.c
7290F: include/linux/mmc/tmio.h
7291F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007292
Hugh Dickins98f32602009-05-21 20:33:58 +01007293TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007294M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007295L: linux-mm@kvack.org
7296S: Maintained
7297F: include/linux/shmem_fs.h
7298F: mm/shmem.c
7299
Alan Cox4e688522008-04-30 00:52:11 -07007300TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007301M: Kent Yoder <key@linux.vnet.ibm.com>
7302M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007303W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007304M: Marcel Selhorst <tpmdd@selhorst.net>
7305M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007306W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007307L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007308S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007309F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007310
Joe Perchesd6f005a2009-10-26 16:49:40 -07007311TRACING
7312M: Steven Rostedt <rostedt@goodmis.org>
7313M: Frederic Weisbecker <fweisbec@gmail.com>
7314M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007315T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007316S: Maintained
7317F: Documentation/trace/ftrace.txt
7318F: arch/*/*/*/ftrace.h
7319F: arch/*/kernel/ftrace.c
7320F: include/*/ftrace.h
7321F: include/linux/trace*.h
7322F: include/trace/
7323F: kernel/trace/
7324
Linus Torvalds1da177e2005-04-16 15:20:36 -07007325TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007326M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007327T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007328S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007329K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007330
Alan Cox4e688522008-04-30 00:52:11 -07007331TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007332M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7333S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007334T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007335F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007336F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007337F: include/linux/serial_core.h
7338F: include/linux/serial.h
7339F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007340
Antti Palosaari91952bc2012-10-01 12:28:46 -03007341TUA9001 MEDIA DRIVER
7342M: Antti Palosaari <crope@iki.fi>
7343L: linux-media@vger.kernel.org
7344W: http://linuxtv.org/
7345W: http://palosaari.fi/linux/
7346Q: http://patchwork.linuxtv.org/project/linux-media/list/
7347T: git git://linuxtv.org/anttip/media_tree.git
7348S: Maintained
7349F: drivers/media/tuners/tua9001*
7350
Grant Grundler740db6d2008-02-17 11:53:49 -07007351TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007352M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007353L: netdev@vger.kernel.org
7354S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007355F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007356
7357TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07007358M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007359L: vtun@office.satix.net
7360W: http://vtun.sourceforge.net/tun
7361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007362F: Documentation/networking/tuntap.txt
7363F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007364
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007365TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007366M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007368F: drivers/tc/
7369F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007370
Linus Torvalds1da177e2005-04-16 15:20:36 -07007371U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007372M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007373L: linux-scsi@vger.kernel.org
7374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007375F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007376
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007377UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007378M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007379M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007380L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007381T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007382W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007384F: Documentation/filesystems/ubifs.txt
7385F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007386
Alan Coxcc2020e2008-05-19 14:21:51 +01007387UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007388M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007389W: http://www.uclinux.org/
7390L: uclinux-dev@uclinux.org (subscribers-only)
7391S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007392F: arch/m68k/*/*_no.*
7393F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007394
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007395UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007396M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007397W: http://uclinux-h8.sourceforge.jp/
7398S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007399F: arch/h8300/
7400F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007401F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007402
Linus Torvalds1da177e2005-04-16 15:20:36 -07007403UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007404M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007406F: Documentation/filesystems/udf.txt
7407F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007408
Alan Coxcc2020e2008-05-19 14:21:51 +01007409UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007410M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007412F: Documentation/filesystems/ufs.txt
7413F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007414
David Herrmann0a09d3a2012-06-10 15:16:28 +02007415UHID USERSPACE HID IO DRIVER:
7416M: David Herrmann <dh.herrmann@googlemail.com>
7417L: linux-input@vger.kernel.org
7418S: Maintained
7419F: drivers/hid/uhid.c
7420F: include/linux/uhid.h
7421
David Vrabel18332a82008-09-17 16:34:44 +01007422ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007423L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007424S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007425F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007426F: include/linux/uwb.h
7427F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007428
GuanXuetaob31d8272011-01-16 00:35:49 +08007429UNICORE32 ARCHITECTURE:
7430M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7431W: http://mprc.pku.edu.cn/~guanxuetao/linux
7432S: Maintained
7433T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7434F: arch/unicore32/
7435
Tony Finchd8379ab2009-11-27 15:50:30 +00007436UNIFDEF
7437M: Tony Finch <dot@dotat.at>
7438W: http://dotat.at/prog/unifdef
7439S: Maintained
7440F: scripts/unifdef.c
7441
Linus Torvalds1da177e2005-04-16 15:20:36 -07007442UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007443M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007444W: http://www.kernel.dk
7445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007446F: Documentation/cdrom/
7447F: drivers/cdrom/cdrom.c
7448F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007449
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307450UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7451M: Vinayak Holikatti <vinholikatti@gmail.com>
7452M: Santosh Y <santoshsy@gmail.com>
7453L: linux-scsi@vger.kernel.org
7454S: Supported
7455F: Documentation/scsi/ufs.txt
7456F: drivers/scsi/ufs/
7457
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007458UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007459M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007460W: http://www.linux-mtd.infradead.org/
7461L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007462T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007463S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007464F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007465F: include/linux/mtd/ubi.h
7466F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007467
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007468UNSORTED BLOCK IMAGES (UBI) Fastmap
7469M: Richard Weinberger <richard@nod.at>
7470L: linux-mtd@lists.infradead.org
7471S: Maintained
7472F: drivers/mtd/ubi/fastmap.c
7473
Linus Torvalds1da177e2005-04-16 15:20:36 -07007474USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007475M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007476L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007478F: Documentation/usb/acm.txt
7479F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007480
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007481USB ATTACHED SCSI
7482M: Matthew Wilcox <willy@linux.intel.com>
7483M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7484L: linux-usb@vger.kernel.org
7485L: linux-scsi@vger.kernel.org
7486S: Supported
7487F: drivers/usb/storage/uas.c
7488
Linus Torvalds1da177e2005-04-16 15:20:36 -07007489USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07007490M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007491L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007492S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007493F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007494
Linus Torvalds1da177e2005-04-16 15:20:36 -07007495USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007496M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007497L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007499F: drivers/net/usb/cdc_*.c
7500F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007501
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007502USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007503M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007504L: linux-usb@vger.kernel.org
7505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007506F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007507
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007508USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007509M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007510L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007511W: http://www.linux-usb.org/usbnet
7512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007513F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007514
Alan Coxcc2020e2008-05-19 14:21:51 +01007515USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007516M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007517L: rio500-users@lists.sourceforge.net
7518W: http://rio500.sourceforge.net
7519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007520F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007521
Linus Torvalds1da177e2005-04-16 15:20:36 -07007522USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007523M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007524L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007526F: Documentation/usb/ehci.txt
7527F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007528
David Brownell69ae9e32006-11-14 02:03:31 -08007529USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007530M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007531L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007532W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007533T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7534S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007535F: drivers/usb/gadget/
7536F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007537
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007538USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007539M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007540L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007541T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007542S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007543F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007544F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007545
matt mooney857aab32011-06-17 15:50:46 -07007546USB/IP DRIVERS
7547M: Matt Mooney <mfm@muteddisk.com>
7548L: linux-usb@vger.kernel.org
7549S: Maintained
7550F: drivers/staging/usbip/
7551
Olav Kongas959eea22005-11-03 17:38:14 +02007552USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007553M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007554L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007556F: drivers/usb/host/isp116x*
7557F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007558
Linus Torvalds1da177e2005-04-16 15:20:36 -07007559USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007560M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007561L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007563F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007564
7565USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007566M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007567L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007568L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007569S: Maintained
7570W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007571F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007572
Clemens Ladischaf399172011-01-10 16:32:54 +01007573USB MIDI DRIVER
7574M: Clemens Ladisch <clemens@ladisch.de>
7575L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7576T: git git://git.alsa-project.org/alsa-kernel.git
7577S: Maintained
7578F: sound/usb/midi.*
7579
Linus Torvalds1da177e2005-04-16 15:20:36 -07007580USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007581M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007582L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007584F: Documentation/usb/ohci.txt
7585F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007586
Matthias Urlichsba460e42005-07-14 00:33:47 -07007587USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007588M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007589L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007591F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007592
Linus Torvalds1da177e2005-04-16 15:20:36 -07007593USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007594M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007595L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007596L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007597W: http://pegasus2.sourceforge.net/
7598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007599F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007600
Felipe Balbid3ad5582012-05-21 16:24:49 +03007601USB PHY LAYER
7602M: Felipe Balbi <balbi@ti.com>
7603L: linux-usb@vger.kernel.org
7604T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7605S: Maintained
7606F: drivers/usb/phy/
7607F: drivers/usb/otg/
7608
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007609USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007610M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007611L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007612S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007613F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007614
7615USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007616M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007617L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007618L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007619W: http://pegasus2.sourceforge.net/
7620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007621F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007622
Alan Cox4e688522008-04-30 00:52:11 -07007623USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007624M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007625L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007627F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007628
7629USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007630M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007631L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007632S: Maintained
7633W: http://geocities.com/i0xox0i
7634W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07007635F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07007636
Linus Torvalds1da177e2005-04-16 15:20:36 -07007637USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007638M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007639W: http://www.reiner-sct.de/support/treiber_cyberjack.php
7640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007641F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007642
7643USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007644M: Peter Berger <pberger@brimson.com>
7645M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007646L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007648F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007649
7650USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007651M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007652L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007653S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007654F: Documentation/usb/usb-serial.txt
7655F: drivers/usb/serial/generic.c
7656F: drivers/usb/serial/usb-serial.c
7657F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007658
Linus Torvalds1da177e2005-04-16 15:20:36 -07007659USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007660M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007661L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007663F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007664
7665USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007666M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007667L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007669F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007670
7671USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007672M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007673L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007674W: http://www.connecttech.com
7675S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007676F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007677
Steve Glendinningb3f0db12012-08-15 21:53:38 +00007678USB SMSC75XX ETHERNET DRIVER
7679M: Steve Glendinning <steve.glendinning@shawell.net>
7680L: netdev@vger.kernel.org
7681S: Maintained
7682F: drivers/net/usb/smsc75xx.*
7683
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007684USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007685M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007686L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007688F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007689
Luca Risoliaf423b9a2007-03-26 16:12:04 -03007690USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007691M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007692L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007693L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007694T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007695W: http://www.linux-projects.org
7696S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007697F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007698F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007699
7700USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007701M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007702L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007703W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07007704T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007705S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007706F: Documentation/usb/
7707F: drivers/net/usb/
7708F: drivers/usb/
7709F: include/linux/usb.h
7710F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007711
7712USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007713M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007714L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007716F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007717
David Brownell69ae9e32006-11-14 02:03:31 -08007718USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02007719M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007720L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007721W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07007722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007723F: drivers/net/usb/usbnet.c
7724F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007725
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007726USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07007727M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03007728L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007729L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007730T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03007731W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007732S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007733F: drivers/media/usb/uvc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007734
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007735USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07007736M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007737L: linux-wireless@vger.kernel.org
7738S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007739F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007740
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007741USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08007742M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007743L: linux-usb@vger.kernel.org
7744S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08007745F: drivers/usb/host/xhci*
7746F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007747
Linus Torvalds1da177e2005-04-16 15:20:36 -07007748USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04007749L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007750W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04007751S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007752F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007753
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007754USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007755M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007756L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007757L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007758T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007759W: http://royale.zerezo.com/zr364xx/
7760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007761F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007762F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007763
Randy Dunlape7839f22008-10-12 16:11:45 -07007764USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07007765M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01007766M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007767L: user-mode-linux-devel@lists.sourceforge.net
7768L: user-mode-linux-user@lists.sourceforge.net
7769W: http://user-mode-linux.sourceforge.net
7770S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07007771F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07007772F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02007773F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07007774F: fs/hostfs/
7775F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007776
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007777USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07007778M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08007779M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007781F: Documentation/DocBook/uio-howto.tmpl
7782F: drivers/uio/
7783F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007784
Karel Zak256cccb2012-06-01 10:13:09 +02007785UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07007786M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02007787L: util-linux@vger.kernel.org
7788W: http://en.wikipedia.org/wiki/Util-linux
7789T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07007790S: Maintained
7791
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007792UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007793M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007794L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007795W: http://dev.gentoo.org/~spock/projects/uvesafb/
7796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007797F: Documentation/fb/uvesafb.txt
7798F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007799
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007800VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007801M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007803F: Documentation/filesystems/vfat.txt
7804F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007805
Alex Williamsoncba33452012-07-31 08:16:22 -06007806VFIO DRIVER
7807M: Alex Williamson <alex.williamson@redhat.com>
7808L: kvm@vger.kernel.org
7809S: Maintained
7810F: Documentation/vfio.txt
7811F: drivers/vfio/
7812F: include/linux/vfio.h
7813
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007814VIDEOBUF2 FRAMEWORK
7815M: Pawel Osciak <pawel@osciak.com>
7816M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03007817M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007818L: linux-media@vger.kernel.org
7819S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007820F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007821F: include/media/videobuf2-*
7822
Amit Shah9a824462010-03-23 18:23:09 +05307823VIRTIO CONSOLE DRIVER
7824M: Amit Shah <amit.shah@redhat.com>
7825L: virtualization@lists.linux-foundation.org
7826S: Maintained
7827F: drivers/char/virtio_console.c
7828F: include/linux/virtio_console.h
7829
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10307830VIRTIO CORE, NET AND BLOCK DRIVERS
7831M: Rusty Russell <rusty@rustcorp.com.au>
7832M: "Michael S. Tsirkin" <mst@redhat.com>
7833L: virtualization@lists.linux-foundation.org
7834S: Maintained
7835F: drivers/virtio/
7836F: drivers/net/virtio_net.c
7837F: drivers/block/virtio_blk.c
7838F: include/linux/virtio_*.h
7839
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00007840VIRTIO HOST (VHOST)
7841M: "Michael S. Tsirkin" <mst@redhat.com>
7842L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00007843L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00007844L: netdev@vger.kernel.org
7845S: Maintained
7846F: drivers/vhost/
7847F: include/linux/vhost.h
7848
Linus Torvalds1da177e2005-04-16 15:20:36 -07007849VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007850M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007851S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007852F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007853
Jean Delvare32c0a522005-09-22 21:47:58 +02007854VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007855M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01007856L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02007857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007858F: Documentation/i2c/busses/i2c-viapro
7859F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02007860
Harald Weltef0bf7f62009-06-17 20:22:39 +02007861VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08007862M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07007863M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02007864S: Maintained
7865F: drivers/mmc/host/via-sdmmc.c
7866
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007867VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007868M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007869L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007870S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007871F: include/linux/via-core.h
7872F: include/linux/via-gpio.h
7873F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07007874F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007875
Francois Romieu01f20732007-01-26 00:57:17 -08007876VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007877M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08007878L: netdev@vger.kernel.org
7879S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007880F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007881
Patrick McHardybe7f8272007-10-23 20:26:36 -07007882VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07007883M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07007884L: netdev@vger.kernel.org
7885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007886F: drivers/net/macvlan.c
7887F: include/linux/if_*vlan.h
7888F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07007889
Florian Fainelli55e331c2009-06-16 15:33:53 -07007890VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07007891M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08007892L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07007893S: Maintained
7894F: drivers/vlynq/vlynq.c
7895F: include/linux/vlynq.h
7896
Martyn Welch390beae2012-05-03 17:52:36 +01007897VME SUBSYSTEM
7898M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02007899M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01007900M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7901L: devel@driverdev.osuosl.org
7902S: Maintained
7903T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7904F: Documentation/vme_api.txt
7905F: drivers/staging/vme/
7906F: drivers/vme/
7907F: include/linux/vme*
7908
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007909VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08007910M: Shreyas Bhatewara <sbhatewara@vmware.com>
7911M: "VMware, Inc." <pv-drivers@vmware.com>
7912L: netdev@vger.kernel.org
7913S: Maintained
7914F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007915
Alok Kataria851b1642009-10-13 14:51:05 -07007916VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08007917M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07007918M: VMware PV-Drivers <pv-drivers@vmware.com>
7919L: linux-scsi@vger.kernel.org
7920S: Maintained
7921F: drivers/scsi/vmw_pvscsi.c
7922F: drivers/scsi/vmw_pvscsi.h
7923
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007924VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01007925M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007926M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007927W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00007928W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07007929T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007930S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007931F: drivers/regulator/
7932F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007933
Juerg Haefligerab413192006-09-24 20:54:04 +02007934VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007935M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02007936L: lm-sensors@lm-sensors.org
7937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007938F: Documentation/hwmon/vt1211
7939F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02007940
Roger Lucas1de9e372005-11-26 20:20:05 +01007941VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007942M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01007943L: lm-sensors@lm-sensors.org
7944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007945F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01007946
Tony Olech88095e72011-05-14 16:48:13 -04007947VUB300 USB to SDIO/SD/MMC bridge chip
7948M: Tony Olech <tony.olech@elandigitalsystems.com>
7949L: linux-mmc@vger.kernel.org
7950L: linux-usb@vger.kernel.org
7951S: Supported
7952F: drivers/mmc/host/vub300.c
7953
Linus Torvalds1da177e2005-04-16 15:20:36 -07007954W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07007955M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007957F: Documentation/w1/
7958F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007959
Charles Spirakis13927072006-07-05 18:05:15 +02007960W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007961M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02007962L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04007963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007964F: Documentation/hwmon/w83791d
7965F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02007966
Rudolf Marek61db0112006-12-12 18:18:30 +01007967W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007968M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01007969L: lm-sensors@lm-sensors.org
7970S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007971F: Documentation/hwmon/w83793
7972F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01007973
Jean Delvaree3760b42010-10-28 20:31:49 +02007974W83795 HARDWARE MONITORING DRIVER
7975M: Jean Delvare <khali@linux-fr.org>
7976L: lm-sensors@lm-sensors.org
7977S: Maintained
7978F: drivers/hwmon/w83795.c
7979
Linus Torvalds1da177e2005-04-16 15:20:36 -07007980W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007981M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007983F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007984
Wim Van Sebroeck35277612006-01-15 21:21:14 +01007985WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007986M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00007987L: linux-watchdog@vger.kernel.org
7988W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01007989T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01007990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007991F: Documentation/watchdog/
7992F: drivers/watchdog/
7993F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01007994
Linus Torvalds1da177e2005-04-16 15:20:36 -07007995WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007996M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007997L: linux-scsi@vger.kernel.org
7998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007999F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008000
David Herrmannb22e00f2011-09-06 13:50:40 +02008001WIIMOTE HID DRIVER
8002M: David Herrmann <dh.herrmann@googlemail.com>
8003L: linux-input@vger.kernel.org
8004S: Maintained
8005F: drivers/hid/hid-wiimote*
8006
David Härdemane258b802009-09-21 17:04:53 -07008007WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008008M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008009S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008010F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008011
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008012WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008013M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008014M: linux-wimax@intel.com
8015L: wimax@linuxwimax.org
8016S: Supported
8017W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008018F: Documentation/wimax/README.wimax
8019F: include/linux/wimax.h
8020F: include/linux/wimax/debug.h
8021F: include/net/wimax.h
8022F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008023
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008024WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008025M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008027F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008028
Linus Torvalds1da177e2005-04-16 15:20:36 -07008029WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008030M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008031L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008032W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008034F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008035
Mark Brownfebf1df2008-04-02 00:51:09 -04008036WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008037M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8038M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008039L: linux-input@vger.kernel.org
8040T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8041W: http://opensource.wolfsonmicro.com/node/7
8042S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008043F: drivers/input/touchscreen/*wm97*
8044F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008045
Mark Brown055bcbc2010-08-13 14:18:12 +01008046WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008047M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008048L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008049T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008050T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008051W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008052S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008053F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008054F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008055F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008056F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008057F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008058F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008059F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008060F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008061F: drivers/input/misc/wm831x-on.c
8062F: drivers/input/touchscreen/wm831x-ts.c
8063F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008064F: drivers/mfd/arizona*
8065F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008066F: drivers/power/wm83*.c
8067F: drivers/rtc/rtc-wm83*.c
8068F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008069F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008070F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008071F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008072F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008073F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008074F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008075F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008076F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008077F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008078F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008079
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008080WORKQUEUE
8081M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008082T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8083S: Maintained
8084F: include/linux/workqueue.h
8085F: kernel/workqueue.c
8086F: Documentation/workqueue.txt
8087
Linus Torvalds1da177e2005-04-16 15:20:36 -07008088X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008089M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008090L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008091S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008092F: Documentation/networking/x25*
8093F: include/net/x25*
8094F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008095
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008096X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008097M: Thomas Gleixner <tglx@linutronix.de>
8098M: Ingo Molnar <mingo@redhat.com>
8099M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008100M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008101T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008103F: Documentation/x86/
8104F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008105
Matthew Garrettd0944852010-02-11 10:40:13 -05008106X86 PLATFORM DRIVERS
8107M: Matthew Garrett <mjg@redhat.com>
8108L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008109T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008110S: Maintained
8111F: drivers/platform/x86
8112
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008113X86 MCE INFRASTRUCTURE
8114M: Tony Luck <tony.luck@intel.com>
8115M: Borislav Petkov <bp@amd64.org>
8116L: linux-edac@vger.kernel.org
8117S: Maintained
8118F: arch/x86/kernel/cpu/mcheck/*
8119
Ian Campbellc4468082011-04-27 15:26:46 -07008120XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008121M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008122M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008123L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8124L: virtualization@lists.linux-foundation.org
8125S: Supported
8126F: arch/x86/xen/
8127F: drivers/*/xen-*front.c
8128F: drivers/xen/
8129F: arch/x86/include/asm/xen/
8130F: include/xen/
8131
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008132XEN HYPERVISOR ARM
8133M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8134L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8135S: Supported
8136F: arch/arm/xen/
8137F: arch/arm/include/asm/xen/
8138
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008139XEN NETWORK BACKEND DRIVER
8140M: Ian Campbell <ian.campbell@citrix.com>
8141L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8142L: netdev@vger.kernel.org
8143S: Supported
8144F: drivers/net/xen-netback/*
8145
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008146XEN PCI SUBSYSTEM
8147M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008148L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008149S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008150F: arch/x86/pci/*xen*
8151F: drivers/pci/*xen*
8152
8153XEN SWIOTLB SUBSYSTEM
8154M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008155L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008156S: Supported
8157F: arch/x86/xen/*swiotlb*
8158F: drivers/xen/*swiotlb*
8159
Linus Torvalds1da177e2005-04-16 15:20:36 -07008160XFS FILESYSTEM
8161P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008162M: Ben Myers <bpm@sgi.com>
8163M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008164M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008165L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008166W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008167T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008168S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008169F: Documentation/filesystems/xfs.txt
8170F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008171
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008172XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008173M: Anirudha Sarangi <anirudh@xilinx.com>
8174M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008175S: Maintained
8176F: drivers/net/ethernet/xilinx/xilinx_axienet*
8177
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008178XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008179M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008180W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008182F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008183
Peter Korsgaard238b8722006-12-06 20:35:17 -08008184XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008185M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008186L: linux-serial@vger.kernel.org
8187S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008188F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008189
Linus Torvalds1da177e2005-04-16 15:20:36 -07008190YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008191M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008192L: linux-hams@vger.kernel.org
8193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008194F: drivers/net/hamradio/yam*
8195F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008196
Henkaf64a5e2005-10-12 15:02:56 +02008197YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008198M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008199L: usbb2k-api-dev@nongnu.org
8200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008201F: Documentation/input/yealink.txt
8202F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008203
Linus Torvalds1da177e2005-04-16 15:20:36 -07008204Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008205M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008206W: http://yaina.de/jreuter/
8207W: http://www.qsl.net/dl1bke/
8208L: linux-hams@vger.kernel.org
8209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008210F: Documentation/networking/z8530drv.txt
8211F: drivers/net/hamradio/*scc.c
8212F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008213
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008214ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008215M: Daniel Drake <dsd@gentoo.org>
8216M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008217W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008218L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008219L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008221F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008222
Linus Torvalds1da177e2005-04-16 15:20:36 -07008223ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008224L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008225L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008226W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008227T: Mercurial http://linuxtv.org/hg/v4l-dvb
8228S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008229F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008230
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008231ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008232M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008233S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008234F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008235
Linus Torvalds1da177e2005-04-16 15:20:36 -07008236THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008237M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008238L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008239Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008240T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008241S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008242F: *
8243F: */