blob: 4808256446f298437ea00cd5a229376806d868b9 [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 Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700162M: Greg Kroah-Hartman <gregkh@suse.de>
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
Greg Kroah-Hartman3da39bc2010-11-09 09:15:40 -0800166T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty-2.6.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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187A2232 SERIAL BOARD DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188L: linux-m68k@lists.linux-m68k.org
Joe Perchesc8974012011-04-14 15:22:05 -0700189S: Orphan
190F: drivers/staging/generic_serial/ser_a2232*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700192AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700193M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700194L: linux-scsi@vger.kernel.org
195W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700197F: Documentation/scsi/aacraid.txt
198F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700200ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100201M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200202L: lm-sensors@lm-sensors.org
203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700204F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200205
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700206ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700207M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700208L: lm-sensors@lm-sensors.org
209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700210F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700213M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214L: linux-acenic@sunsite.dk
215S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700216F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Peter Feuerere86435e2009-06-21 18:53:03 +0200218ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700219M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500220L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700221W: http://piie.net/?section=acerhdf
222S: Maintained
223F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200224
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000225ACER WMI LAPTOP EXTRAS
Carlos Corbachod9269a72011-05-02 09:57:18 +0100226M: Joey Lee <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500227L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700229F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700232M: Len Brown <lenb@kernel.org>
Len Brown6968e502005-12-30 00:32:49 -0500233L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400234W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800235Q: http://patchwork.kernel.org/project/linux-acpi/list/
Joe Perches54e58812009-04-07 21:08:10 -0700236T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500237S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700238F: drivers/acpi/
239F: drivers/pnp/pnpacpi/
240F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700241F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500242
Len Brown8b59a452007-01-08 19:03:28 -0500243ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700244M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500245L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300246W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500247S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700248F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Shaohua Li8e0af512009-07-27 18:11:02 -0400250ACPI PROCESSOR AGGREGATOR DRIVER
Linus Torvalds5e5027b2009-10-04 15:03:00 -0700251M: Shaohua Li <shaohua.li@intel.com>
Shaohua Li8e0af512009-07-27 18:11:02 -0400252L: linux-acpi@vger.kernel.org
253W: http://www.lesswatts.org/projects/acpi/
254S: Supported
255F: drivers/acpi/acpi_pad.c
256
Len Brown8b59a452007-01-08 19:03:28 -0500257ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700258M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500259L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300260W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500261S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700262F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700263
Len Brown359acec2007-02-10 01:59:24 -0500264ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700265M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500266L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300267W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500268S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700269F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500270
Carlos Corbachobff431e2008-02-05 02:17:04 +0000271ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500272L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100273S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700274F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000275
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100276AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700277M: Kyle McMartin <kyle@mcmartin.ca>
278M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200279W: http://wiki.parisc-linux.org/AD1889
280L: linux-parisc@vger.kernel.org
281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700282F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100283
Michael Hennerich527a1a82010-10-28 11:31:28 +0000284AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
285M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100286L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700287W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000288S: Supported
289F: drivers/misc/ad525x_dpot.c
290
291AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
292M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100293L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700294W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000295S: Supported
296F: drivers/regulator/ad5398.c
297
298AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
299M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100300L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700301W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000302S: Supported
303F: drivers/input/misc/ad714x.c
304
305AD7877 TOUCHSCREEN DRIVER
306M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100307L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700308W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000309S: Supported
310F: drivers/input/touchscreen/ad7877.c
311
312AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
313M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100314L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700315W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000316S: Supported
317F: drivers/input/touchscreen/ad7879.c
318
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700319ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
320M: Jiri Kosina <jkosina@suse.cz>
321S: Maintained
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700324M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200325L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700327F: Documentation/hwmon/adm1025
328F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700331M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100332L: lm-sensors@lm-sensors.org
333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700334F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100335
Michael Wucc0b88c2007-08-31 01:15:25 -0400336ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400337L: linux-wireless@vger.kernel.org
338W: http://linuxwireless.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400339S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700340F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400341
Michael Hennerich527a1a82010-10-28 11:31:28 +0000342ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
343M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100344L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700345W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000346S: Supported
347F: drivers/mfd/adp5520.c
348F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700349F: drivers/leds/leds-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000350F: drivers/gpio/adp5520-gpio.c
351F: drivers/input/keyboard/adp5520-keys.c
352
353ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
354M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100355L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700356W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000357S: Supported
358F: drivers/input/keyboard/adp5588-keys.c
359F: drivers/gpio/adp5588-gpio.c
360
361ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
362M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100363L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700364W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000365S: Supported
366F: drivers/video/backlight/adp8860_bl.c
367
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100368ADS1015 HARDWARE MONITOR DRIVER
369M: Dirk Eibach <eibach@gdsys.de>
370L: lm-sensors@lm-sensors.org
371S: Maintained
372F: Documentation/hwmon/ads1015
373F: drivers/hwmon/ads1015.c
374F: include/linux/i2c/ads1015.h
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700377M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700379F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Jean Delvareb058b852009-12-09 20:36:08 +0100381ADT7475 HARDWARE MONITOR DRIVER
382M: Jean Delvare <khali@linux-fr.org>
383L: lm-sensors@lm-sensors.org
384S: Maintained
385F: Documentation/hwmon/adt7475
386F: drivers/hwmon/adt7475.c
387
Michael Hennerich527a1a82010-10-28 11:31:28 +0000388ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
389M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100390L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700391W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000392S: Supported
393F: drivers/input/misc/adxl34x.c
394
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400395ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700396M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400397L: linux-scsi@vger.kernel.org
398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700399F: Documentation/scsi/advansys.txt
400F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700403M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700405F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200408L: linux-fsdevel@vger.kernel.org
409S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700410F: Documentation/filesystems/affs.txt
411F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700413AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700414M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700415L: linux-afs@lists.infradead.org
416S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700417F: fs/afs/
418F: include/net/af_rxrpc.h
419F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700422M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700423T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700425F: drivers/char/agp/
426F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700429M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430L: linux-scsi@vger.kernel.org
431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700432F: drivers/scsi/aha152x*
433F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Hannes Reinecke64624d42007-10-19 10:32:29 +0200435AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700436M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200437L: linux-scsi@vger.kernel.org
438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700439F: drivers/scsi/aic7xxx/
440F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200441
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700442AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700443M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700444L: linux-aio@kvack.org
445S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700446F: fs/aio.c
447F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700450M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700451L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452W: http://www.linux-usb.org/SpeedTouch/
453S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700454F: drivers/usb/atm/speedtch.c
455F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Pierre Ossman272f1332007-05-14 21:25:26 +0200457ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700458M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700460F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200461
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000462ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700463M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100464L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700466F: Documentation/i2c/busses/i2c-ali1563
467F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700470M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700471M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500472M: Matt Turner <mattst88@gmail.com>
Cheng Renquana9406692009-03-31 15:23:35 -0700473L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700474F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Tobias Klauseradf92512011-02-09 10:58:29 +0100476ALTERA UART/JTAG UART SERIAL DRIVERS
477M: Tobias Klauser <tklauser@distanz.ch>
478L: linux-serial@vger.kernel.org
479L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
480S: Maintained
481F: drivers/tty/serial/altera_uart.c
482F: drivers/tty/serial/altera_jtaguart.c
483F: include/linux/altera_uart.h
484F: include/linux/altera_jtaguart.h
485
Andreas Herrmann512d1022011-05-25 20:43:31 +0200486AMD FAM15H PROCESSOR POWER MONITORING DRIVER
487M: Andreas Herrmann <andreas.herrmann3@amd.com>
488L: lm-sensors@lm-sensors.org
489S: Maintained
490F: Documentation/hwmon/fam15h_power
491F: drivers/hwmon/fam15h_power.c
492
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700493AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700494M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700495L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700496S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700497F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700498
Jordan Crousef90b8112006-01-06 00:12:14 -0800499AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800500P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700501L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800502W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
503S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700504F: drivers/char/hw_random/geode-rng.c
505F: drivers/crypto/geode*
506F: drivers/video/geode/
507F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800508
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200509AMD IOMMU (AMD-VI)
Joe Perches8b58be82009-07-29 15:04:30 -0700510M: Joerg Roedel <joerg.roedel@amd.com>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200511L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -0700512T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200513S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700514F: arch/x86/kernel/amd_iommu*.c
515F: arch/x86/include/asm/amd_iommu*.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200516
Peter Orubae7f5b302008-07-28 18:44:11 +0200517AMD MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700518M: Andreas Herrmann <andreas.herrmann3@amd.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700519L: amd64-microcode@amd64.org
520S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700521F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200522
Stelian Pop284f42b2006-12-12 18:18:31 +0100523AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700524M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100525S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200526F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100527
Tom Tuckerf94b5332006-09-22 15:22:48 -0700528AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700529M: Tom Tucker <tom@opengridcomputing.com>
530M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700531L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700533F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700534
Michael Hennerich527a1a82010-10-28 11:31:28 +0000535ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200536M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100537L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000538L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700539W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000540S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100541F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200542F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000543F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000544F: sound/soc/codecs/ssm*
545
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400546ANALOG DEVICES INC ASOC DRIVERS
547L: uclinux-dist-devel@blackfin.uclinux.org
548L: alsa-devel@alsa-project.org (moderated for non-subscribers)
549W: http://blackfin.uclinux.org/
550S: Supported
551F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400552
Johannes Berg42269062006-07-25 16:15:50 +0200553AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700554M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000555L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700556L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700558F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200561M: Jiri Kosina <jkosina@suse.cz>
562S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700563F: arch/x86/kernel/apm_32.c
564F: include/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200565F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700567APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700568M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700569L: linux-input@vger.kernel.org
570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700571F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700572
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700573APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200574M: Henrik Rydberg <rydberg@euromail.se>
575L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700576S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700577F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700580M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700582F: drivers/net/appletalk/
583F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Viresh Kumara4801672011-02-22 15:46:07 +0530585ARASAN COMPACT FLASH PATA CONTROLLER
586M: Viresh Kumar <viresh.kumar@st.com>
587L: linux-ide@vger.kernel.org
588S: Maintained
589F: include/linux/pata_arasan_cf_data.h
590F: drivers/ata/pata_arasan_cf.c
591
Jaya Kumar1154ea72005-06-21 17:17:04 -0700592ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700593M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700595F: drivers/video/arcfb.c
596F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700599M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700601F: arch/arm/lib/floppydma.S
602F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Will Deacon6f965212011-07-01 14:38:53 +0100604ARM PMU PROFILING AND DEBUGGING
605M: Will Deacon <will.deacon@arm.com>
606S: Maintained
607F: arch/arm/kernel/perf_event*
608F: arch/arm/oprofile/common.c
609F: arch/arm/kernel/pmu.c
610F: arch/arm/include/asm/pmu.h
611F: arch/arm/kernel/hw_breakpoint.c
612F: arch/arm/include/asm/hw_breakpoint.h
613
Russell Kingd4275352009-04-16 14:05:27 +0100614ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700615M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700616L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100617W: http://www.arm.linux.org.uk/
618S: Maintained
619F: arch/arm/
620
Russell Kingcefbf4e2009-11-22 17:40:28 +0000621ARM PRIMECELL AACI PL041 DRIVER
622M: Russell King <linux@arm.linux.org.uk>
623S: Maintained
624F: sound/arm/aaci.*
625
626ARM PRIMECELL CLCD PL110 DRIVER
627M: Russell King <linux@arm.linux.org.uk>
628S: Maintained
629F: drivers/video/amba-clcd.*
630
631ARM PRIMECELL KMI PL050 DRIVER
632M: Russell King <linux@arm.linux.org.uk>
633S: Maintained
634F: drivers/input/serio/ambakmi.*
635F: include/linux/amba/kmi.h
636
Russell King2761f5c2007-05-24 06:56:08 +0200637ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200638S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700639F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200640
Russell Kingcefbf4e2009-11-22 17:40:28 +0000641ARM PRIMECELL BUS SUPPORT
642M: Russell King <linux@arm.linux.org.uk>
643S: Maintained
644F: drivers/amba/
645F: include/linux/amba/bus.h
646
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800647ARM/ADI ROADRUNNER MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700648M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700649L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700651F: arch/arm/mach-ixp23xx/
652F: arch/arm/mach-ixp23xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800653
654ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700655M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700656L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800657S: Maintained
658
Sergey Lapin9c784f92008-08-03 02:29:48 +0100659ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700660M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700661L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100662S: Maintained
663
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800664ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700665M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700666L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800667S: Maintained
668
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800669ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700670M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800671M: Nicolas Ferre <nicolas.ferre@atmel.com>
672M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700673L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200674W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800675W: http://www.linux4sam.org
676S: Supported
677F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100678
Leo Chen57a473f2009-08-12 22:08:48 +0100679ARM/BCMRING ARM ARCHITECTURE
Jiandong Zhengd6db4662010-12-14 21:55:49 +0000680M: Jiandong Zheng <jdzheng@broadcom.com>
Russell Kingddd559b2009-09-12 12:02:26 +0100681M: Scott Branden <sbranden@broadcom.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700682L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800683S: Maintained
Leo Chen57a473f2009-08-12 22:08:48 +0100684F: arch/arm/mach-bcmring
685
686ARM/BCMRING MTD NAND DRIVER
Jiandong Zhengd6db4662010-12-14 21:55:49 +0000687M: Jiandong Zheng <jdzheng@broadcom.com>
Russell Kingddd559b2009-09-12 12:02:26 +0100688M: Scott Branden <sbranden@broadcom.com>
Leo Chen57a473f2009-08-12 22:08:48 +0100689L: linux-mtd@lists.infradead.org
690S: Maintained
691F: drivers/mtd/nand/bcm_umi_nand.c
692F: drivers/mtd/nand/bcm_umi_bch.c
Leo Chen57a473f2009-08-12 22:08:48 +0100693F: drivers/mtd/nand/nand_bcm_umi.h
694
Rob Herring986cf2e2011-06-22 11:28:53 -0500695ARM/CALXEDA HIGHBANK ARCHITECTURE
696M: Rob Herring <rob.herring@calxeda.com>
697L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
698S: Maintained
699F: arch/arm/mach-highbank/
700
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300701ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
702M: Anton Vorontsov <avorontsov@mvista.com>
703S: Maintained
704F: arch/arm/mach-cns3xxx/
705T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
706
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800707ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100708M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000709M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700710L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800711S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100712F: arch/arm/mach-ep93xx/
713F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800714
715ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700716M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700717L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800718S: Maintained
719
Russell Kingd4275352009-04-16 14:05:27 +0100720ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700721M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700722L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100723F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700724F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100725
Mike Rapoportd48134e2008-08-20 09:03:26 +0100726ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700727M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700728L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100729S: Maintained
730
Hubert Feurstein94150092009-10-07 08:36:07 +0100731ARM/CONTEC MICRO9 MACHINE SUPPORT
732M: Hubert Feurstein <hubert.feurstein@contec.at>
733S: Maintained
734F: arch/arm/mach-ep93xx/micro9.c
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700737M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738S: Maintained
739
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200740ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100741M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700742L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100743T: git git://git.berlios.de/gemini-board
744S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300745F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200746
Barry Songa990cbd2011-07-12 21:44:10 +0800747ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
748M: Barry Song <baohua.song@csr.com>
749L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
750S: Maintained
751F: arch/arm/mach-prima2/
752
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
Uwe Kleine-Königb16533d2009-11-30 16:53:24 +0100791F: arch/arm/mach-mx*/
792F: arch/arm/plat-mxc/
Sascha Hauer86183a52008-07-24 23:50:35 +0200793
Amit Kucheria3d48e1d2010-02-04 15:57:29 -0800794ARM/FREESCALE IMX51
795M: Amit Kucheria <amit.kucheria@canonical.com>
796L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
797S: Maintained
798F: arch/arm/mach-mx5/
799
Shawn Guo8bcb9762011-10-07 22:24:18 +0800800ARM/FREESCALE IMX6
801M: Shawn Guo <shawn.guo@linaro.org>
802L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
803S: Maintained
804T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
805F: arch/arm/mach-imx/*imx6*
806
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800807ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700808M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700809L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800810S: Maintained
811
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100812ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700813M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700814L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100815S: Maintained
816
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200817ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700818M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200819S: Maintained
820F: arch/arm/mach-pxa/hx4700.c
821F: arch/arm/mach-pxa/include/mach/hx4700.h
822
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100823ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700824M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200825W: www.jlime.com
826S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700827T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
828F: arch/arm/mach-sa1100/jornada720.c
829F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100830
Marek Vasut403d2972010-05-22 00:29:39 +0200831ARM/INCOME PXA270 SUPPORT
832M: Marek Vasut <marek.vasut@gmail.com>
833L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
834S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700835F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200836
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800837ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700838M: Lennert Buytenhek <kernel@wantstofly.org>
839M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700840L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700841S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100842
843ARM/INTEL IOP33X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700844M: Dan Williams <dan.j.williams@intel.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
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800847
848ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700849M: Lennert Buytenhek <kernel@wantstofly.org>
850M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700851L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700852S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800853
854ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700855M: Lennert Buytenhek <kernel@wantstofly.org>
856M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700857L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700858S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800859
860ARM/INTEL IXP2000 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700861M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700862L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800863S: Maintained
864
865ARM/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
870ARM/INTEL IXP23XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700871M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700872L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800873S: Maintained
874
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200875ARM/INTEL IXP4XX ARM ARCHITECTURE
876M: Imre Kaloz <kaloz@openwrt.org>
877M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100878L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200879S: Maintained
880F: arch/arm/mach-ixp4xx/
881
Joe Perches838553c2010-10-26 14:22:59 -0700882ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100883M: Jonathan Cameron <jic23@cam.ac.uk>
884L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
885S: Maintained
886F: arch/arm/mach-pxa/stargate2.c
887F: drivers/pcmcia/pxa2xx_stargate2.c
888
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800889ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700890M: Lennert Buytenhek <kernel@wantstofly.org>
891M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700892L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700893S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800894
895ARM/IP FABRICS DOUBLE ESPRESSO 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
900ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700901M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700902L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800903S: Maintained
904
Philipp Zabel3b8861712008-07-09 21:27:15 +0100905ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700906M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100907S: Maintained
908
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400909ARM/Marvell Loki/Kirkwood/MV78xx0/Orion SOC support
Nicolas Pitre18e28422010-05-03 16:43:47 -0400910M: Lennert Buytenhek <kernel@wantstofly.org>
911M: Nicolas Pitre <nico@fluxnic.net>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700912L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre18e28422010-05-03 16:43:47 -0400913S: Odd Fixes
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400914F: arch/arm/mach-loki/
915F: arch/arm/mach-kirkwood/
916F: arch/arm/mach-mv78xx0/
917F: arch/arm/mach-orion5x/
918F: arch/arm/plat-orion/
919
Alexander Clouterd69ac132011-04-14 15:22:02 -0700920ARM/Orion SoC/Technologic Systems TS-78xx platform support
921M: Alexander Clouter <alex@digriz.org.uk>
922L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
923W: http://www.digriz.org.uk/ts78xx/kernel
924S: Maintained
925F: arch/arm/mach-orion5x/ts78xx-*
926
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200927ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700928M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700929L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200930F: arch/arm/mach-pxa/mioa701.c
931S: Maintained
932
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100933ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700934M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100935S: Maintained
936
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100937ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700938M: Alessandro Rubini <rubini@unipv.it>
Linus Walleij87572882010-12-22 09:18:29 +0100939M: Linus Walleij <linus.walleij@stericsson.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700940M: STEricsson <STEricsson_nomadik_linux@list.st.com>
941L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
942S: Maintained
943F: arch/arm/mach-nomadik/
944F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100945F: drivers/i2c/busses/i2c-nomadik.c
946T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100947
Andy Green9d762952009-05-19 06:41:42 -0300948ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700949M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300950L: openmoko-kernel@lists.openmoko.org (subscribers-only)
951W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
952S: Supported
953
Daniel Walker0c19d212009-12-07 16:53:51 -0800954ARM/QUALCOMM MSM MACHINE SUPPORT
955M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -0800956M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -0800957M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -0800958L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -0800959F: arch/arm/mach-msm/
960F: drivers/video/msm/
961F: drivers/mmc/host/msm_sdcc.c
962F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800963F: drivers/tty/serial/msm_serial.h
964F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -0700965F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -0700966F: drivers/*/pm8???-*
967F: include/linux/mfd/pm8xxx/
Daniel Walker6c965ff2010-12-09 15:45:27 -0800968T: git git://codeaurora.org/quic/kernel/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -0800969S: Maintained
970
Dirk Opfer8459c152005-11-06 14:27:52 +0000971ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700972M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
973M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000974S: Maintained
975
Marek Vasut5d783a22009-07-16 13:26:48 +0200976ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -0700977M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +0200978L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100979W: http://hackndev.com
980S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700981F: arch/arm/mach-pxa/include/mach/palmtx.h
982F: arch/arm/mach-pxa/palmtx.c
983F: arch/arm/mach-pxa/include/mach/palmt5.h
984F: arch/arm/mach-pxa/palmt5.c
985F: arch/arm/mach-pxa/include/mach/palmld.h
986F: arch/arm/mach-pxa/palmld.c
987F: arch/arm/mach-pxa/include/mach/palmte2.h
988F: arch/arm/mach-pxa/palmte2.c
989F: arch/arm/mach-pxa/include/mach/palmtc.h
990F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100991
Joe Perchesb57fe922009-12-14 18:00:52 -0800992ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700993M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +0200994L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200995W: http://hackndev.com
996S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -0800997F: arch/arm/mach-pxa/include/mach/palmtreo.h
998F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200999
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001000ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001001M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001002L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001003W: http://hackndev.com
1004S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001005F: arch/arm/mach-pxa/include/mach/palmz72.h
1006F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001009M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1011S: Maintained
1012
1013ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001014M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001015L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016W: http://www.arm.linux.org.uk/
1017S: Maintained
1018
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001019ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001020M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001021L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001022S: Maintained
1023
Russell Kingd4275352009-04-16 14:05:27 +01001024ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001025M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001026L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001027W: http://www.arm.linux.org.uk/
1028S: Maintained
1029F: arch/arm/common/time-acorn.c
1030F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1031F: arch/arm/include/asm/hardware/ioc.h
1032F: arch/arm/include/asm/hardware/iomd.h
1033F: arch/arm/include/asm/hardware/memc.h
1034F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001035F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001036F: drivers/net/ethernet/i825xx/ether1*
1037F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001038F: drivers/scsi/arm/
1039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001041M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042W: http://www.shark-linux.de/shark.html
1043S: Maintained
1044
Ben Dooksb21477f2009-06-13 10:46:34 +01001045ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001046M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001047M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001048L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001049W: http://www.fluff.org/ben/linux/
1050S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001051F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001052F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001053F: arch/arm/plat-s5p/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001054F: drivers/*/*s3c2410*
1055F: drivers/*/*/*s3c2410*
Ben Dooksb21477f2009-06-13 10:46:34 +01001056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057ARM/S3C2410 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001058M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001059L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060W: http://www.fluff.org/ben/linux/
1061S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +01001062F: arch/arm/mach-s3c2410/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Joe Perches85743532010-10-26 14:23:00 -07001064ARM/S3C244x ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001065M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001066L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067W: http://www.fluff.org/ben/linux/
1068S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +01001069F: arch/arm/mach-s3c2440/
Ben Dooksb21477f2009-06-13 10:46:34 +01001070F: arch/arm/mach-s3c2443/
1071
Joe Perchesf9962312010-10-26 14:23:01 -07001072ARM/S3C64xx ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001073M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001074L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001075W: http://www.fluff.org/ben/linux/
1076S: Maintained
Joe Perchesf9962312010-10-26 14:23:01 -07001077F: arch/arm/mach-s3c64xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001079ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001080M: Kukjin Kim <kgene.kim@samsung.com>
1081L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1082L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1083S: Maintained
1084F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001085F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001086
Kyungmin Park10ffa962011-03-04 17:36:26 -08001087ARM/SAMSUNG MOBILE MACHINE SUPPORT
1088M: Kyungmin Park <kyungmin.park@samsung.com>
1089L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1090S: Maintained
1091F: arch/arm/mach-s5pv210/mach-aquila.c
1092F: arch/arm/mach-s5pv210/mach-goni.c
1093F: arch/arm/mach-exynos4/mach-universal_c210.c
1094F: arch/arm/mach-exynos4/mach-nuri.c
1095
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001096ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1097M: Kyungmin Park <kyungmin.park@samsung.com>
1098M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1099L: linux-arm-kernel@lists.infradead.org
1100L: linux-media@vger.kernel.org
1101S: Maintained
1102F: arch/arm/plat-s5p/dev-fimc*
1103F: arch/arm/plat-samsung/include/plat/*fimc*
1104F: drivers/media/video/s5p-fimc/
1105
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001106ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1107M: Kyungmin Park <kyungmin.park@samsung.com>
1108M: Kamil Debski <k.debski@samsung.com>
1109L: linux-arm-kernel@lists.infradead.org
1110L: linux-media@vger.kernel.org
1111S: Maintained
1112F: arch/arm/plat-s5p/dev-mfc.c
1113F: drivers/media/video/s5p-mfc/
1114
1115ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1116M: Kyungmin Park <kyungmin.park@samsung.com>
1117M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1118L: linux-arm-kernel@lists.infradead.org
1119L: linux-media@vger.kernel.org
1120S: Maintained
1121F: arch/arm/plat-s5p/dev-tv.c
1122F: drivers/media/video/s5p-tv/
1123
Paul Mundtd48d38e2010-02-08 12:50:24 +09001124ARM/SHMOBILE ARM ARCHITECTURE
1125M: Paul Mundt <lethal@linux-sh.org>
1126M: Magnus Damm <magnus.damm@gmail.com>
1127L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001128W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001129Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtd22c0e52010-11-10 18:09:14 +09001130T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest
Paul Mundtd48d38e2010-02-08 12:50:24 +09001131S: Supported
1132F: arch/arm/mach-shmobile/
1133F: drivers/sh/
1134
Thomas Gleixner448352a2010-09-17 20:27:30 +02001135ARM/TELECHIPS ARM ARCHITECTURE
Hans J. Koch6a534c92011-04-14 15:22:16 -07001136M: "Hans J. Koch" <hjk@hansjkoch.de>
Thomas Gleixner448352a2010-09-17 20:27:30 +02001137L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1138S: Maintained
1139F: arch/arm/plat-tcc/
1140F: arch/arm/mach-tcc8k/
1141
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001142ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001143M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001144L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001145S: Maintained
1146
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001147ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001148M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001149L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1150S: Maintained
1151
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001152ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001153M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001154L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001155S: Maintained
1156
wanzongshun98ad6e32009-02-13 06:04:32 +01001157ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001158M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001159L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001160W: http://www.mcuos.com
1161S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001162F: arch/arm/mach-w90x900/
1163F: arch/arm/mach-nuc93x/
1164F: drivers/input/keyboard/w90p910_keypad.c
1165F: drivers/input/touchscreen/w90p910_ts.c
1166F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001167F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001168F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001169F: drivers/rtc/rtc-nuc900.c
1170F: drivers/spi/spi_nuc900.c
1171F: drivers/usb/host/ehci-w90x900.c
1172F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001173
Linus Walleij54274d72010-04-04 10:58:03 +01001174ARM/U300 MACHINE SUPPORT
1175M: Linus Walleij <linus.walleij@stericsson.com>
1176L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1177S: Supported
1178F: arch/arm/mach-u300/
1179F: drivers/i2c/busses/i2c-stu300.c
1180F: drivers/rtc/rtc-coh901331.c
1181F: drivers/watchdog/coh901327_wdt.c
1182F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001183F: drivers/mfd/ab3100*
1184F: drivers/rtc/rtc-ab3100.c
1185F: drivers/rtc/rtc-coh901331.c
1186T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001187
Linus Walleij87572882010-12-22 09:18:29 +01001188ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001189M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleij87572882010-12-22 09:18:29 +01001190M: Linus Walleij <linus.walleij@stericsson.com>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001191L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1192S: Maintained
1193F: arch/arm/mach-ux500/
Linus Walleij87572882010-12-22 09:18:29 +01001194F: drivers/dma/ste_dma40*
1195F: drivers/mfd/ab3550*
1196F: drivers/mfd/abx500*
1197F: drivers/mfd/ab8500*
1198F: drivers/mfd/stmpe*
1199F: drivers/rtc/rtc-ab8500.c
1200T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001201
Russell Kingd4275352009-04-16 14:05:27 +01001202ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001203M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001204L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001205W: http://www.arm.linux.org.uk/
1206S: Maintained
1207F: arch/arm/vfp/
1208
Marek Vasute66b6d82010-03-26 06:51:32 +01001209ARM/VOIPAC PXA270 SUPPORT
1210M: Marek Vasut <marek.vasut@gmail.com>
1211L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1212S: Maintained
1213F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001214F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001215
1216ARM/ZIPIT Z2 SUPPORT
1217M: Marek Vasut <marek.vasut@gmail.com>
1218L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1219S: Maintained
1220F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001221F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001222
George Josephd58de032010-03-05 22:17:25 +01001223ASC7621 HARDWARE MONITOR DRIVER
1224M: George Joseph <george.joseph@fairview5.com>
1225L: lm-sensors@lm-sensors.org
1226S: Maintained
1227F: Documentation/hwmon/asc7621
1228F: drivers/hwmon/asc7621.c
1229
Corentin Charyb229ece2011-02-26 10:20:40 +01001230ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001231M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001233L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001234W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001236F: drivers/platform/x86/asus*.c
1237F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001239ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001240M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001241L: lm-sensors@lm-sensors.org
1242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001243F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001244
Andrew Morton953a6472008-11-06 12:53:28 -08001245ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Joe Perches8b58be82009-07-29 15:04:30 -07001246M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001247W: http://sourceforge.net/projects/xscaleiop
1248S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001249F: Documentation/crypto/async-tx-api.txt
1250F: crypto/async_tx/
1251F: drivers/dma/
1252F: include/linux/dmaengine.h
1253F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001254
Wolfram Sanga1867d32009-09-18 22:45:51 +02001255AT24 EEPROM DRIVER
1256M: Wolfram Sang <w.sang@pengutronix.de>
1257L: linux-i2c@vger.kernel.org
1258S: Maintained
1259F: drivers/misc/eeprom/at24.c
1260F: include/linux/i2c/at24.h
1261
Randy Dunlape7839f22008-10-12 16:11:45 -07001262ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001263M: "Ed L. Cashin" <ecashin@coraid.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264W: http://www.coraid.com/support/linux
1265S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001266F: Documentation/aoe/
1267F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Joe Perches9a10a872010-12-01 09:37:55 -08001269ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001270M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001271L: linux-wireless@vger.kernel.org
1272S: Supported
1273F: drivers/net/wireless/ath/*
1274
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001275ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001276M: Jiri Slaby <jirislaby@gmail.com>
1277M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001278M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001279M: Bob Copeland <me@bobcopeland.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001280L: linux-wireless@vger.kernel.org
1281L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001282W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001283S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001284F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001285
Kalle Valo12e62d62011-09-13 10:21:25 +03001286ATHEROS ATH6KL WIRELESS DRIVER
1287M: Kalle Valo <kvalo@qca.qualcomm.com>
1288L: linux-wireless@vger.kernel.org
1289W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1290T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1291S: Supported
1292F: drivers/net/wireless/ath/ath6kl/
1293
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001294ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001295M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1296M: Jouni Malinen <jouni@qca.qualcomm.com>
1297M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1298M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001299L: linux-wireless@vger.kernel.org
1300L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001301W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001302S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001303F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001304
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001305CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1306M: Christian Lamparter <chunkeey@googlemail.com>
1307L: linux-wireless@vger.kernel.org
1308W: http://wireless.kernel.org/en/users/Drivers/carl9170
1309S: Maintained
1310F: drivers/net/wireless/ath/carl9170/
1311
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001312ATK0110 HWMON DRIVER
1313M: Luca Tettamanti <kronos.it@gmail.com>
1314L: lm-sensors@lm-sensors.org
1315S: Maintained
1316F: drivers/hwmon/asus_atk0110.c
1317
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001318ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001319M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001321F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001322
Chris Snook7ae115b2008-09-09 03:26:57 -04001323ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001324M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001325M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001326L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001327W: http://sourceforge.net/projects/atl1
1328W: http://atl1.sourceforge.net
1329S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001330F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001333M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001334L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001335L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336W: http://linux-atm.sourceforge.net
1337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001338F: drivers/atm/
1339F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Pierre Ossman272f1332007-05-14 21:25:26 +02001341ATMEL AT91 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001342M: Nicolas Ferre <nicolas.ferre@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001343L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001344W: http://www.atmel.com/products/AT91/
1345W: http://www.at91.com/
1346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001347F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001348
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001349ATMEL AT91 / AT32 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001350M: Nicolas Ferre <nicolas.ferre@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001351S: Maintained
1352F: drivers/mmc/host/atmel-mci.c
1353F: drivers/mmc/host/atmel-mci-regs.h
1354
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001355ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001356M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001357S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001358F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001359
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001360ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001361M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001362L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001363S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001364F: drivers/video/atmel_lcdfb.c
1365F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001366
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001367ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001368M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001369S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001370F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001371
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001372ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001373M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001374S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001375F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001376
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001377ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001378M: Nicolas Ferre <nicolas.ferre@atmel.com>
1379L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001380W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1381S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001382F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001385M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001386L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387W: http://www.thekelleys.org.uk/atmel
1388W: http://atmelwlandriver.sourceforge.net/
1389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001390F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Chris Wrighta92b7b82005-07-07 18:12:23 -07001392AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001393M: Al Viro <viro@zeniv.linux.org.uk>
1394M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001395L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001396W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001397T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001399F: include/linux/audit.h
1400F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001401
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001402AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001403M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001404W: http://miguelojeda.es/auxdisplay.htm
1405W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001407F: drivers/auxdisplay/
1408F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001409
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001410AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001411M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1412M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001413W: http://www.atmel.com/products/AVR32/
1414W: http://avr32linux.org/
1415W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001417F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001418
1419AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001420M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1421M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001423F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001426M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001428W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001430F: include/linux/ax25.h
1431F: include/net/ax25.h
1432F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001434B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001435M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001436L: linux-wireless@vger.kernel.org
1437W: http://linuxwireless.org/en/users/Drivers/b43
1438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001439F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001440
1441B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001442M: Larry Finger <Larry.Finger@lwfinger.net>
1443M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001444L: linux-wireless@vger.kernel.org
1445W: http://linuxwireless.org/en/users/Drivers/b43
1446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001447F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001448
Richard Purdie300abeb2007-02-07 22:21:07 +00001449BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001450M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001452F: drivers/video/backlight/
1453F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001454
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001455BATMAN ADVANCED
1456M: Marek Lindner <lindner_marek@yahoo.de>
1457M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001458L: b.a.t.m.a.n@lists.open-mesh.org
1459W: http://www.open-mesh.org/
1460S: Maintained
1461F: net/batman-adv/
1462
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001463BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001464M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001465L: linux-hams@vger.kernel.org
1466W: http://www.baycom.org/~tom/ham/ham.html
1467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001468F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001469
1470BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001471S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001472F: Documentation/filesystems/befs.txt
1473F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001474
1475BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001476M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001478F: Documentation/filesystems/bfs.txt
1479F: fs/bfs/
1480F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001481
Bryan Wu1394f032007-05-06 14:50:22 -07001482BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001483M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001484L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001485W: http://blackfin.uclinux.org
1486S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001487F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001488
Bryan Wue190d6b2007-07-17 14:43:44 +08001489BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001490L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001491W: http://blackfin.uclinux.org
1492S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001493F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001494
Mike Frysinger566da5b2007-06-11 15:31:30 +08001495BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001496M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001497L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001498W: http://blackfin.uclinux.org
1499S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001500F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001501
Mike Frysinger936ed492010-03-10 15:20:38 -08001502BLACKFIN SDH DRIVER
1503M: Cliff Cai <cliff.cai@analog.com>
1504L: uclinux-dist-devel@blackfin.uclinux.org
1505W: http://blackfin.uclinux.org
1506S: Supported
1507F: drivers/mmc/host/bfin_sdh.c
1508
Bryan Wu1394f032007-05-06 14:50:22 -07001509BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001510M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001511L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001512W: http://blackfin.uclinux.org
1513S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001514F: drivers/tty/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001515
Bryan Wu1e6d3202007-07-15 02:50:02 +08001516BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001517M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001518L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001519W: http://blackfin.uclinux.org
1520S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001521F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001522
Bryan Wud24ecfc2007-05-01 23:26:32 +02001523BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001524M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001525L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001526W: http://blackfin.uclinux.org/
1527S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001528F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001531M: Jens Axboe <axboe@kernel.dk>
Joe Perches54e58812009-04-07 21:08:10 -07001532T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001534F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Joern Engel2b54aae2008-02-06 01:38:02 -08001536BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001537M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001538L: linux-mtd@lists.infradead.org
1539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001540F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001541
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001542BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001543M: Marcel Holtmann <marcel@holtmann.org>
Joe Perches706e69d2011-03-22 16:34:26 -07001544M: "Gustavo F. Padovan" <padovan@profusion.mobi>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001545L: linux-bluetooth@vger.kernel.org
1546W: http://www.bluez.org/
Gustavo F. Padovanb3c05982010-10-08 09:13:28 -03001547T: git git://git.kernel.org/pub/scm/linux/kernel/git/padovan/bluetooth-2.6.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001549F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001550
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001552M: Marcel Holtmann <marcel@holtmann.org>
Joe Perches706e69d2011-03-22 16:34:26 -07001553M: "Gustavo F. Padovan" <padovan@profusion.mobi>
Pavel Machek781c2842008-03-20 15:41:02 -07001554L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001555W: http://www.bluez.org/
Gustavo F. Padovanb3c05982010-10-08 09:13:28 -03001556T: git git://git.kernel.org/pub/scm/linux/kernel/git/padovan/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001558F: net/bluetooth/
1559F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001562M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001563M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001564L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001565W: http://sourceforge.net/projects/bonding/
1566S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001567F: drivers/net/bonding/
1568F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Gary Zambrano39105892006-06-22 17:26:20 -07001570BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001571M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001572L: netdev@vger.kernel.org
1573S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001574F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001575
Michael Chan948c51e2006-06-04 02:51:39 -07001576BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001577M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001578L: netdev@vger.kernel.org
1579S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001580F: drivers/net/ethernet/broadcom/bnx2.*
1581F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001582
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001583BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001584M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001585L: netdev@vger.kernel.org
1586S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001587F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001588
Michael Chan948c51e2006-06-04 02:51:39 -07001589BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001590M: Matt Carlson <mcarlson@broadcom.com>
1591M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001592L: netdev@vger.kernel.org
1593S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001594F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001595
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001596BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1597M: Brett Rudley <brudley@broadcom.com>
1598M: Henry Ptasinski <henryp@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001599M: Roland Vossen <rvossen@broadcom.com>
1600M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001601M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
1602M: Kan Yan <kanyan@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001603L: linux-wireless@vger.kernel.org
1604S: Supported
1605F: drivers/staging/brcm80211/
1606
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001607BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1608M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1609L: linux-scsi@vger.kernel.org
1610S: Supported
1611F: drivers/scsi/bnx2fc/
1612
Jing Huang7725ccf2009-09-23 17:46:15 -07001613BROCADE BFA FC SCSI DRIVER
Joe Perches455518e2009-11-11 14:26:10 -08001614M: Jing Huang <huangj@brocade.com>
1615L: linux-scsi@vger.kernel.org
1616S: Supported
1617F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001618
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001619BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1620M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001621L: netdev@vger.kernel.org
1622S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001623F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001624
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001625BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001626M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001627L: linux-scsi@vger.kernel.org
1628S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001629F: block/bsg.c
1630F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001631
Clemens Ladischaf399172011-01-10 16:32:54 +01001632BT87X AUDIO DRIVER
1633M: Clemens Ladisch <clemens@ladisch.de>
1634L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1635T: git git://git.alsa-project.org/alsa-kernel.git
1636S: Maintained
1637F: Documentation/sound/alsa/Bt87x.txt
1638F: sound/pci/bt87x.c
1639
Michael Bueschff1d5c22008-07-25 01:46:10 -07001640BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001641M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001642W: http://bu3sch.de/btgpio.php
1643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001644F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001645
Joe Percheseb1eb042009-01-21 10:49:16 -05001646BTRFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001647M: Chris Mason <chris.mason@oracle.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001648L: linux-btrfs@vger.kernel.org
1649W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001650Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Joe Perches54e58812009-04-07 21:08:10 -07001651T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001653F: Documentation/filesystems/btrfs.txt
1654F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001657M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001658L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001659W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001660T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001662F: Documentation/video4linux/bttv/
1663F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Clemens Ladischaf399172011-01-10 16:32:54 +01001665C-MEDIA CMI8788 DRIVER
1666M: Clemens Ladisch <clemens@ladisch.de>
1667L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1668T: git git://git.alsa-project.org/alsa-kernel.git
1669S: Maintained
1670F: sound/pci/oxygen/
1671
David Howellsa5432f52009-04-20 15:46:45 +01001672CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001673M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001674L: linux-cachefs@redhat.com
1675S: Supported
1676F: Documentation/filesystems/caching/cachefiles.txt
1677F: fs/cachefiles/
1678
Jonathan Corbet77d51402007-03-22 19:44:17 -03001679CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001680M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001681L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001682T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001684F: Documentation/video4linux/cafe_ccic
1685F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001686
Joe Perches201b6ba2010-09-07 20:33:24 +00001687CAIF NETWORK LAYER
1688M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1689L: netdev@vger.kernel.org
1690S: Supported
1691F: Documentation/networking/caif/
1692F: drivers/net/caif/
1693F: include/linux/caif/
1694F: include/net/caif/
1695F: net/caif/
1696
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001697CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001698M: Muli Ben-Yehuda <muli@il.ibm.com>
1699M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001700L: discuss@x86-64.org
1701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001702F: arch/x86/kernel/pci-calgary_64.c
1703F: arch/x86/kernel/tce_64.c
1704F: arch/x86/include/asm/calgary.h
1705F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001706
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001707CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001708M: Oliver Hartkopp <socketcan@hartkopp.net>
Joe Perches8b58be82009-07-29 15:04:30 -07001709M: Oliver Hartkopp <oliver.hartkopp@volkswagen.de>
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001710M: Urs Thuermann <urs.thuermann@volkswagen.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001711L: linux-can@vger.kernel.org
Wolfgang Grandegger42d38042010-03-08 12:51:41 -08001712L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001713W: http://developer.berlios.de/projects/socketcan/
1714S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001715F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001716F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001717F: include/linux/can/core.h
1718F: include/linux/can/bcm.h
1719F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001720F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001721
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001722CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001723M: Wolfgang Grandegger <wg@grandegger.com>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001724L: linux-can@vger.kernel.org
Wolfgang Grandegger42d38042010-03-08 12:51:41 -08001725L: netdev@vger.kernel.org
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001726W: http://developer.berlios.de/projects/socketcan/
1727S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001728F: drivers/net/can/
1729F: include/linux/can/dev.h
1730F: include/linux/can/error.h
1731F: include/linux/can/netlink.h
1732F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001733
Arnd Bergmannb8154542008-05-16 11:10:59 +02001734CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001735M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001736L: linuxppc-dev@lists.ozlabs.org
1737L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001738W: http://www.ibm.com/developerworks/power/cell/
1739S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001740F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001741F: arch/powerpc/include/asm/spu*.h
1742F: arch/powerpc/oprofile/*cell*
1743F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001744
Sage Weil9030aaf2009-10-06 11:31:15 -07001745CEPH DISTRIBUTED FILE SYSTEM CLIENT
1746M: Sage Weil <sage@newdream.net>
Sage Weil82593f82010-03-29 09:53:23 -07001747L: ceph-devel@vger.kernel.org
Sage Weil9030aaf2009-10-06 11:31:15 -07001748W: http://ceph.newdream.net/
Sage Weilfb99f882009-12-03 15:04:08 -08001749T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001750S: Supported
1751F: Documentation/filesystems/ceph.txt
1752F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001753F: net/ceph
1754F: include/linux/ceph
Sage Weil9030aaf2009-10-06 11:31:15 -07001755
David Vrabel18332a82008-09-17 16:34:44 +01001756CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001757L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001758S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001759F: Documentation/usb/WUSB-Design-overview.txt
1760F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001761F: drivers/usb/host/hwa-hc.c
1762F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001763F: drivers/usb/wusbcore/
1764F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001765
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001766CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001767M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001768W: http://miguelojeda.es/auxdisplay.htm
1769W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001771F: drivers/auxdisplay/cfag12864b.c
1772F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001773
1774CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001775M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001776W: http://miguelojeda.es/auxdisplay.htm
1777W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001779F: drivers/auxdisplay/cfag12864bfb.c
1780F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001781
Johannes Berg704232c2007-04-23 12:20:05 -07001782CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001783M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001784L: linux-wireless@vger.kernel.org
1785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001786F: include/linux/nl80211.h
1787F: include/net/cfg80211.h
1788F: net/wireless/*
1789X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001790
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001791CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001792M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001793S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001794F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001795
Harry Weif8407f262011-02-25 14:44:15 -08001796CHINESE DOCUMENTATION
1797M: Harry Wei <harryxiyou@gmail.com>
1798L: xiyoulinuxkernelgroup@googlegroups.com
1799L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1800S: Maintained
1801F: Documentation/zh_CN/
1802
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001803CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001804M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001805M: Roopa Prabhu <roprabhu@cisco.com>
Vasanthy Kolluri94d57c42010-09-30 13:36:05 +00001806M: David Wang <dwang2@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001807S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001808F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001809
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001810CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001811M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001812L: netdev@vger.kernel.org
1813S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001814F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001815
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001816CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001817M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001818L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001820F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001821
Timur Tabid9e9d822008-04-24 08:45:26 +10001822CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001823M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001824L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001825S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001826F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001827
Russell Kingd4275352009-04-16 14:05:27 +01001828CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001829M: Russell King <linux@arm.linux.org.uk>
Russell Kingd4275352009-04-16 14:05:27 +01001830F: include/linux/clk.h
1831
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001832CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001833M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001834M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1835M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001836L: linux-scsi@vger.kernel.org
1837S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001838F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001839
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001840CMPC ACPI DRIVER
1841M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1842M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001843L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001844S: Supported
1845F: drivers/platform/x86/classmate-laptop.c
1846
Nicolas Palix74425ee2010-06-06 17:15:01 +02001847COCCINELLE/Semantic Patches (SmPL)
1848M: Julia Lawall <julia@diku.dk>
1849M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palixaf78f212010-10-08 21:27:36 +02001850M: Nicolas Palix <npalix.work@gmail.com>
Nicolas Palix74425ee2010-06-06 17:15:01 +02001851L: cocci@diku.dk (moderated for non-subscribers)
1852W: http://coccinelle.lip6.fr/
1853S: Supported
1854F: scripts/coccinelle/
1855F: scripts/coccicheck
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001858M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859M: coda@cs.cmu.edu
1860L: codalist@coda.cs.cmu.edu
1861W: http://www.coda.cs.cmu.edu/
1862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001863F: Documentation/filesystems/coda.txt
1864F: fs/coda/
1865F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001867COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07001868M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04001869L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08001870L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001871W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001872Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07001873T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001874S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001875F: Documentation/filesystems/cifs.txt
1876F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001877
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001879M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001880L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001882F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
1884COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001885M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001886L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001888F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
1890COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001891M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001892L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001894F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001896COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001897M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05001898L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001900F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001901
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902COMPUTONE INTELLIPORT MULTIPORT CARD
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903W: http://www.wittsend.com/computone.html
Joe Perchesc8974012011-04-14 15:22:05 -07001904S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001905F: Documentation/serial/computone.txt
Joe Perchesc8974012011-04-14 15:22:05 -07001906F: drivers/staging/tty/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
Simon Arlott949be0f2007-03-06 02:47:46 -08001908CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001909M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001910L: accessrunner-general@lists.sourceforge.net
1911W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001913F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001914
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001915CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08001916M: Joel Becker <jlbec@evilplan.org>
1917T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001918S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001919F: fs/configfs/
1920F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001921
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001922CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07001923M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001924L: netdev@vger.kernel.org
1925S: Maintained
1926F: drivers/connector/
1927
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001928CONTROL GROUPS (CGROUPS)
Wanlong Gao47331232011-08-25 15:59:10 -07001929M: Paul Menage <paul@paulmenage.org>
Joe Perches8b58be82009-07-29 15:04:30 -07001930M: Li Zefan <lizf@cn.fujitsu.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001931L: containers@lists.linux-foundation.org
1932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001933F: include/linux/cgroup*
1934F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07001935F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001936
Rudolf Marekbebe4672007-05-08 17:22:02 +02001937CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02001938M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02001939L: lm-sensors@lm-sensors.org
1940S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001941F: Documentation/hwmon/coretemp
1942F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001943
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001945M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946W: http://www.fi.muni.cz/~kas/cosa/
1947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001948F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Florian Fainelli4371ee32009-06-01 02:43:17 -07001950CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001951M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07001952L: netdev@vger.kernel.org
1953S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07001954F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07001955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956CPU FREQUENCY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001957M: Dave Jones <davej@redhat.com>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001958L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001960T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001962F: drivers/cpufreq/
1963F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
1965CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001966M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001968F: arch/x86/kernel/cpuid.c
1969F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02001971CPU POWER MONITORING SUBSYSTEM
1972M: Dominik Brodowski <linux@dominikbrodowski.net>
1973M: Thomas Renninger <trenn@suse.de>
1974S: Maintained
1975F: tools/power/cpupower
1976
Paul Jacksoned90fb42005-09-27 21:45:37 -07001977CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07001978M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb42005-09-27 21:45:37 -07001979W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001980W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001981S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001982F: Documentation/cgroups/cpusets.txt
1983F: include/linux/cpuset.h
1984F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001985
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001987W: http://sourceforge.net/projects/cramfs/
1988S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001989F: Documentation/filesystems/cramfs.txt
1990F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
1992CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001993M: Mikael Starvik <starvik@axis.com>
1994M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02001995L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996W: http://developer.axis.com
1997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001998F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001999F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
2001CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002002M: Herbert Xu <herbert@gondor.apana.org.au>
2003M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002005T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002007F: Documentation/crypto/
2008F: arch/*/crypto/
2009F: crypto/
2010F: drivers/crypto/
2011F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
Neil Horman5b07bd52009-02-05 16:03:04 +11002013CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002014M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002015L: linux-crypto@vger.kernel.org
2016S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002017F: crypto/ansi_cprng.c
2018F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002019
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002020CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002021M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002023F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002024
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002025CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002026M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002027L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002028L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002029T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002030W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002031W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002033F: Documentation/video4linux/cx18.txt
2034F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002035
Steve Wisee5ec3782008-05-20 14:06:33 -07002036CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002037M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002038L: netdev@vger.kernel.org
2039W: http://www.chelsio.com
2040S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002041F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002042
2043CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002044M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002045L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002046W: http://www.openfabrics.org
2047S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002048F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002049
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002050CXGB4 ETHERNET DRIVER (CXGB4)
2051M: Dimitris Michailidis <dm@chelsio.com>
2052L: netdev@vger.kernel.org
2053W: http://www.chelsio.com
2054S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002055F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002056
2057CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2058M: Steve Wise <swise@chelsio.com>
2059L: linux-rdma@vger.kernel.org
2060W: http://www.openfabrics.org
2061S: Supported
2062F: drivers/infiniband/hw/cxgb4/
2063
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002064CXGB4VF ETHERNET DRIVER (CXGB4VF)
2065M: Casey Leedom <leedom@chelsio.com>
2066L: netdev@vger.kernel.org
2067W: http://www.chelsio.com
2068S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002069F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002070
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002071STMMAC ETHERNET DRIVER
2072M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2073L: netdev@vger.kernel.org
2074W: http://www.stlinux.com
2075S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002076F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002079M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002080L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081W: http://www.arm.linux.org.uk/
2082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002083F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002084
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002086M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002087W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002089F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
2091CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002093S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002094F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002095F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
2097CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002099S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002100F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002103M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104W: http://yaina.de/jreuter/
2105W: http://www.qsl.net/dl1bke/
2106L: linux-hams@vger.kernel.org
2107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002108F: net/ax25/af_ax25.c
2109F: net/ax25/ax25_dev.c
2110F: net/ax25/ax25_ds_*
2111F: net/ax25/ax25_in.c
2112F: net/ax25/ax25_out.c
2113F: net/ax25/ax25_timer.c
2114F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002116DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002117L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002118S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002119F: Documentation/networking/dmfe.txt
Jeff Kirshera88394c2011-05-20 07:15:19 -07002120F: drivers/net/ethernet/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002121
2122DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002123M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002124W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002125M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002127F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129DC395x SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002130M: Oliver Neukum <oliver@neukum.name>
2131M: Ali Akcaagac <aliakc@web.de>
2132M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002134L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135L: http://lists.twibble.org/mailman/listinfo/dc395x/
2136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002137F: Documentation/scsi/dc395x.txt
2138F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002140DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002141M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002142L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002143W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002145F: include/linux/dccp.h
2146F: include/linux/tfrc.h
2147F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002148
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150W: http://linux-decnet.sourceforge.net
2151L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002152S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002153F: Documentation/networking/decnet.txt
2154F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
2156DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002157M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002159F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002161DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002162M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002163L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002165F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002166
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002168M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169W: http://www.debian.org/~dz/i8k/
2170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002171F: drivers/char/i8k.c
2172F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Doug Warzecha90563ec2005-09-06 15:17:15 -07002174DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002175M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002177F: Documentation/dcdbas.txt
2178F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002179
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002180DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002181M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002182S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002183F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002184
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002185DESIGNWARE USB3 DRD IP DRIVER
2186M: Felipe Balbi <balbi@ti.com>
2187L: linux-usb@vger.kernel.org
2188L: linux-omap@vger.kernel.org
2189T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2190S: Maintained
2191F: drivers/usb/dwc3/
2192
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002194M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196S: Maintained
2197
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002198DEVICE-MAPPER (LVM)
2199P: Alasdair Kergon
2200L: dm-devel@redhat.com
2201W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002202Q: http://patchwork.kernel.org/project/dm-devel/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002204F: Documentation/device-mapper/
2205F: drivers/md/dm*
2206F: include/linux/device-mapper.h
2207F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002208
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209DIGI INTL. EPCA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002210M: "Digi International, Inc" <Eng.Linux@digi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211L: Eng.Linux@digi.com
2212W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002213S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002214F: Documentation/serial/digiepca.txt
Joe Perchesc8974012011-04-14 15:22:05 -07002215F: drivers/staging/tty/epca*
2216F: drivers/staging/tty/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Guenter Roeck335d7c52011-01-26 11:45:49 -08002218DIOLAN U2C-12 I2C DRIVER
2219M: Guenter Roeck <guenter.roeck@ericsson.com>
2220L: linux-i2c@vger.kernel.org
2221S: Maintained
2222F: drivers/i2c/busses/i2c-diolan-u2c.c
2223
Randy Dunlape7839f22008-10-12 16:11:45 -07002224DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002225M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002227F: Documentation/filesystems/dnotify.txt
2228F: fs/notify/dnotify/
2229F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
2231DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002232M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2234W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2235W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2236S: Maintained
2237
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002238DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002239M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002241F: Documentation/filesystems/quota.txt
2242F: fs/quota/
2243F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
Randy Dunlape7839f22008-10-12 16:11:45 -07002245DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002246M: Christine Caulfield <ccaulfie@redhat.com>
2247M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002248L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002249W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002250T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002251S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002252F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002253
Dan Williamsb3e5f262007-08-07 10:26:35 -07002254DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002255M: Vinod Koul <vinod.koul@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002256M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002257S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002258F: drivers/dma/
2259F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302260T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2261T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002262
Juerg Haefligerb8250372007-06-09 10:11:16 -04002263DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002264M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002265L: lm-sensors@lm-sensors.org
2266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002267F: Documentation/hwmon/dme1737
2268F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002269
Martin Waitzba483d52005-06-17 13:20:59 -07002270DOCBOOK FOR DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07002271M: Randy Dunlap <rdunlap@xenotime.net>
Martin Waitzba483d52005-06-17 13:20:59 -07002272S: Maintained
Randy Dunlap5d3efe02010-11-18 12:27:37 -08002273F: scripts/kernel-doc
Martin Waitzba483d52005-06-17 13:20:59 -07002274
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002275DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002276M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002277L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002278S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002279F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002280
Joe Perches7d2c86b2009-04-07 20:59:01 -07002281DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07002282M: Randy Dunlap <rdunlap@xenotime.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002283L: linux-doc@vger.kernel.org
Randy Dunlap0dcb6d72011-07-06 11:19:56 -07002284T: quilt http://userweb.kernel.org/~rdunlap/kernel-doc-patches/current/
Jean Delvare795fb7e2008-09-20 12:33:08 +02002285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002286F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002287
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002289M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290L: blinux-list@redhat.com
2291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002292F: drivers/char/dtlk.c
2293F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002295DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002296M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002297L: linux-scsi@vger.kernel.org
2298W: http://www.adaptec.com/
2299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002300F: drivers/scsi/dpt*
2301F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002302
Philipp Reisnerb411b362009-09-25 16:07:19 -07002303DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002304P: Philipp Reisner
2305P: Lars Ellenberg
2306M: drbd-dev@lists.linbit.com
2307L: drbd-user@lists.linbit.com
2308W: http://www.drbd.org
2309T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2310T: git git://git.drbd.org/drbd-8.3.git
2311S: Supported
2312F: drivers/block/drbd/
2313F: lib/lru_cache.c
2314F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002315
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002316DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Joe Perches8b58be82009-07-29 15:04:30 -07002317M: Greg Kroah-Hartman <gregkh@suse.de>
Greg Kroah-Hartmane658e9f2010-11-09 09:12:42 -08002318T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002320F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002321F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002322F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002323F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002324F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002325F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002326F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
2328DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002329M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002330L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002331T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002333F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002334F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
Chris Wilson8daf7472010-09-28 14:07:26 +01002336INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Keith Packard704df8d2011-05-11 07:58:08 -07002337M: Keith Packard <keithp@keithp.com>
Joe Perchescc840f72010-11-23 22:36:42 -08002338L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002339L: dri-devel@lists.freedesktop.org
Keith Packard704df8d2011-05-11 07:58:08 -07002340T: git git://git.kernel.org/pub/scm/linux/kernel/git/keithp/linux-2.6.git
Chris Wilson8daf7472010-09-28 14:07:26 +01002341S: Supported
2342F: drivers/gpu/drm/i915
2343F: include/drm/i915*
2344
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002346M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002347L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002349F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
Jason Baronac0ac382011-08-11 14:36:43 -04002351DYNAMIC DEBUG
2352M: Jason Baron <jbaron@redhat.com>
2353S: Maintained
2354F: lib/dynamic_debug.c
2355F: include/linux/dynamic_debug.h
2356
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002357DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002358M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002359S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002360F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002361
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002363M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002364L: linux-eata@i-connect.net
2365L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002367F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
2369EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002370M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371L: linux-scsi@vger.kernel.org
2372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002373F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
2375EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002376M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002377L: linux-eata@i-connect.net
2378L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002380F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
2382EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002383M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002384L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385W: http://ebtables.sourceforge.net/
2386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002387F: include/linux/netfilter_bridge/ebt_*.h
2388F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389
Michael Halcrow237fead2006-10-04 02:16:22 -07002390ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002391M: Tyler Hicks <tyhicks@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002392M: Dustin Kirkland <kirkland@canonical.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002393L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002394W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002395S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002396F: Documentation/filesystems/ecryptfs.txt
2397F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002398
Alan Coxda9bb1d2006-01-18 17:44:13 -08002399EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002400M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002401L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002402W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002403S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002404F: Documentation/edac.txt
2405F: drivers/edac/edac_*
2406F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002407
Borislav Petkovc476c232009-05-20 20:31:58 +02002408EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002409M: Doug Thompson <dougthompson@xmission.com>
2410M: Borislav Petkov <borislav.petkov@amd.com>
Borislav Petkovc476c232009-05-20 20:31:58 +02002411L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2412W: bluesmoke.sourceforge.net
2413S: Supported
2414F: drivers/edac/amd64_edac*
2415
Dave Peterson0e438e32006-03-26 01:38:55 -08002416EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002417M: Mark Gross <mark.gross@intel.com>
2418M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002419L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002420W: bluesmoke.sourceforge.net
2421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002422F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002423
2424EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002425M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002426L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002427W: bluesmoke.sourceforge.net
2428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002429F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002430
Douglas Thompson6bc78402007-07-19 01:50:12 -07002431EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002432M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002433L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002434W: bluesmoke.sourceforge.net
2435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002436F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002437
2438EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002439M: Jason Uhlenkott <juhlenko@akamai.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002440L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002441W: bluesmoke.sourceforge.net
2442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002443F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002444
2445EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002446M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002447L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002448W: bluesmoke.sourceforge.net
2449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002450F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002451
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002452EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002453M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002454L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002455W: bluesmoke.sourceforge.net
2456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002457F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002458
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002459EDAC-I7300
2460M: Mauro Carvalho Chehab <mchehab@redhat.com>
2461L: linux-edac@vger.kernel.org
2462W: bluesmoke.sourceforge.net
2463S: Maintained
2464F: drivers/edac/i7300_edac.c
2465
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002466EDAC-I7CORE
2467M: Mauro Carvalho Chehab <mchehab@redhat.com>
2468L: linux-edac@vger.kernel.org
2469W: bluesmoke.sourceforge.net
2470S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002471F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002472
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002473EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002474M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302475M: "Arvind R." <arvino55@gmail.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002476L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002477W: bluesmoke.sourceforge.net
2478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002479F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002480
2481EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002482M: Egor Martovetsky <egor@pasemi.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002483L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002484W: bluesmoke.sourceforge.net
2485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002486F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002487
Dave Peterson0e438e32006-03-26 01:38:55 -08002488EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002489M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002490L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002491W: bluesmoke.sourceforge.net
2492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002493F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002494
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002495EDAC-SBRIDGE
2496M: Mauro Carvalho Chehab <mchehab@redhat.com>
2497L: linux-edac@vger.kernel.org
2498W: bluesmoke.sourceforge.net
2499S: Maintained
2500F: drivers/edac/sb_edac.c
2501
Clemens Ladischaf399172011-01-10 16:32:54 +01002502EDIROL UA-101/UA-1000 DRIVER
2503M: Clemens Ladisch <clemens@ladisch.de>
2504L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2505T: git git://git.alsa-project.org/alsa-kernel.git
2506S: Maintained
2507F: sound/usb/misc/ua101.c
2508
Peter Jones85a00d92010-09-22 13:05:04 -07002509EFIFB FRAMEBUFFER DRIVER
2510L: linux-fbdev@vger.kernel.org
2511M: Peter Jones <pjones@redhat.com>
2512S: Maintained
2513F: drivers/video/efifb.c
2514
Josh Triplett0bee8d22006-07-30 03:03:58 -07002515EFS FILESYSTEM
2516W: http://aeschi.ch.eu.org/efs/
2517S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002518F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002519
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002520EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002521M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2522M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002523L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002524S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002525F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002526
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002527EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002528M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002529L: netdev@vger.kernel.org
2530S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002531F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002532
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002533EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002534M: Paul Gortmaker <paul.gortmaker@windriver.com>
2535M: Matt Mackall <mpm@selenic.com>
2536M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002537L: linux-embedded@vger.kernel.org
2538S: Maintained
2539
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002540EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002541M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002542L: linux-scsi@vger.kernel.org
2543W: http://sourceforge.net/projects/lpfcxxxx
2544S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002545F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002546
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002547ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002548M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002549S: Maintained
2550F: drivers/misc/cb710/
2551F: drivers/mmc/host/cb710-mmc.*
2552F: include/linux/cb710.h
2553
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002554ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2555M: Maxim Levitsky <maximlevitsky@gmail.com>
2556S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002557F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002558
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002560M: Christopher Hoover <ch@murgatroid.com>
2561M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002563F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002565EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002566M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002567S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002568T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002569F: drivers/video/s1d13xxxfb.c
2570F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002571
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002573M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002574L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002576F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
2578ETHERNET BRIDGE
Joe Perches8b58be82009-07-29 15:04:30 -07002579M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07002580L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002581L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002582W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002584F: include/linux/netfilter_bridge/
2585F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586
2587ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002588M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002590F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
2592EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002593M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002594L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002596F: Documentation/filesystems/ext2.txt
2597F: fs/ext2/
2598F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
2600EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002601M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002602M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002603M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002604L: linux-ext4@vger.kernel.org
2605S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002606F: Documentation/filesystems/ext3.txt
2607F: fs/ext3/
2608F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002609
2610EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002611M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002612M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002613L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002614W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002615Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002617F: Documentation/filesystems/ext4.txt
2618F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619
Mimi Zoharc5532b02011-08-17 18:52:24 -04002620Extended Verification Module (EVM)
2621M: Mimi Zohar <zohar@us.ibm.com>
2622S: Supported
2623F: security/integrity/evm/
2624
Jean Delvaree53004e2006-01-09 23:26:14 +01002625F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002626M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002627L: lm-sensors@lm-sensors.org
2628S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002629F: Documentation/hwmon/f71805f
2630F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002631
Eric Paris88b2dbd2010-08-18 12:25:50 -04002632FANOTIFY
2633M: Eric Paris <eparis@redhat.com>
2634S: Maintained
2635F: fs/notify/fanotify/
2636F: include/linux/fanotify.h
2637
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002639M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640W: http://www.farsite.co.uk/
2641S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002642F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
Akinobu Mitac5408b82007-04-23 14:41:20 -07002644FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002645M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07002646S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002647F: Documentation/fault-injection/
2648F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002649
Robert Lovecae727d2010-02-16 12:16:00 -08002650FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
2651M: Robert Love <robert.w.love@intel.com>
2652L: devel@open-fcoe.org
2653W: www.Open-FCoE.org
2654S: Supported
2655F: drivers/scsi/libfc/
2656F: drivers/scsi/fcoe/
2657F: include/scsi/fc/
2658F: include/scsi/libfc.h
2659F: include/scsi/libfcoe.h
2660
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002661FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07002662M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002663L: linux-fsdevel@vger.kernel.org
2664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002665F: include/linux/fcntl.h
2666F: include/linux/fs.h
2667F: fs/fcntl.c
2668F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002669
2670FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07002671M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002672L: linux-fsdevel@vger.kernel.org
2673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002674F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002675
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002676FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02002677M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002678L: lm-sensors@lm-sensors.org
2679S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002680F: drivers/hwmon/f75375s.c
2681F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002682
Clemens Ladischa331b0c2011-05-25 09:48:48 +02002683FIREWIRE AUDIO DRIVERS
2684M: Clemens Ladisch <clemens@ladisch.de>
2685L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2686T: git git://git.alsa-project.org/alsa-kernel.git
2687S: Maintained
2688F: sound/firewire/
2689
Joe Perches7d2c86b2009-04-07 20:59:01 -07002690FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002691M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002692L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01002693W: http://ieee1394.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07002694T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002696F: drivers/firewire/
2697F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02002698F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002699
2700FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002701S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002702F: Documentation/firmware_class/
2703F: drivers/base/firmware*.c
2704F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002705
2706FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002707M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07002708W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002710F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002711
2712FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002713L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00002714S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002715F: drivers/net/wan/dlci.c
2716F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002717
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00002719M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002720L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09002722Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00002723T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09002724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002725F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09002726F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09002727F: drivers/video/
2728F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07002729F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730
Zhang Wei173acc72008-03-01 07:42:48 -07002731FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002732M: Li Yang <leoli@freescale.com>
2733M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002734L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002736F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002737
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002738FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002739M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002740L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002741L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002743F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002744
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002745FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002746M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002747L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07002748L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002750F: arch/arm/plat-mxc/include/mach/imxfb.h
2751F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002752
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002753FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002754M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
2755M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002756L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002757L: netdev@vger.kernel.org
2758S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07002759F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07002760F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002761
Timur Tabid9e9d822008-04-24 08:45:26 +10002762FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07002763M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002764L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10002765S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002766F: arch/powerpc/sysdev/qe_lib/
2767F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002768
Joe Perchesb55ef9292009-10-26 16:49:46 -07002769FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002770M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002771L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002772L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002773S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08002774F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07002775
Li Yangbeaf53b2007-05-25 13:54:02 +08002776FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002777M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08002778L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002779L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002780S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07002781F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002782
Timur Tabid9e9d822008-04-24 08:45:26 +10002783FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002784M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002785L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10002786S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002787F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002788
2789FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002790M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07002791L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002792L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10002793S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002794F: sound/soc/fsl/fsl*
2795F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002796
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002798M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002801F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
Pavel Machek71038f52009-01-15 13:51:02 -08002803FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07002804M: Pavel Machek <pavel@ucw.cz>
2805M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02002806L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08002807S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002808F: Documentation/power/freezing-of-tasks.txt
2809F: include/linux/freezer.h
2810F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002811
David Howellsa5432f52009-04-20 15:46:45 +01002812FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002813M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01002814L: linux-cachefs@redhat.com
2815S: Supported
2816F: Documentation/filesystems/caching/
2817F: fs/fscache/
2818F: include/linux/fscache*.h
2819
David Howells5ab7ffe2007-04-10 15:10:45 +01002820FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002821M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002823F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824
Jonathan Woithe20b93732008-06-11 10:14:56 +09302825FUJITSU LAPTOP EXTRAS
Joe Perches8b58be82009-07-29 15:04:30 -07002826M: Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
Matthew Garrettd0944852010-02-11 10:40:13 -05002827L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09302828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002829F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302830
Miklos Szeredi04578f12005-09-09 13:10:22 -07002831FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07002832M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07002833L: fuse-devel@lists.sourceforge.net
2834W: http://fuse.sourceforge.net/
2835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002836F: fs/fuse/
2837F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002838
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07002840M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002842S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002843F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
2845GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002846M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847L: linux-scsi@vger.kernel.org
2848W: http://www.icp-vortex.com/
2849S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002850F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002852GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07002853M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002854S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002855F: drivers/i2c/busses/i2c-gpio.c
2856F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002857
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01002858GENERIC GPIO I2C MULTIPLEXER DRIVER
2859M: Peter Korsgaard <peter.korsgaard@barco.com>
2860L: linux-i2c@vger.kernel.org
2861S: Supported
2862F: drivers/i2c/muxes/gpio-i2cmux.c
2863F: include/linux/gpio-i2cmux.h
2864F: Documentation/i2c/muxes/gpio-i2cmux
2865
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002866GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002867M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002870F: drivers/net/wan/c101.c
2871F: drivers/net/wan/hd6457*
2872F: drivers/net/wan/hdlc*
2873F: drivers/net/wan/n2.c
2874F: drivers/net/wan/pc300too.c
2875F: drivers/net/wan/pci200syn.c
2876F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002878GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07002879M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002880L: linux-arch@vger.kernel.org
2881T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
2882S: Maintained
2883F: include/asm-generic
2884
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002885GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07002886M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002887L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002888S: Supported
2889F: drivers/uio/uio_pci_generic.c
2890
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002891GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002892M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002893L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002894W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002895T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2896T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002897S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002898F: Documentation/filesystems/gfs2*.txt
2899F: fs/gfs2/
2900F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002901
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002902GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002903M: Hansjoerg Lipp <hjlipp@web.de>
2904M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002905L: gigaset307x-common@lists.sourceforge.net
2906W: http://gigaset307x.sourceforge.net/
2907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002908F: Documentation/isdn/README.gigaset
2909F: drivers/isdn/gigaset/
2910F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002911
Grant Likelya0dc00b2011-02-12 01:48:14 -07002912GPIO SUBSYSTEM
2913M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelya0dc00b2011-02-12 01:48:14 -07002914S: Maintained
2915T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07002916F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07002917F: drivers/gpio/
2918F: include/linux/gpio*
2919
Harry Wei71a6d0a2011-05-11 15:13:33 -07002920GRE DEMULTIPLEXER DRIVER
2921M: Dmitry Kozlov <xeb@mail.ru>
2922L: netdev@vger.kernel.org
2923S: Maintained
2924F: net/ipv4/gre.c
2925F: include/net/gre.h
2926
Kristoffer Glembod4c41132010-02-15 03:33:44 +00002927GRETH 10/100/1G Ethernet MAC device driver
2928M: Kristoffer Glembo <kristoffer@gaisler.com>
2929L: netdev@vger.kernel.org
2930S: Maintained
2931F: drivers/net/greth*
2932
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002933GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002934M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002935L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002936T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002938F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002939
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03002940GSPCA GL860 SUBDRIVER
2941M: Olivier Lorin <o.lorin@laposte.net>
2942L: linux-media@vger.kernel.org
2943T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2944S: Maintained
2945F: drivers/media/video/gspca/gl860/
2946
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002947GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002948M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002949L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002950T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002952F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002953
2954GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002955M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002956L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002957T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002959F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002960
Brian Johnson261982f2009-07-19 15:58:56 -03002961GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03002962M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03002963L: linux-media@vger.kernel.org
2964T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2965S: Maintained
2966F: drivers/media/video/gspca/sn9c20x.c
2967
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002968GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002969M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002970L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002971T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002973F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002974
2975GSPCA USB WEBCAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002976M: Jean-Francois Moine <moinejf@free.fr>
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002977W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002978L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002979T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002981F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002982
Harry Wei71a6d0a2011-05-11 15:13:33 -07002983HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
2984M: Frank Seidel <frank@f-seidel.de>
2985L: platform-driver-x86@vger.kernel.org
2986W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
2987S: Maintained
2988F: drivers/platform/x86/hdaps.c
2989
2990HWPOISON MEMORY FAILURE HANDLING
2991M: Andi Kleen <andi@firstfloor.org>
2992L: linux-mm@kvack.org
2993T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
2994S: Maintained
2995F: mm/memory-failure.c
2996F: mm/hwpoison-inject.c
2997
2998HYPERVISOR VIRTUAL CONSOLE DRIVER
2999L: linuxppc-dev@lists.ozlabs.org
3000S: Odd Fixes
3001F: drivers/tty/hvc/
3002
Jean Delvare5b543962005-08-15 19:51:02 +02003003HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003004M: Jean Delvare <khali@linux-fr.org>
3005M: Guenter Roeck <guenter.roeck@ericsson.com>
Jean Delvare5b543962005-08-15 19:51:02 +02003006L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08003007W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003008T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003009T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003010S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003011F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003012F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003013F: include/linux/hwmon*.h
Jean Delvare5b543962005-08-15 19:51:02 +02003014
Michael Buesch844dd052006-06-26 00:24:59 -07003015HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003016M: Matt Mackall <mpm@selenic.com>
3017M: Herbert Xu <herbert@gondor.apana.org.au>
3018S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003019F: Documentation/hw_random.txt
3020F: drivers/char/hw_random/
3021F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07003022
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003023HARDWARE SPINLOCK CORE
3024M: Ohad Ben-Cohen <ohad@wizery.com>
3025S: Maintained
3026F: Documentation/hwspinlock.txt
3027F: drivers/hwspinlock/hwspinlock_*
3028F: include/linux/hwspinlock.h
3029
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030HARMONY SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003031M: Kyle McMartin <kyle@mcmartin.ca>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003032L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003034F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003036HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003037M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003038L: iss_storagedev@hp.com
3039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003040F: Documentation/blockdev/cpqarray.txt
3041F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003042
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003043HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003044M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003045L: iss_storagedev@hp.com
3046S: Supported
3047F: Documentation/scsi/hpsa.txt
3048F: drivers/scsi/hpsa*.[ch]
3049F: include/linux/cciss*.h
3050
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003051HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003052M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003053L: iss_storagedev@hp.com
3054S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003055F: Documentation/blockdev/cciss.txt
3056F: drivers/block/cciss*
3057F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003058
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003060L: linux-fsdevel@vger.kernel.org
3061S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003062F: Documentation/filesystems/hfs.txt
3063F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064
3065HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003066M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067L: linux-nvidia@lists.surfsouth.com
3068W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003070F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003072HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003073M: Pavel Machek <pavel@ucw.cz>
3074M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003075L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003076S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003077F: arch/x86/power/
3078F: drivers/base/power/
3079F: kernel/power/
3080F: include/linux/suspend.h
3081F: include/linux/freezer.h
3082F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003083F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003084
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003085HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003086M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003087L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003088T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003089S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003090F: drivers/hid/
3091F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003092
Ingo Molnar38bed542007-02-22 09:09:34 +01003093HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003094M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar38bed542007-02-22 09:09:34 +01003095S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003096F: Documentation/timers/
3097F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003098F: kernel/time/clockevents.c
3099F: kernel/time/tick*.*
3100F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003101F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003102F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003103
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104HIGH-SPEED SCC DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07003105M: Klaus Kudielka <klaus.kudielka@ieee.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106L: linux-hams@vger.kernel.org
3107W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
3108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003109F: drivers/net/hamradio/dmascc.c
3110F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003112HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003113M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003114W: http://www.highpoint-tech.com
3115S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003116F: Documentation/scsi/hptiop.txt
3117F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003118
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003120M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121L: linux-hippi@sunsite.dk
3122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003123F: include/linux/hippidevice.h
3124F: include/linux/if_hippi.h
3125F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003126F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127
Jouni Malinenff1d2762005-05-12 22:54:16 -04003128HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003129M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003130L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003131L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003132W: http://hostap.epitest.fi/
3133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003134F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003135
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003136HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003137L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003138S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003139F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003140
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003141HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003142M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003143S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003144F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003145
Joe Perches7d2c86b2009-04-07 20:59:01 -07003146HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003147M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003149F: Documentation/timers/hpet.txt
3150F: drivers/char/hpet.c
3151F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003152
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003153HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003154M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003156F: arch/x86/kernel/hpet.c
3157F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003158
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003160M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003163F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164
Joe Perches7d2c86b2009-04-07 20:59:01 -07003165HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003166M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003167W: http://www.pharscape.org
3168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003169F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003170
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003171HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003172M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003173L: linux-input@vger.kernel.org
3174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003175F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003176
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003178M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003180F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003182I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003183M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003184L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003186F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003187
Jean Delvare5b543962005-08-15 19:51:02 +02003188I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003189M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
3190M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003191L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003192W: http://i2c.wiki.kernel.org/
3193T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Uwe Kleine-König0e533002010-01-25 10:20:34 +01003194T: git git://git.fluff.org/bjdooks/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003196F: Documentation/i2c/
3197F: drivers/i2c/
3198F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003199F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
Till Harbaume8c76ee2007-05-01 23:26:35 +02003201I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003202M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003203L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003204W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003206F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003207
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003209M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003211F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212
3213i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003214M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003215T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216S: Maintained
3217
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003219M: Tony Luck <tony.luck@intel.com>
3220M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003222T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003224F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226IBM MCA SCSI SUBSYSTEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003227M: Michael Lang <langa2@kph.uni-mainz.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228W: http://www.uni-mainz.de/~langm000/linux.html
3229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003230F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231
3232IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003233M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003235F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236
Santiago Leon9d348af2010-09-03 18:29:53 +00003237IBM Power Virtual Ethernet Device Driver
3238M: Santiago Leon <santil@linux.vnet.ibm.com>
3239L: netdev@vger.kernel.org
3240S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003241F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003242
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243IBM ServeRAID RAID DRIVER
3244P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003245M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003247S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003248F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003250IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003251M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003253Q: http://patchwork.ozlabs.org/project/linux-ide/list/
David S. Miller920d44e2009-06-21 16:11:33 -07003254T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003256F: Documentation/ide/
3257F: drivers/ide/
3258F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
Ike Panhc6cb8c132011-08-25 22:28:45 +08003260IDEAPAD LAPTOP EXTRAS DRIVER
3261M: Ike Panhc <ike.pan@canonical.com>
3262L: platform-driver-x86@vger.kernel.org
3263W: http://launchpad.net/ideapad-laptop
3264S: Maintained
3265F: drivers/platform/x86/ideapad-laptop.c
3266
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003267IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003268M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003269L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003271F: Documentation/cdrom/ide-cd
3272F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273
Andy Henroid27471fd2008-10-09 11:45:22 -07003274IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003275M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003276L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003277S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003278F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003279
Sergey Lapin02cf2282009-06-08 12:18:50 +00003280IEEE 802.15.4 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003281M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
3282M: Sergey Lapin <slapin@ossfans.org>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003283L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003284W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003285T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003286S: Maintained
3287F: net/ieee802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003288F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003289
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003290IKANOS/ADI EAGLE ADSL USB DRIVER
3291M: Matthieu Castet <castet.matthieu@free.fr>
3292M: Stanislaw Gruszka <stf_xl@wp.pl>
3293S: Maintained
3294F: drivers/usb/atm/ueagle-atm.c
3295
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003296INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003297M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003298S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003299F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003300
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003302L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003303S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003304F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305
3306INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003307M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003308M: Sean Hefty <sean.hefty@intel.com>
3309M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003310L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003311W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003312Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003313T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003315F: Documentation/infiniband/
3316F: drivers/infiniband/
3317F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318
Robert Lovec9f04f52005-07-15 12:21:07 -04003319INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003320M: John McCutchan <john@johnmccutchan.com>
3321M: Robert Love <rlove@rlove.org>
3322M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003324F: Documentation/filesystems/inotify.txt
3325F: fs/notify/inotify/
3326F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003327
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003328INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003329M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3330M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003331L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003332Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003333T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003335F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003336
Henrik Rydberg3267a872010-06-24 19:10:40 -07003337INPUT MULTITOUCH (MT) PROTOCOL
3338M: Henrik Rydberg <rydberg@euromail.se>
3339L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003340T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003341S: Maintained
3342F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003343F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003344K: \b(ABS|SYN)_MT_
3345
Dave Jiang4ac13e12011-07-29 17:16:55 -07003346INTEL C600 SERIES SAS CONTROLLER DRIVER
3347M: Intel SCU Linux support <intel-linux-scu@intel.com>
3348M: Dan Williams <dan.j.williams@intel.com>
3349M: Dave Jiang <dave.jiang@intel.com>
3350M: Ed Nadolski <edmund.nadolski@intel.com>
3351L: linux-scsi@vger.kernel.org
3352T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/isci.git
3353S: Maintained
3354F: drivers/scsi/isci/
3355F: firmware/isci/
3356
Len Brown26717172010-03-08 14:07:30 -05003357INTEL IDLE DRIVER
3358M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003359L: linux-pm@vger.kernel.org
Len Brown26717172010-03-08 14:07:30 -05003360T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-idle-2.6.git
3361S: Supported
3362F: drivers/idle/intel_idle.c
3363
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003364INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003365M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003366L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003368F: Documentation/fb/intelfb.txt
3369F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003370
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003372M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003373L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003375F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303377INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003378M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003379L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303380W: http://www.lesswatts.org/projects/acpi/
3381S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003382F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303383
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003385M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003387F: arch/x86/kernel/microcode_core.c
3388F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003390INTEL I/OAT DMA DRIVER
Dan Williams9fe3b692010-01-15 01:47:37 -08003391M: Dan Williams <dan.j.williams@intel.com>
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003392S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003393F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003394
David Woodhouse6c8909b2008-10-18 16:12:17 +01003395INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003396M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003397L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003398T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003399S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003400F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07003401F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003402
Dan Williamsb3e5f262007-08-07 10:26:35 -07003403INTEL IOP-ADMA DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003404M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsf00f5102009-08-18 15:21:50 -07003405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003406F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003407
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003408INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003409M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003411F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3412F: arch/arm/mach-ixp4xx/include/mach/npe.h
3413F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3414F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07003415F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07003416F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003417
Michael Buesch844dd052006-06-26 00:24:59 -07003418INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003419M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003421F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003422
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003423INTEL IXP2000 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003424M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003425L: netdev@vger.kernel.org
3426S: Maintained
Jeff Kirsherb47da972011-07-14 22:13:23 -07003427F: drivers/net/ethernet/xscale/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003428
Jeff Kirsher0d164402010-10-05 01:15:17 +00003429INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003430M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3431M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3432M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003433M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3434M: Don Skidmore <donald.c.skidmore@intel.com>
3435M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003436M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003437M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003438M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003439L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003440W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003441T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
3442T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00003444F: Documentation/networking/e100.txt
3445F: Documentation/networking/e1000.txt
3446F: Documentation/networking/e1000e.txt
3447F: Documentation/networking/igb.txt
3448F: Documentation/networking/igbvf.txt
3449F: Documentation/networking/ixgb.txt
3450F: Documentation/networking/ixgbe.txt
3451F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003452F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453
Len Brown6dccf9c2011-07-12 22:29:32 -04003454INTEL MRST PMU DRIVER
3455M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003456L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04003457S: Supported
3458F: arch/x86/platform/mrst/pmu.*
3459
James Ketrenos826d2ab2005-11-07 18:56:59 -06003460INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Johannes Berg724c6b32007-04-23 12:18:20 -07003461L: linux-wireless@vger.kernel.org
Zhu Yie7fdc952010-06-10 09:44:29 +08003462S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003463F: Documentation/networking/README.ipw2100
3464F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003465
3466INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Johannes Berg724c6b32007-04-23 12:18:20 -07003467L: linux-wireless@vger.kernel.org
Zhu Yie7fdc952010-06-10 09:44:29 +08003468S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003469F: Documentation/networking/README.ipw2200
3470F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003471
Shane Wang4bd96a72010-03-10 14:36:10 +08003472INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
3473M: Joseph Cihula <joseph.cihula@intel.com>
3474M: Shane Wang <shane.wang@intel.com>
3475L: tboot-devel@lists.sourceforge.net
3476W: http://tboot.sourceforge.net
3477T: Mercurial http://www.bughost.org/repos.hg/tboot.hg
3478S: Supported
3479F: Documentation/intel_txt.txt
3480F: include/linux/tboot.h
3481F: arch/x86/kernel/tboot.c
3482
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003483INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003484M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003485M: linux-wimax@intel.com
3486L: wimax@linuxwimax.org
3487S: Supported
3488W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003489F: Documentation/wimax/README.i2400m
3490F: drivers/net/wimax/i2400m/
3491F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003492
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003493INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
3494M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003495L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003496S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003497F: drivers/net/wireless/iwlegacy/
3498
Zhu Yib481de92007-09-25 17:54:57 -07003499INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07003500M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07003501M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07003502L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07003503W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07003504T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07003505S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003506F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003507
Samuel Ortizf6cd53c2009-11-24 11:33:26 +08003508INTEL WIRELESS MULTICOMM 3200 WIFI (iwmc3200wifi)
3509M: Samuel Ortiz <samuel.ortiz@intel.com>
Samuel Ortizf6cd53c2009-11-24 11:33:26 +08003510M: Intel Linux Wireless <ilw@linux.intel.com>
3511L: linux-wireless@vger.kernel.org
3512S: Supported
3513W: http://wireless.kernel.org/en/users/Drivers/iwmc3200wifi
3514F: drivers/net/wireless/iwmc3200wifi/
3515
Ralf Baechlecb109a02007-08-30 23:56:30 -07003516IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003517M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518L: linux-mips@linux-mips.org
3519S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07003520F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521
Ralf Baechlecb109a02007-08-30 23:56:30 -07003522IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003523M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01003524L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003525S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003526F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003527
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003528IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07003529M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003531F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532
Francois Romieu1202d6f2007-09-17 17:13:55 -07003533IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003534M: Francois Romieu <romieu@fr.zoreil.com>
3535M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07003536L: netdev@vger.kernel.org
3537S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07003538F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07003539
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003540IPATH DRIVER
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07003541M: Mike Marciniszyn <infinipath@qlogic.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003542L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07003543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003544F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003545
Corey Minyard4409ebe2006-04-20 02:43:12 -07003546IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003547M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08003548L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07003549W: http://openipmi.sourceforge.net/
3550S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003551F: Documentation/IPMI.txt
3552F: drivers/char/ipmi/
3553F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003554
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003555IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003556M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003557L: linux-scsi@vger.kernel.org
3558W: http://www.adaptec.com/
3559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003560F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003561
3562IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07003563M: Wensong Zhang <wensong@linux-vs.org>
3564M: Simon Horman <horms@verge.net.au>
3565M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003566L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003567L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003569F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07003570F: include/net/ip_vs.h
3571F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07003572F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573
Randy Dunlape7839f22008-10-12 16:11:45 -07003574IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003575M: Jiri Kosina <jkosina@suse.cz>
3576M: David Sterba <dsterba@suse.cz>
David Sterba099dc4f2008-02-07 10:57:12 +01003577S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003578T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08003579F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003580
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003581IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003582M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003583L: netdev@vger.kernel.org
3584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003585F: include/linux/ipx.h
3586F: include/net/ipx.h
3587F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003588
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003590M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07003591L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01003592L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003594S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02003595T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07003596F: Documentation/networking/irda.txt
3597F: drivers/net/irda/
3598F: include/net/irda/
3599F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02003601IRQ SUBSYSTEM
3602M: Thomas Gleixner <tglx@linutronix.de>
3603S: Maintained
3604T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git irq/core
3605F: kernel/irq/
3606
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003607ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07003608M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003610F: Documentation/isapnp.txt
3611F: drivers/pnp/isapnp/
3612F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003613
Harry Wei71a6d0a2011-05-11 15:13:33 -07003614iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
3615M: Peter Jones <pjones@redhat.com>
3616M: Konrad Rzeszutek Wilk <konrad@kernel.org>
3617S: Maintained
3618F: drivers/firmware/iscsi_ibft*
3619
Mike Christie14816b1e2007-11-28 16:22:06 -08003620ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07003621M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08003622L: open-iscsi@googlegroups.com
3623W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003624T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08003625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003626F: drivers/scsi/*iscsi*
3627F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08003628
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003630M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07003631L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07003632L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003634T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003636F: Documentation/isdn/
3637F: drivers/isdn/
3638F: include/linux/isdn.h
3639F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640
3641ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07003642M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07003643L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644W: http://www.melware.de
3645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003646F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647
Jean Delvared6248702010-03-05 22:17:20 +01003648IT87 HARDWARE MONITORING DRIVER
3649M: Jean Delvare <khali@linux-fr.org>
3650L: lm-sensors@lm-sensors.org
3651S: Maintained
3652F: Documentation/hwmon/it87
3653F: drivers/hwmon/it87.c
3654
Hans Verkuil91821ff2007-12-02 09:35:33 -03003655IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03003656M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02003657L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003658L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003659T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003660W: http://www.ivtvdriver.org
3661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003662F: Documentation/video4linux/*.ivtv
3663F: drivers/media/video/ivtv/
3664F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003665
Guenter Roeck4453d732010-08-09 17:21:08 -07003666JC42.4 TEMPERATURE SENSOR DRIVER
3667M: Guenter Roeck <linux@roeck-us.net>
3668L: lm-sensors@lm-sensors.org
3669S: Maintained
3670F: drivers/hwmon/jc42.c
3671F: Documentation/hwmon/jc42
3672
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003673JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06003674M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003675L: jfs-discussion@lists.sourceforge.net
3676W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003677T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05003678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003679F: Documentation/filesystems/jfs.txt
3680F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003681
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003682JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003683M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003684L: netdev@vger.kernel.org
3685S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07003686F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003687
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07003689M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04003690L: linux-mtd@lists.infradead.org
3691W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003693F: fs/jffs2/
3694F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695
Josh Triplettde456d32006-07-30 03:04:00 -07003696JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07003697M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02003698M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003699L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003700S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04003701F: fs/jbd/
3702F: include/linux/ext3_jbd.h
3703F: include/linux/jbd.h
3704
3705JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
3706M: "Theodore Ts'o" <tytso@mit.edu>
3707L: linux-ext4@vger.kernel.org
3708S: Maintained
3709F: fs/jbd2/
3710F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003711
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03003712JSM Neo PCI based serial card
3713M: Breno Leitao <leitao@linux.vnet.ibm.com>
3714L: linux-serial@vger.kernel.org
3715S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003716F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03003717
Clemens Ladischaf399172011-01-10 16:32:54 +01003718K10TEMP HARDWARE MONITORING DRIVER
3719M: Clemens Ladisch <clemens@ladisch.de>
3720L: lm-sensors@lm-sensors.org
3721S: Maintained
3722F: Documentation/hwmon/k10temp
3723F: drivers/hwmon/k10temp.c
3724
Rudolf Marek4660cb32006-10-08 22:01:26 +02003725K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003726M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02003727L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003729F: Documentation/hwmon/k8temp
3730F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731
3732KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02003733M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003734L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02003735S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003736F: Documentation/kbuild/kconfig-language.txt
3737F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738
Vivek Goyalea6c2082006-05-20 14:59:55 -07003739KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07003740M: Vivek Goyal <vgoyal@redhat.com>
3741M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07003742L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003743W: http://lse.sourceforge.net/kdump/
3744S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003745F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003746
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07003748M: Ian Kent <raven@themaw.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749L: autofs@linux.kernel.org
3750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003751F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752
Michal Marek70fb7ba2010-01-29 14:22:43 +01003753KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08003754M: Michal Marek <mmarek@suse.cz>
Michal Marek3631d9a2010-06-29 11:58:42 +02003755T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git for-next
3756T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003757L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08003758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003759F: Documentation/kbuild/
3760F: Makefile
3761F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01003762F: scripts/basic/
3763F: scripts/mk*
3764F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765
3766KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07003767L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07003768W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07003769S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003771KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003772M: "J. Bruce Fields" <bfields@fieldses.org>
3773M: Neil Brown <neilb@suse.de>
Neil Brown16141c02007-12-11 16:16:12 -08003774L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003776S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003777F: fs/nfsd/
3778F: include/linux/nfsd/
3779F: fs/lockd/
3780F: fs/nfs_common/
3781F: net/sunrpc/
3782F: include/linux/lockd/
3783F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784
Avi Kivity426d62e2006-12-13 00:34:03 -08003785KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07003786M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03003787M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003788L: kvm@vger.kernel.org
3789W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003790S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003791F: Documentation/*/kvm.txt
3792F: arch/*/kvm/
3793F: arch/*/include/asm/kvm*
3794F: include/linux/kvm*
3795F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003796
Joerg Roedelad8003d2008-09-10 20:01:07 +02003797KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07003798M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003799L: kvm@vger.kernel.org
3800W: http://kvm.qumranet.com
3801S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003802F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07003803F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003804
Hollis Blanchard513014b2008-04-16 23:28:08 -05003805KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01003806M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003807L: kvm-ppc@vger.kernel.org
3808W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003809S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003810F: arch/powerpc/include/asm/kvm*
3811F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003812
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003813KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07003814M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003815L: kvm-ia64@vger.kernel.org
3816W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003817S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003818F: Documentation/ia64/kvm.txt
3819F: arch/ia64/include/asm/kvm*
3820F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003821
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003822KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07003823M: Carsten Otte <cotte@de.ibm.com>
3824M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003825M: linux390@de.ibm.com
3826L: linux-s390@vger.kernel.org
3827W: http://www.ibm.com/developerworks/linux/linux390/
3828S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003829F: Documentation/s390/kvm.txt
3830F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003831F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01003832F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003833
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003834KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07003835M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07003836W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07003837L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003839F: include/linux/kexec.h
3840F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003841
David Howellse9714612010-03-29 23:42:09 +01003842KEYS/KEYRINGS:
3843M: David Howells <dhowells@redhat.com>
3844L: keyrings@linux-nfs.org
3845S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07003846F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01003847F: include/linux/key.h
3848F: include/linux/key-type.h
3849F: include/keys/
3850F: security/keys/
3851
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05003852KEYS-TRUSTED
3853M: David Safford <safford@watson.ibm.com>
3854M: Mimi Zohar <zohar@us.ibm.com>
3855L: linux-security-module@vger.kernel.org
3856L: keyrings@linux-nfs.org
3857S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07003858F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05003859F: include/keys/trusted-type.h
3860F: security/keys/trusted.c
3861F: security/keys/trusted.h
3862
3863KEYS-ENCRYPTED
3864M: Mimi Zohar <zohar@us.ibm.com>
3865M: David Safford <safford@watson.ibm.com>
3866L: linux-security-module@vger.kernel.org
3867L: keyrings@linux-nfs.org
3868S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07003869F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05003870F: include/keys/encrypted-type.h
3871F: security/keys/encrypted.c
3872F: security/keys/encrypted.h
3873
Jason Wessel5b778da2010-05-20 21:04:28 -05003874KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07003875M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05003876W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003877L: kgdb-bugreport@lists.sourceforge.net
3878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003879F: Documentation/DocBook/kgdb.tmpl
3880F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003881F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05003882F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07003883F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05003884F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003885
Pekka Enberg456db8c2008-04-28 22:47:29 +03003886KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07003887M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02003888M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03003889S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08003890F: Documentation/kmemcheck.txt
3891F: arch/x86/include/asm/kmemcheck.h
3892F: arch/x86/mm/kmemcheck/
3893F: include/linux/kmemcheck.h
3894F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03003895
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003896KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07003897M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003898S: Maintained
3899F: Documentation/kmemleak.txt
3900F: include/linux/kmemleak.h
3901F: mm/kmemleak.c
3902F: mm/kmemleak-test.c
3903
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003904KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07003905M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
3906M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
3907M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07003908M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003909S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003910F: Documentation/kprobes.txt
3911F: include/linux/kprobes.h
3912F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003913
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003914KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003915M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07003916W: http://miguelojeda.es/auxdisplay.htm
3917W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003918S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003919F: Documentation/auxdisplay/ks0108
3920F: drivers/auxdisplay/ks0108.c
3921F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003922
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003925S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003926F: Documentation/networking/lapb-module.txt
3927F: include/*/lapb.h
3928F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929
3930LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07003931M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932L: linux-scsi@vger.kernel.org
3933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003934F: Documentation/scsi/53c700.txt
3935F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936
Richard Purdie263de9b2006-05-15 09:44:16 -07003937LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003938M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie263de9b2006-05-15 09:44:16 -07003939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003940F: drivers/leds/
3941F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003942
Jean Delvareb0461a42011-06-15 15:08:46 -07003943LEGACY EEPROM DRIVER
3944M: Jean Delvare <khali@linux-fr.org>
3945S: Maintained
3946F: Documentation/misc-devices/eeprom
3947F: drivers/misc/eeprom/eeprom.c
3948
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07003950M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951L: legousb-devel@lists.sourceforge.net
3952W: http://legousb.sourceforge.net/
3953S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003954F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955
Rusty Russell568a17f2007-10-25 14:12:24 +10003956LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07003957M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003958L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10003959W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06003960S: Odd Fixes
Rob Landley61516582011-05-06 09:27:36 -07003961F: Documentation/virtual/lguest/
Joe Perches679655d2009-04-07 20:44:32 -07003962F: arch/x86/lguest/
3963F: drivers/lguest/
3964F: include/linux/lguest*.h
3965F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003966
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07003968M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969W: http://www.ibm.com/linux/ltc/projects/ppc
3970S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00003971F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003973LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07003974M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
3975M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003977L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003978Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07003979T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00003981F: Documentation/powerpc/
3982F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983
3984LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07003985M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003987L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003989F: arch/powerpc/platforms/powermac/
3990F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991
Grant Likely77a76362008-07-12 12:11:43 -06003992LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00003993M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003994L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00003995T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003997F: arch/powerpc/platforms/512x/
3998F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999
4000LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004001M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004002M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004004L: linuxppc-dev@lists.ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04004005T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004007F: arch/powerpc/platforms/40x/
4008F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009
Grant Likely260c02a2007-10-02 12:15:34 +10004010LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004011M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004012W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004013L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004014T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004016F: arch/powerpc/*/*virtex*
4017F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018
Tom Rinie93adf12005-07-26 12:49:53 -07004019LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004020M: Vitaly Bordug <vitb@kernel.crashing.org>
4021M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004022W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004023L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004024S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004025F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004026
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004028M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004029W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004030L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004031S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004032F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004033F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034
Olof Johanssonab06ff32006-09-06 14:44:54 -05004035LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004036M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004037L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004038S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004039F: arch/powerpc/platforms/pasemi/
4040F: drivers/*/*pasemi*
4041F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004042
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004044M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004045L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046S: Supported
4047
Harry Weia23ce6d2011-02-11 16:52:20 +01004048LIS3LV02D ACCELEROMETER DRIVER
4049M: Eric Piel <eric.piel@tremplin-utc.net>
4050S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004051F: Documentation/misc-devices/lis3lv02d
4052F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004053F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004054
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004055LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004056M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004058F: include/linux/llc.h
4059F: include/net/llc*
4060F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004061
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004062LM73 HARDWARE MONITOR DRIVER
4063M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4064L: lm-sensors@lm-sensors.org
4065S: Maintained
4066F: drivers/hwmon/lm73.c
4067
Jean Delvare156e2d12011-07-25 21:46:11 +02004068LM78 HARDWARE MONITOR DRIVER
4069M: Jean Delvare <khali@linux-fr.org>
4070L: lm-sensors@lm-sensors.org
4071S: Maintained
4072F: Documentation/hwmon/lm78
4073F: drivers/hwmon/lm78.c
4074
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004076M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004077L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004079F: Documentation/hwmon/lm83
4080F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081
4082LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004083M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004084L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004086F: Documentation/hwmon/lm90
4087F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004089LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004090M: Peter Zijlstra <peterz@infradead.org>
4091M: Ingo Molnar <mingo@redhat.com>
Joe Perches54e58812009-04-07 21:08:10 -07004092T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004094F: Documentation/lockdep*.txt
4095F: Documentation/lockstat.txt
4096F: include/linux/lockdep.h
4097F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004098
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004099LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004100M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004101L: linux-ntfs-dev@lists.sourceforge.net
4102W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004104F: Documentation/ldm.txt
4105F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106
Joern Engelef6ada32009-11-20 22:17:12 +01004107LogFS
4108M: Joern Engel <joern@logfs.org>
4109L: logfs@logfs.org
4110W: logfs.org
4111S: Maintained
4112F: fs/logfs/
4113
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004114LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004115M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004116M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004117L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004118L: linux-scsi@vger.kernel.org
4119W: http://www.lsilogic.com/support
4120S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004121F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004122
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004124M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125L: linux-scsi@vger.kernel.org
4126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004127F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128
Guenter Roecke5f5c992010-06-25 11:59:54 -07004129LTC4261 HARDWARE MONITOR DRIVER
4130M: Guenter Roeck <linux@roeck-us.net>
4131L: lm-sensors@lm-sensors.org
4132S: Maintained
4133F: Documentation/hwmon/ltc4261
4134F: drivers/hwmon/ltc4261.c
4135
Mike Frysinger81365c32008-10-29 14:01:12 -07004136LTP (Linux Test Project)
Rishikesh763458e2010-02-10 13:56:40 -08004137M: Rishikesh K Rajak <risrajak@linux.vnet.ibm.com>
4138M: Garrett Cooper <yanegomi@gmail.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004139M: Mike Frysinger <vapier@gentoo.org>
4140M: Subrata Modak <subrata@linux.vnet.ibm.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004141L: ltp-list@lists.sourceforge.net (subscribers-only)
4142W: http://ltp.sourceforge.net/
Subrata Modaka5fe2472010-08-09 17:20:50 -07004143T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004144S: Maintained
4145
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004146M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004147M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004148L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004149L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4150W: http://www.linux-m32r.org/
4151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004152F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004153
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004155M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156L: linux-m68k@lists.linux-m68k.org
4157W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004158T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004160F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004161F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162
4163M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004164M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004166L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004168F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169
4170M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004171M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172W: http://www.tazenda.demon.co.uk/phil/linux-hp
4173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004174F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175
Jiri Benc64a327a2007-05-05 11:47:08 -07004176MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004177M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004178L: linux-wireless@vger.kernel.org
4179W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004180T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004182F: Documentation/networking/mac80211-injection.txt
4183F: include/net/mac80211.h
4184F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004185
Stefano Brivio1036d862007-12-23 04:46:27 +01004186MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004187M: Stefano Brivio <stefano.brivio@polimi.it>
4188M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004189L: linux-wireless@vger.kernel.org
4190W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07004191T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004193F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004194
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004195MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004196M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004197L: netdev@vger.kernel.org
4198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004199F: drivers/net/macvlan.c
4200F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004201
Michael Kerriskfaf16682005-07-31 22:34:47 -07004202MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004203M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004204W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004205L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004206S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004207
Stefano Brivio74cda162007-11-19 20:27:46 +01004208MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004209M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004210L: libertas-dev@lists.infradead.org
4211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004212F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004213
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004214MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004215M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004216L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004217S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004218F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004219F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220
Bing Zhaofcad5842011-07-13 13:11:58 -07004221MARVELL MWIFIEX WIRELESS DRIVER
4222M: Bing Zhao <bzhao@marvell.com>
4223L: linux-wireless@vger.kernel.org
4224S: Maintained
4225F: drivers/net/wireless/mwifiex/
4226
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004227MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004228M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004229L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004230S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004231F: drivers/net/wireless/mwl8k.c
4232
Pierre Ossman2a695672009-03-16 19:52:26 +01004233MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004234M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004235S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004236F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004237
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004238MARVELL YUKON / SYSKONNECT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004239M: Mirko Lindner <mlindner@syskonnect.de>
4240M: Ralph Roesler <rroesler@syskonnect.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004241W: http://www.syskonnect.com
4242S: Supported
4243
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004245L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004246S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004247F: drivers/video/matrox/matroxfb_*
4248F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249
David George731b4ca2011-06-02 08:43:45 -07004250MAX1668 TEMPERATURE SENSOR DRIVER
4251M: "David George" <david.george@ska.ac.za>
4252L: lm-sensors@lm-sensors.org
4253S: Maintained
4254F: Documentation/hwmon/max1668
4255F: drivers/hwmon/max1668.c
4256
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004257MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004258M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004259L: lm-sensors@lm-sensors.org
4260S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004261F: Documentation/hwmon/max6650
4262F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004263
Joe Perches127c49a2009-04-08 08:34:04 -07004264MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07004265M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07004266P: LinuxTV.org Project
4267L: linux-media@vger.kernel.org
4268W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004269Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches127c49a2009-04-08 08:34:04 -07004270T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
4271S: Maintained
4272F: Documentation/dvb/
4273F: Documentation/video4linux/
4274F: drivers/media/
4275F: include/media/
4276F: include/linux/dvb/
4277F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004278
4279MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004280M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004281L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004282W: http://megaraid.lsilogic.com
4283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004284F: Documentation/scsi/megaraid.txt
4285F: drivers/scsi/megaraid.*
4286F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004287
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004288MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290W: http://www.linux-mm.org
4291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004292F: include/linux/mm.h
4293F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004294
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004295MEMORY RESOURCE CONTROLLER
Balbir Singh185e5952011-06-15 15:08:30 -07004296M: Balbir Singh <bsingharora@gmail.com>
KAMEZAWA Hiroyukia38374b2010-03-10 15:22:40 -08004297M: Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp>
Joe Perches8b58be82009-07-29 15:04:30 -07004298M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004299L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004301F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004302F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004303
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004305M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004307W: http://www.linux-mtd.infradead.org/
4308Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004309T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004311F: drivers/mtd/
4312F: include/linux/mtd/
4313F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314
Michal Simekc6375b02009-03-27 14:25:52 +01004315MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004316M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02004317L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01004318W: http://www.monstr.eu/fdt/
4319T: git git://git.monstr.eu/linux-2.6-microblaze.git
4320S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004321F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322
4323MICROTEK X6 SCANNER
Joe Perches8b58be82009-07-29 15:04:30 -07004324M: Oliver Neukum <oliver@neukum.name>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004326F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327
4328MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004329M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01004331W: http://www.linux-mips.org/
Joe Perches54e58812009-04-07 21:08:10 -07004332T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01004333Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00004334S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004335F: Documentation/mips/
4336F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337
4338MISCELLANEOUS MCA-SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004339M: James Bottomley <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004341F: Documentation/ia64/mca.txt
4342F: Documentation/mca.txt
4343F: drivers/mca/
4344F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345
4346MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004347M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004349F: include/linux/module.h
4350F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351
4352MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08004354S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004355F: Documentation/video4linux/meye.txt
4356F: drivers/media/video/meye.*
4357F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358
Pavel Pisac58ff042007-05-16 01:10:41 +02004359MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004360M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004361L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02004362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004363F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02004364
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365MOUSE AND MISC DEVICES [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07004366M: Alessandro Rubini <rubini@ipvvis.unipv.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004368F: drivers/input/mouse/
4369F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370
Jiri Slabyb9705b62008-04-30 00:53:48 -07004371MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07004372M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08004373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004374F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07004375F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08004376
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004377MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07004378M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004379L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004381F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004382
Anisse Astier0f1006b2009-12-17 11:28:49 +01004383MSI WMI SUPPORT
4384M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05004385L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01004386S: Supported
4387F: drivers/platform/x86/msi-wmi.c
4388
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004389MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07004390M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07004391T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004392S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004393F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004394
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02004395MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04004396M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07004397L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04004398T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
4399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004400F: drivers/mmc/
4401F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01004402
David Brownell15a05802007-08-08 09:12:54 -07004403MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06004404S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004405F: drivers/mmc/host/mmc_spi.c
4406F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004407
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004409M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004411F: Documentation/sound/oss/MultiSound
4412F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413
Jiri Slabyd7354102006-12-08 02:38:35 -08004414MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02004415S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07004416F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07004417F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004418
Felipe Balbi550a7372008-07-24 12:27:36 +03004419MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03004420M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004421L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004422T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004424F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004425
Brice Goglin2d3cf582008-05-17 12:45:36 +02004426MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Jon Mason1049f642011-06-27 05:05:08 +00004427M: Jon Mason <mason@myri.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004428M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02004429L: netdev@vger.kernel.org
4430W: http://www.myri.com/scs/download-Myri10GE.html
4431S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07004432F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004433
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434NATSEMI ETHERNET DRIVER (DP8381x)
Joe Perches8b58be82009-07-29 15:04:30 -07004435M: Tim Hockin <thockin@hockin.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07004437F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438
Daniel Mack23dc05a2011-05-18 11:28:38 +02004439NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
4440M: Daniel Mack <zonque@gmail.com>
4441S: Maintained
4442L: alsa-devel@alsa-project.org
4443W: http://www.native-instruments.com
4444F: sound/usb/caiaq/
4445
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07004447M: Petr Vandrovec <petr@vandrovec.name>
4448S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004449F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450
4451NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07004452M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453L: linux-scsi@vger.kernel.org
4454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004455F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004457NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07004458M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004459L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00004460W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004461S: Supported
4462F: drivers/infiniband/hw/nes/
4463
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004464NETEM NETWORK EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07004465M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07004466L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004468F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004469
Jon Masonb2f5a052010-07-15 08:47:27 +00004470NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00004471M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07004472L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004473W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
4474W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07004475S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004476F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00004477F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07004478F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07004479
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481P: Harald Welte
4482P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01004483M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004484M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07004485L: netfilter-devel@vger.kernel.org
4486L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004487L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488W: http://www.netfilter.org/
4489W: http://www.iptables.org/
Patrick McHardy768b1032011-08-30 16:33:04 +02004490T: git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-2.6.git
4491T: git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004493F: include/linux/netfilter*
4494F: include/linux/netfilter/
4495F: include/net/netfilter/
4496F: net/*/netfilter.c
4497F: net/*/netfilter/
4498F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499
Paul Moore4cc67732006-09-25 15:57:13 -07004500NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00004501M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07004502W: http://netlabel.sf.net
4503L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00004504S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004505F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004506F: include/net/netlabel.h
4507F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004508
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004510M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004512W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004514F: include/linux/netrom.h
4515F: include/net/netrom.h
4516F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004518NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004519M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004521F: Documentation/blockdev/nbd.txt
4522F: drivers/block/nbd.c
4523F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524
Neil Horman6e436502009-10-05 03:56:55 +00004525NETWORK DROP MONITOR
4526M: Neil Horman <nhorman@tuxdriver.com>
4527L: netdev@vger.kernel.org
4528S: Maintained
4529W: https://fedorahosted.org/dropwatch/
4530F: net/core/drop_monitor.c
4531
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07004533M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004534L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004535W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00004536W: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00004537T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
4538T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004540F: net/
4541F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00004542F: include/linux/in.h
4543F: include/linux/net.h
4544F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545
4546NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07004547M: "David S. Miller" <davem@davemloft.net>
4548M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07004549M: James Morris <jmorris@namei.org>
4550M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
4551M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004552L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004553T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004555F: net/ipv4/
4556F: net/ipv6/
4557F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00004558F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559
James Morris10e2ff12007-08-25 14:41:28 -07004560NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00004561M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07004562L: netdev@vger.kernel.org
4563S: Maintained
4564
John W. Linville29f8f632006-01-18 14:52:48 -08004565NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07004566M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08004567L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004568Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches54e58812009-04-07 21:08:10 -07004569T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08004570S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07004571F: net/mac80211/
4572F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07004573F: net/wireless/
4574F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07004575F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07004576F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07004577F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08004578
Joe Perches788873a2009-04-16 09:38:45 +00004579NETWORKING DRIVERS
4580L: netdev@vger.kernel.org
4581W: http://www.linuxfoundation.org/en/Net
4582T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Joe Perches3af26f52010-02-08 22:42:40 -08004583T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git
Joe Perches788873a2009-04-16 09:38:45 +00004584S: Odd Fixes
4585F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00004586F: include/linux/if_*
4587F: include/linux/*device.h
Joe Perches788873a2009-04-16 09:38:45 +00004588
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004589NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07004590M: Sony Chacko <sony.chacko@qlogic.com>
4591M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004592L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00004593W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004594S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07004595F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004596
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03004597NFC SUBSYSTEM
4598M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
4599M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
4600M: Samuel Ortiz <sameo@linux.intel.com>
4601L: linux-wireless@vger.kernel.org
4602S: Maintained
4603F: net/nfc/
4604F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03004605F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03004606F: drivers/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004608NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07004609M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05004610L: linux-nfs@vger.kernel.org
4611W: http://client.linux-nfs.org
4612T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004614F: fs/lockd/
4615F: fs/nfs/
4616F: fs/nfs_common/
4617F: net/sunrpc/
4618F: include/linux/lockd/
4619F: include/linux/nfs*
4620F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621
4622NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004623M: Jan-Pascal van Best <janpascal@vanbest.org>
4624M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004625L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07004627F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004629NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004630M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09004631L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004632W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09004633T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004634S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004635F: Documentation/filesystems/nilfs2.txt
4636F: fs/nilfs2/
4637F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004638
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004640M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004643F: Documentation/scsi/NinjaSCSI.txt
4644F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645
4646NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004647M: GOTO Masanori <gotom@debian.or.jp>
4648M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004651F: Documentation/scsi/NinjaSCSI.txt
4652F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00004655M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00004657W: http://www.tuxera.com/
Joe Perches54e58812009-04-07 21:08:10 -07004658T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00004659S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004660F: Documentation/filesystems/ntfs.txt
4661F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004663NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004664M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004665L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004667F: drivers/video/riva/
4668F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669
Tony Lindgrenf5525782009-05-28 13:23:53 -07004670OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07004671M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004672L: linux-omap@vger.kernel.org
4673W: http://www.muru.com/linux/omap/
4674W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08004675Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02004676T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07004677S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07004678F: arch/arm/*omap*/
Tony Lindgrenf5525782009-05-28 13:23:53 -07004679
4680OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004681M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004682L: linux-omap@vger.kernel.org
4683S: Maintained
4684F: arch/arm/*omap*/*clock*
4685
4686OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08004687M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004688L: linux-omap@vger.kernel.org
4689S: Maintained
4690F: arch/arm/*omap*/*pm*
4691
Paul Walmsley692ab1f2011-03-09 18:44:28 -07004692OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
4693M: Rajendra Nayak <rnayak@ti.com>
4694M: Paul Walmsley <paul@pwsan.com>
4695L: linux-omap@vger.kernel.org
4696S: Maintained
4697F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
4698F: arch/arm/mach-omap2/powerdomain44xx.c
4699F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
4700F: arch/arm/mach-omap2/clockdomain44xx.c
4701
Tony Lindgrenf5525782009-05-28 13:23:53 -07004702OMAP AUDIO SUPPORT
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03004703M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004704L: alsa-devel@alsa-project.org (subscribers-only)
4705L: linux-omap@vger.kernel.org
4706S: Maintained
4707F: sound/soc/omap/
4708
4709OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02004710M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004711L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07004712L: linux-omap@vger.kernel.org
4713S: Maintained
4714F: drivers/video/omap/
4715
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004716OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02004717M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004718L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004719L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004720S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004721F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004722F: Documentation/arm/OMAP/DSS
4723
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03004724OMAP HARDWARE SPINLOCK SUPPORT
4725M: Ohad Ben-Cohen <ohad@wizery.com>
4726L: linux-omap@vger.kernel.org
4727S: Maintained
4728F: drivers/hwspinlock/omap_hwspinlock.c
4729F: arch/arm/mach-omap2/hwspinlock.c
4730
Tony Lindgrenf5525782009-05-28 13:23:53 -07004731OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004732M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004733L: linux-omap@vger.kernel.org
4734S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07004735F: drivers/mmc/host/omap.c
4736
4737OMAP HS MMC SUPPORT
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07004738L: linux-omap@vger.kernel.org
Madhusudhan Chikkature0500f10c2011-07-01 10:36:42 -07004739S: Orphan
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07004740F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07004741
4742OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004743M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004744S: Maintained
4745F: drivers/char/hw_random/omap-rng.c
4746
Paul Walmsleyf400c822010-12-06 19:08:54 -07004747OMAP HWMOD SUPPORT
4748M: Benoît Cousson <b-cousson@ti.com>
4749M: Paul Walmsley <paul@pwsan.com>
4750L: linux-omap@vger.kernel.org
4751S: Maintained
4752F: arch/arm/mach-omap2/omap_hwmod.c
4753F: arch/arm/plat-omap/include/plat/omap_hwmod.h
4754
4755OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
4756M: Benoît Cousson <b-cousson@ti.com>
4757L: linux-omap@vger.kernel.org
4758S: Maintained
4759F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
4760
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03004761OMAP IMAGE SIGNAL PROCESSOR (ISP)
4762M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4763L: linux-media@vger.kernel.org
4764S: Maintained
4765F: drivers/media/video/omap3isp/*
4766
Tony Lindgrenf5525782009-05-28 13:23:53 -07004767OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03004768M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004769L: linux-usb@vger.kernel.org
4770L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004771T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07004772S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07004773F: drivers/usb/*/*omap*
4774F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07004775
Bob Copeland0ad122d2008-07-25 19:45:18 -07004776OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004777M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07004778L: linux-karma-devel@lists.sourceforge.net
4779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004780F: Documentation/filesystems/omfs.txt
4781F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004782
Harald Weltec1986ee2005-11-13 16:06:29 -08004783OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004784M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08004785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004786F: drivers/char/pcmcia/cm4000_cs.c
4787F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004788
Harald Welte77c44ab2005-11-13 16:06:26 -08004789OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004790M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08004791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004792F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004793
Jonathan Corbet77d51402007-03-22 19:44:17 -03004794OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004795M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004796L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004797T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004799F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004800
Thomas Gleixner431bca72007-05-02 09:31:35 +02004801ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004802M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02004803L: linux-mtd@lists.infradead.org
4804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004805F: drivers/mtd/onenand/
4806F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004807
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004809M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810L: osst-users@lists.sourceforge.net
4811L: linux-scsi@vger.kernel.org
4812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004813F: drivers/scsi/osst*
4814F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004816OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004817M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01004818L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004820F: Documentation/i2c/busses/i2c-ocores
4821F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004822
Grant Likely860c44c2009-10-26 16:49:49 -07004823OPEN FIRMWARE AND FLATTENED DEVICE TREE
4824M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05004825M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01004826L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07004827W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06004828T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07004829S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05004830F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07004831F: drivers/of
4832F: include/linux/of*.h
4833K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09004834K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07004835
Jonas Bonn19f9d392011-06-04 22:00:38 +03004836OPENRISC ARCHITECTURE
4837M: Jonas Bonn <jonas@southpole.se>
4838W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02004839L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03004840S: Maintained
4841T: git git://openrisc.net/~jonas/linux
4842F: arch/openrisc
4843
Clemens Ladischaf399172011-01-10 16:32:54 +01004844OPL4 DRIVER
4845M: Clemens Ladisch <clemens@ladisch.de>
4846L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4847T: git git://git.alsa-project.org/alsa-kernel.git
4848S: Maintained
4849F: sound/drivers/opl4/
4850
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07004852M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853L: oprofile-list@lists.sf.net
4854S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02004855F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07004856F: arch/*/oprofile/
4857F: drivers/oprofile/
4858F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004860ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004861M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08004862M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004863L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4864W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07004865T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004866S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004867F: Documentation/filesystems/ocfs2.txt
4868F: Documentation/filesystems/dlmfs.txt
4869F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004870
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07004872L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004873L: orinoco-users@lists.sourceforge.net
4874L: orinoco-devel@lists.sourceforge.net
David Kilroy3a59bab2010-08-21 12:13:45 +01004875W: http://linuxwireless.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07004876W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01004877S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004878F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004880OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004881M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07004882M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02004883L: osd-dev@open-osd.org
4884W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004885T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004886S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004887F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07004888F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004889F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02004890
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004891P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02004892M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004893L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02004894W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004896F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004897
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004898PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004899M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004900L: netdev@vger.kernel.org
4901S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07004902F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004903
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004904PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004905M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01004906L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004908F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004909
Steffen Klassert48fc2672010-08-13 10:10:46 -04004910PADATA PARALLEL EXECUTION MECHANISM
4911M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04004912L: linux-crypto@vger.kernel.org
4913S: Maintained
4914F: kernel/padata.c
4915F: include/linux/padata.h
4916F: Documentation/padata.txt
4917
Harald Welte709ee532008-09-23 17:46:57 +02004918PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004919M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05004920L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02004921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004922F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004923
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01004924PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07004925M: David Howells <dhowells@redhat.com>
4926M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01004927L: linux-am33-list@redhat.com (moderated for non-subscribers)
4928W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4929S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004930F: Documentation/mn10300/
4931F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004932
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004934L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004935S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004936F: drivers/parport/
4937F: include/linux/parport*.h
4938F: drivers/char/ppdev.c
4939F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004941PARAVIRT_OPS INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07004942M: Jeremy Fitzhardinge <jeremy@xensource.com>
4943M: Chris Wright <chrisw@sous-sol.org>
4944M: Alok Kataria <akataria@vmware.com>
4945M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00004946L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004947S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004948F: Documentation/ia64/paravirt_ops.txt
4949F: arch/*/kernel/paravirt*
4950F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004951
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07004953M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004954L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955W: http://www.torque.net/linux-pp.html
4956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004957F: Documentation/blockdev/paride.txt
4958F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959
4960PARISC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004961M: Kyle McMartin <kyle@mcmartin.ca>
4962M: Helge Deller <deller@gmx.de>
James Bottomleyb8828772009-08-04 23:59:55 +00004963M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004964L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004966Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches54e58812009-04-07 21:08:10 -07004967T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004969F: arch/parisc/
4970F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971
Jim Cromie1662d322006-10-06 00:43:59 -07004972PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004973M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004974L: lm-sensors@lm-sensors.org
4975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004976F: Documentation/hwmon/pc87360
4977F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004978
4979PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004980M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004981S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004982F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004983
Jean Delvare1ad107f2010-08-14 21:09:00 +02004984PC87427 HARDWARE MONITORING DRIVER
4985M: Jean Delvare <khali@linux-fr.org>
4986L: lm-sensors@lm-sensors.org
4987S: Maintained
4988F: Documentation/hwmon/pc87427
4989F: drivers/hwmon/pc87427.c
4990
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004991PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004992M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004993S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004994F: drivers/leds/leds-pca9532.c
4995F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004996
Guenter Roeck5ce914a2010-10-24 18:16:59 +02004997PCA9541 I2C BUS MASTER SELECTOR DRIVER
4998M: Guenter Roeck <guenter.roeck@ericsson.com>
4999L: linux-i2c@vger.kernel.org
5000S: Maintained
5001F: drivers/i2c/muxes/pca9541.c
5002
Wolfram Sanga1867d32009-09-18 22:45:51 +02005003PCA9564/PCA9665 I2C BUS DRIVER
5004M: Wolfram Sang <w.sang@pengutronix.de>
5005L: linux-i2c@vger.kernel.org
5006S: Maintained
5007F: drivers/i2c/algos/i2c-algo-pca.c
5008F: drivers/i2c/busses/i2c-pca-*
5009F: include/linux/i2c-algo-pca.h
5010F: include/linux/i2c-pca-platform.h
5011
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005012PCI ERROR RECOVERY
Linas Vepstas03535ab2011-10-31 17:11:38 -07005013M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005014L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005015S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005016F: Documentation/PCI/pci-error-recovery.txt
5017F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005018
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019PCI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005020M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes29054742008-05-03 08:35:49 -07005021L: linux-pci@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005022Q: http://patchwork.kernel.org/project/linux-pci/list/
Joe Perches54e58812009-04-07 21:08:10 -07005023T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005025F: Documentation/PCI/
5026F: drivers/pci/
5027F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028
Jesse Barnesbe3652b2009-09-17 10:01:07 -07005029PCI HOTPLUG
5030M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07005031L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05005032S: Supported
Jesse Barnesbe3652b2009-09-17 10:01:07 -07005033F: drivers/pci/hotplug
Kristen Accardi8cf4c192005-08-16 15:16:10 -07005034
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005036P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005037L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005038W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005039T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005041F: Documentation/pcmcia/
5042F: drivers/pcmcia/
5043F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044
5045PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005046M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005047L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005049F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050
Steffen Klassert48fc2672010-08-13 10:10:46 -04005051PCRYPT PARALLEL CRYPTO ENGINE
5052M: Steffen Klassert <steffen.klassert@secunet.com>
5053L: linux-crypto@vger.kernel.org
5054S: Maintained
5055F: crypto/pcrypt.c
5056F: include/crypto/pcrypt.h
5057
Tejun Heoe72df0b2010-12-10 17:02:49 +01005058PER-CPU MEMORY ALLOCATOR
5059M: Tejun Heo <tj@kernel.org>
5060M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005061T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5062S: Maintained
5063F: include/linux/percpu*.h
5064F: mm/percpu*.c
5065F: arch/*/include/asm/percpu.h
5066
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005067PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005068M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005070F: include/linux/delayacct.h
5071F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005072
Ingo Molnar57c0c152009-09-21 12:20:38 +02005073PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005074M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5075M: Paul Mackerras <paulus@samba.org>
5076M: Ingo Molnar <mingo@elte.hu>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005077M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005078S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005079F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005080F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005081F: arch/*/kernel/perf_event*.c
5082F: arch/*/kernel/*/perf_event*.c
5083F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005084F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005085F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005086F: arch/*/kernel/perf_callchain.c
5087F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005088
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005089PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005090M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005091L: linux-abi-devel@lists.sourceforge.net
5092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005093F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005094
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005095PHONET PROTOCOL
5096M: Remi Denis-Courmont <remi.denis-courmont@nokia.com>
5097S: Supported
5098F: Documentation/networking/phonet.txt
5099F: include/linux/phonet.h
5100F: include/net/phonet/
5101F: net/phonet/
5102
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005104M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105L: linux-mtd@lists.infradead.org
5106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005107F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108
Linus Walleij2744e8a2011-05-02 20:50:54 +02005109PIN CONTROL SUBSYSTEM
5110M: Linus Walleij <linus.walleij@linaro.org>
5111S: Maintained
5112F: drivers/pinmux/
5113
Peter Osterlund249a6772005-09-27 21:45:30 -07005114PKTCDVD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005115M: Peter Osterlund <petero2@telia.com>
Peter Osterlund249a6772005-09-27 21:45:30 -07005116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005117F: drivers/block/pktcdvd.c
5118F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005119
GuanXuetaob31d8272011-01-16 00:35:49 +08005120PKUNITY SOC DRIVERS
5121M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5122W: http://mprc.pku.edu.cn/~guanxuetao/linux
5123S: Maintained
5124T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5125F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005126F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005127F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005128F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005129
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005130PMBUS HARDWARE MONITORING DRIVERS
5131M: Guenter Roeck <guenter.roeck@ericsson.com>
5132L: lm-sensors@lm-sensors.org
5133W: http://www.lm-sensors.org/
5134W: http://www.roeck-us.net/linux/drivers/
5135T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5136S: Maintained
5137F: Documentation/hwmon/pmbus
5138F: drivers/hwmon/pmbus/
5139F: include/linux/i2c/pmbus.h
5140
Anil Ravindranath89a36812009-08-25 17:35:18 -07005141PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005142M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005143L: linux-scsi@vger.kernel.org
5144W: http://www.pmc-sierra.com/
5145S: Supported
5146F: drivers/scsi/pmcraid.*
5147
jack wangdbf9bfe2009-10-14 16:19:21 +08005148PMC SIERRA PM8001 DRIVER
5149M: jack_wang@usish.com
5150M: lindar_liu@usish.com
5151L: linux-scsi@vger.kernel.org
5152S: Supported
5153F: drivers/scsi/pm8001/
5154
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005156M: Thomas Gleixner <tglx@linutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005158F: fs/timerfd.c
5159F: include/linux/timer*
5160F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161
Anton Vorontsov3be86142007-07-15 04:43:36 +04005162POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005163M: Anton Vorontsov <cbou@mail.ru>
5164M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005165T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005167F: include/linux/power_supply.h
5168F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04005169
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005171M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005172M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005174F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175
Vitaly Wool999445d2007-01-04 13:07:03 +01005176PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005177M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005178L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005180F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005181
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005183M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184L: linux-ppp@vger.kernel.org
5185S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005186F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187
5188PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005189M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005191F: net/atm/pppoatm.c
5192F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193
5194PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005195M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005197F: drivers/net/ppp/pppoe.c
5198F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199
James Chapmana6d23702007-06-27 15:53:17 -07005200PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005201M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005202S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005203F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005204F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005205
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005206PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005207M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005208W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5209L: linuxpps@ml.enneenne.com (subscribers-only)
5210S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005211F: Documentation/pps/
5212F: drivers/pps/
5213F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005214
Harry Wei71a6d0a2011-05-11 15:13:33 -07005215PPTP DRIVER
5216M: Dmitry Kozlov <xeb@mail.ru>
5217L: netdev@vger.kernel.org
5218S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005219F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005220W: http://sourceforge.net/projects/accel-pptp
5221
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005223M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224L: kpreempt-tech@lists.sourceforge.net
5225W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5226S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005227F: Documentation/preempt-locking.txt
5228F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229
5230PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005231M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005232L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005233W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005234S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005235F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005237PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005238M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005239L: linux-ide@vger.kernel.org
5240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005241F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005242
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005243PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005244M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005245L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005246L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005247S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07005248F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005249
Geoff Levandf58a9d12006-11-23 00:46:51 +01005250PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005251M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005252L: linuxppc-dev@lists.ozlabs.org
5253L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005255F: arch/powerpc/boot/ps3*
5256F: arch/powerpc/include/asm/lv1call.h
5257F: arch/powerpc/include/asm/ps3*.h
5258F: arch/powerpc/platforms/ps3/
5259F: drivers/*/ps3*
5260F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00005261F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07005262F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00005263F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01005264
Jim Pariscffb4add2009-01-06 11:32:10 +00005265PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005266M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005267L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00005268S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07005269F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00005270
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005271PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005272M: Roland McGrath <roland@redhat.com>
5273M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005274S: Maintained
5275F: include/asm-generic/syscall.h
5276F: include/linux/ptrace.h
5277F: include/linux/regset.h
5278F: include/linux/tracehook.h
5279F: kernel/ptrace.c
5280
Michael Krufky83202042006-07-03 00:24:18 -07005281PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005282M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03005283L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005284L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07005285W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07005286T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07005287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005288F: Documentation/video4linux/README.pvrusb2
5289F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07005290
Eric Miao30ec2612008-06-12 15:21:41 -07005291PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005292M: Eric Miao <eric.y.miao@gmail.com>
5293M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005294L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005296F: arch/arm/mach-pxa/
5297F: drivers/pcmcia/pxa2xx*
5298F: drivers/spi/pxa2xx*
5299F: drivers/usb/gadget/pxa2*
5300F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01005301F: sound/arm/pxa*
5302F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08005304PXA168 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005305M: Eric Miao <eric.y.miao@gmail.com>
5306M: Jason Chagas <jason.chagas@marvell.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005307L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -07005308T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08005309S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08005310
Eric Miao5fa82eb2009-03-20 12:52:24 +08005311PXA910 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005312M: Eric Miao <eric.y.miao@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005313L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -07005314T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08005315S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08005316
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005317MMP2 SUPPORT (aka ARMADA610)
5318M: Haojian Zhuang <haojian.zhuang@marvell.com>
5319M: Eric Miao <eric.y.miao@gmail.com>
5320L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5321T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
5322S: Maintained
5323
Pierre Ossman272f1332007-05-14 21:25:26 +02005324PXA MMCI DRIVER
5325S: Orphan
5326
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005327PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005328M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005329L: rtc-linux@googlegroups.com
5330S: Maintained
5331
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005332QIB DRIVER
5333M: Mike Marciniszyn <infinipath@qlogic.com>
5334L: linux-rdma@vger.kernel.org
5335S: Supported
5336F: drivers/infiniband/hw/qib/
5337
Jes Sorensen5e9772b2010-06-30 15:37:38 +02005338QLOGIC QLA1280 SCSI DRIVER
5339M: Michael Reed <mdr@sgi.com>
5340L: linux-scsi@vger.kernel.org
5341S: Maintained
5342F: drivers/scsi/qla1280.[ch]
5343
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005345M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08005346M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347L: linux-scsi@vger.kernel.org
5348S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005349F: Documentation/scsi/LICENSE.qla2xxx
5350F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351
Ravi Anand883c98f2010-04-28 11:45:49 +05305352QLOGIC QLA4XXX iSCSI DRIVER
5353M: Ravi Anand <ravi.anand@qlogic.com>
5354M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
5355M: iscsi-driver@qlogic.com
5356L: linux-scsi@vger.kernel.org
5357S: Supported
5358F: drivers/scsi/qla4xxx/
5359
Ron Mercer5a4faa872006-07-25 00:40:21 -07005360QLOGIC QLA3XXX NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005361M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07005362M: linux-driver@qlogic.com
5363L: netdev@vger.kernel.org
5364S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005365F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005366F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07005367
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005368QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Amit Kumar Salecha7b39f902010-05-18 22:57:36 -07005369M: Anirban Chakraborty <anirban.chakraborty@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07005370M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005371M: linux-driver@qlogic.com
5372L: netdev@vger.kernel.org
5373S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005374F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005375
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005376QLOGIC QLGE 10Gb ETHERNET DRIVER
Jitendra Kalsariab2d2ccf2011-08-20 10:33:34 -07005377M: Anirban Chakraborty <anirban.chakraborty@qlogic.com>
Ron Mercerb997d792011-06-22 06:35:45 +00005378M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005379M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07005380M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005381L: netdev@vger.kernel.org
5382S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005383F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005384
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005386M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387W: http://www.alarsen.net/linux/qnx4fs/
5388S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005389F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07005390F: include/linux/qnx4_fs.h
5391F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392
Richard Kuo4f4567c2011-10-31 18:56:38 -05005393QUALCOMM HEXAGON ARCHITECTURE
5394M: Richard Kuo <rkuo@codeaurora.org>
5395L: linux-hexagon@vger.kernel.org
5396S: Supported
5397F: arch/hexagon/
5398
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005399RADOS BLOCK DEVICE (RBD)
5400F: include/linux/qnxtypes.h
5401M: Yehuda Sadeh <yehuda@hq.newdream.net>
5402M: Sage Weil <sage@newdream.net>
5403M: ceph-devel@vger.kernel.org
5404S: Supported
5405F: drivers/block/rbd.c
5406F: drivers/block/rbd_types.h
5407
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005409M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005410L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005412F: drivers/video/aty/radeon*
5413F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414
5415RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005416M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005417L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005419F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420
Randy Dunlape7839f22008-10-12 16:11:45 -07005421RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005422P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01005423M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01005424M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01005425M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005426L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01005427L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005428W: http://rt2x00.serialmonkey.com/
5429S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07005430T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005431F: drivers/net/wireless/rt2x00/
5432
Nick Piggin9db55792008-02-08 04:19:49 -08005433RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10005434M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08005435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005436F: Documentation/blockdev/ramdisk.txt
5437F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08005438
Matt Mackall9e95ce22005-04-16 15:25:56 -07005439RANDOM NUMBER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005440M: Matt Mackall <mpm@selenic.com>
Matt Mackall9e95ce22005-04-16 15:25:56 -07005441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005442F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07005443
Matt Porter394b7012005-11-07 01:00:15 -08005444RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005445M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08005446M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08005447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005448F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08005449
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005450RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005451L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04005452S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005453F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005454
5455RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005456M: Josh Triplett <josh@freedesktop.org>
5457M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08005458S: Supported
Joe Perches1fa7e542010-10-26 14:23:02 -07005459T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-2.6-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07005460F: Documentation/RCU/torture.txt
5461F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005462
Florian Fainellic1f766b2008-02-06 22:39:44 +01005463RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07005464M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01005465S: Maintained
5466
Florian Fainellidb17f392007-12-19 11:30:30 +01005467RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005468M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01005469L: netdev@vger.kernel.org
5470S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07005471F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01005472
Andy Grovera09ed662009-02-24 15:30:41 +00005473RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05005474M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00005475L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00005476S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005477F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00005478
Josh Triplett595182b2006-10-04 02:17:21 -07005479READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07005480M: Dipankar Sarma <dipankar@in.ibm.com>
5481M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Josh Triplett595182b2006-10-04 02:17:21 -07005482W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07005483S: Supported
Joe Perches1fa7e542010-10-26 14:23:02 -07005484T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-2.6-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08005485F: Documentation/RCU/
5486F: include/linux/rcu*
5487F: include/linux/srcu*
5488F: kernel/rcu*
5489F: kernel/srcu*
5490X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07005491
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08005492REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005493M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08005494L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08005495Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08005496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005497F: Documentation/rtc.txt
5498F: drivers/rtc/
5499F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08005500
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07005502L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005504F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505
Mark Brownb83a3132011-05-11 19:59:58 +02005506REGISTER MAP ABSTRACTION
5507M: Mark Brown <broonie@opensource.wolfsonmicro.com>
5508T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
5509S: Supported
5510F: drivers/base/regmap/
5511F: include/linux/regmap.h
5512
Ivo van Doorne08976452008-04-12 19:23:55 +02005513RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07005514M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02005515L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02005516S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08005517F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07005518F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02005519
Maxim Levitsky67e054e2010-02-22 20:39:42 +02005520RICOH SMARTMEDIA/XD DRIVER
5521M: Maxim Levitsky <maximlevitsky@gmail.com>
5522S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07005523F: drivers/mtd/nand/r852.c
5524F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02005525
Maxim Levitsky92634122011-03-25 01:56:59 -07005526RICOH R5C592 MEMORYSTICK DRIVER
5527M: Maxim Levitsky <maximlevitsky@gmail.com>
5528S: Maintained
5529F: drivers/memstick/host/r592.*
5530
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005531RISCOM8 DRIVER
5532S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005533F: Documentation/serial/riscom8.txt
Joe Perchesc8974012011-04-14 15:22:05 -07005534F: drivers/staging/tty/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005535
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536ROCKETPORT DRIVER
5537P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538W: http://www.comtrol.com
5539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005540F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07005541F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542
5543ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005544M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005546W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005548F: include/linux/rose.h
5549F: include/net/rose.h
5550F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551
Larry Finger59840482008-11-12 17:13:09 -06005552RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005553M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04005554L: linux-wireless@vger.kernel.org
5555W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07005556T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04005557S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05005558F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04005559
Larry Finger59840482008-11-12 17:13:09 -06005560RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03005561M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005562M: Hin-Tak Leung <htl10@users.sourceforge.net>
5563M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07005564L: linux-wireless@vger.kernel.org
5565W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07005566T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07005567S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05005568F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06005569
Larry Finger3cf0c8a2010-12-16 09:13:21 -06005570RTL8192CE WIRELESS DRIVER
5571M: Larry Finger <Larry.Finger@lwfinger.net>
5572M: Chaoming Li <chaoming_li@realsil.com.cn>
5573L: linux-wireless@vger.kernel.org
5574W: http://linuxwireless.org/
5575T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
5576S: Maintained
5577F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06005578F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02005579
5580S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005581M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005582L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005584F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005585
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586S390
Joe Perches8b58be82009-07-29 15:04:30 -07005587M: Martin Schwidefsky <schwidefsky@de.ibm.com>
5588M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01005590L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005591W: http://www.ibm.com/developerworks/linux/linux390/
5592S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005593F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01005594F: drivers/s390/
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02005595F: fs/partitions/ibm.c
5596F: Documentation/s390/
5597F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08005598
5599S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005600M: Ursula Braun <ursula.braun@de.ibm.com>
5601M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08005602M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01005603L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005604W: http://www.ibm.com/developerworks/linux/linux390/
5605S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005606F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08005607
Felix Beckfeed9b62009-03-26 15:24:23 +01005608S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01005609M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01005610M: linux390@de.ibm.com
5611L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01005612W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01005613S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005614F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01005615
Heiko Carstens5238da42006-02-11 17:56:01 -08005616S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01005617M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08005618M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01005619L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005620W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005622F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623
Ursula Braundd96df22007-09-19 13:09:02 +02005624S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005625M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02005626M: linux390@de.ibm.com
5627L: linux-s390@vger.kernel.org
5628W: http://www.ibm.com/developerworks/linux/linux390/
5629S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005630F: drivers/s390/net/*iucv*
5631F: include/net/iucv/
5632F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02005633
Ben Dooks4dde7f72008-06-30 22:40:38 +01005634S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07005635M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005636L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01005637S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005638F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01005639
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005641M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005642L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005643T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005644W: http://www.mihu.de/linux/saa7146
5645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005646F: drivers/media/common/saa7146*
5647F: drivers/media/video/*7146*
5648F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005649
Mark Brown4a109cc2010-09-24 10:50:46 +01005650SAMSUNG AUDIO (ASoC) DRIVERS
Jassi Brarb9cbfcb2011-04-08 11:29:42 +05305651M: Jassi Brar <jassisinghbrar@gmail.com>
Sangbeom Kim250b6852011-08-23 19:36:59 +09005652M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01005653L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5654S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00005655F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01005656
Alan Coxca749e22011-03-18 13:56:14 +00005657SERIAL DRIVERS
5658M: Alan Cox <alan@linux.intel.com>
5659L: linux-serial@vger.kernel.org
5660S: Maintained
5661F: drivers/tty/serial
5662
Viresh Kumaraecb7b62011-05-24 14:04:09 +05305663SYNOPSYS DESIGNWARE DMAC DRIVER
5664M: Viresh Kumar <viresh.kumar@st.com>
5665S: Maintained
5666F: include/linux/dw_dmac.h
5667F: drivers/dma/dw_dmac_regs.h
5668F: drivers/dma/dw_dmac.c
5669
Thomas Gleixner88606e82010-12-14 21:37:13 +01005670TIMEKEEPING, NTP
5671M: John Stultz <johnstul@us.ibm.com>
5672M: Thomas Gleixner <tglx@linutronix.de>
5673S: Supported
5674F: include/linux/clocksource.h
5675F: include/linux/time.h
5676F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01005677F: kernel/time/clocksource.c
5678F: kernel/time/time*.c
5679F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02005680F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01005681
Huang Shijie5b3f03f2010-02-02 04:07:47 -03005682TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03005683M: Huang Shijie <shijie8@gmail.com>
5684M: Kang Yong <kangyong@telegent.com>
5685M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03005686S: Supported
5687F: drivers/media/video/tlg2300
5688
Linus Torvalds1da177e2005-04-16 15:20:36 -07005689SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005690M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005692F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005693
5694SCHEDULER
Joe Perches8b58be82009-07-29 15:04:30 -07005695M: Ingo Molnar <mingo@elte.hu>
5696M: Peter Zijlstra <peterz@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005697S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005698F: kernel/sched*
5699F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700
Chen Liqin6bcf6732009-06-13 15:24:33 +08005701SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07005702M: Chen Liqin <liqin.chen@sunplusct.com>
5703M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08005704W: http://www.sunplusct.com
5705S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07005706F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08005707
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005709M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005710L: linux-scsi@vger.kernel.org
5711W: http://www.kernel.dk
5712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005713F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005714
Roland Dreierfb50a832010-10-07 09:54:53 -07005715SCSI RDMA PROTOCOL (SRP) INITIATOR
5716M: David Dillow <dillowda@ornl.gov>
5717L: linux-rdma@vger.kernel.org
5718S: Supported
5719W: http://www.openfabrics.org
5720Q: http://patchwork.kernel.org/project/linux-rdma/list/
5721T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
5722F: drivers/infiniband/ulp/srp/
5723F: include/scsi/srp.h
5724
Linus Torvalds1da177e2005-04-16 15:20:36 -07005725SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005726M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005727L: linux-scsi@vger.kernel.org
5728W: http://www.torque.net/sg
5729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005730F: drivers/scsi/sg.c
5731F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732
5733SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05005734M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005735L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005736T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
5737T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
5738T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005740F: drivers/scsi/
5741F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742
5743SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005744M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005745L: linux-scsi@vger.kernel.org
5746S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005747F: Documentation/scsi/st.txt
5748F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005749
5750SCTP PROTOCOL
Joe Perches8b58be82009-07-29 15:04:30 -07005751M: Vlad Yasevich <vladislav.yasevich@hp.com>
5752M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07005753L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005754W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01005755S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005756F: Documentation/networking/sctp.txt
5757F: include/linux/sctp.h
5758F: include/net/sctp/
5759F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760
5761SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005762M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005763S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005764F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07005765F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07005766F: drivers/watchdog/scx200_wdt.c
5767F: drivers/i2c/busses/scx200*
5768F: drivers/mtd/maps/scx200_docflash.c
5769F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07005770
5771SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005772M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005773S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005774F: drivers/char/scx200_gpio.c
5775F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07005776
5777SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005778M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005780F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005781
Sascha Sommer6a369132008-07-15 14:21:29 +02005782SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005783M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02005784L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
5785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005786F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02005787
Randy Dunlape7839f22008-10-12 16:11:45 -07005788SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04005789M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07005790L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005791T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5792S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07005793F: drivers/mmc/host/sdhci.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005794
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005795SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07005796M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005797L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07005798L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005799S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07005800F: drivers/mmc/host/sdhci-of.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005801
Ben Dooks0d1bb412009-06-14 13:52:37 +01005802SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005803M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07005804L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01005805S: Maintained
5806F: drivers/mmc/host/sdhci-s3c.c
5807
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07005808SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
5809M: Viresh Kumar <viresh.kumar@st.com>
5810L: linux-mmc@vger.kernel.org
5811S: Maintained
5812F: drivers/mmc/host/sdhci-spear.c
5813
James Morris8711cca2008-12-04 03:19:45 +11005814SECURITY SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005815M: James Morris <jmorris@namei.org>
James Morris8711cca2008-12-04 03:19:45 +11005816L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perchesdf69f0da2009-11-11 14:26:46 -08005817T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11005818W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11005819S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07005820F: security/
James Morris8711cca2008-12-04 03:19:45 +11005821
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07005823M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005824S: Supported
5825
5826SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005827M: Stephen Smalley <sds@tycho.nsa.gov>
5828M: James Morris <jmorris@namei.org>
5829M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07005830L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04005831W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04005832T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005834F: include/linux/selinux*
5835F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04005836F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005837
John Johansenc1c124e2010-07-29 14:48:09 -07005838APPARMOR SECURITY MODULE
5839M: John Johansen <john.johansen@canonical.com>
5840L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
5841W: apparmor.wiki.kernel.org
5842T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
5843S: Supported
5844F: security/apparmor/
5845
Jiri Slabycef2cf02007-05-08 00:31:45 -07005846SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07005847M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07005848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005849F: drivers/misc/phantom.c
5850F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07005851
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005852SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005853M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005854L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005855T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005857F: drivers/ata/
5858F: include/linux/ata.h
5859F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305861SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07005862M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08005863L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07005864W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08005865S: Supported
5866F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305867
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005868SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08005869M: Sathya Perla <sathya.perla@emulex.com>
5870M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
5871M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07005872L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08005873W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07005874S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07005875F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005876
Ben Hutchings8ceee662008-04-27 12:55:59 +01005877SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00005878M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
5879M: Steve Hodgson <shodgson@solarflare.com>
5880M: Ben Hutchings <bhutchings@solarflare.com>
5881L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01005882S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07005883F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01005884
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005885SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005886M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005888F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005889
5890SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005891M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005892L: linux-ia64@vger.kernel.org
5893S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005894F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08005895F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07005896F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005897
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07005899M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005900L: linux-visws-devel@lists.sf.net
5901W: http://linux-visws.sf.net
5902S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07005903F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904
Jack Steiner75312612008-08-15 00:40:42 -07005905SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005906M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07005907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005908F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07005909
Len Brown6349d992009-08-14 15:07:14 -04005910SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07005911M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04005912L: sfi-devel@simplefirmware.org
5913W: http://simplefirmware.org/
5914T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005915S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07005916F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04005917F: drivers/sfi/
5918F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005919
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920SIMTEC EB110ATX (Chalice CATS)
5921P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08005922P: Vincent Sanders <vince@simtec.co.uk>
5923M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005924W: http://www.simtec.co.uk/products/EB110ATX/
5925S: Supported
5926
5927SIMTEC EB2410ITX (BAST)
5928P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08005929P: Vincent Sanders <vince@simtec.co.uk>
5930M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005931W: http://www.simtec.co.uk/products/EB2410ITX/
5932S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08005933F: arch/arm/mach-s3c2410/mach-bast.c
5934F: arch/arm/mach-s3c2410/bast-ide.c
5935F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005936
Kevin Hilman4c5adde2009-06-19 12:02:33 -07005937TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08005938M: Sekhar Nori <nsekhar@ti.com>
5939M: Kevin Hilman <khilman@ti.com>
Sekhar Nori4b5dc962010-07-12 18:51:05 +05305940L: davinci-linux-open-source@linux.davincidsp.com (subscribers-only)
Joe Perches8a6e2532010-03-05 13:43:11 -08005941Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07005942S: Supported
5943F: arch/arm/mach-davinci
5944
Francois Romieu92aab3c2005-07-30 13:11:18 +02005945SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005946M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02005947L: netdev@vger.kernel.org
5948S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07005949F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005950
Linus Torvalds1da177e2005-04-16 15:20:36 -07005951SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005952M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005954L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005955S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07005956F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005958SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005959M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005960L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005962F: Documentation/i2c/busses/i2c-sis96x
5963F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005964
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005966M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005969F: Documentation/fb/sisfb.txt
5970F: drivers/video/sis/
5971F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972
5973SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005974M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975W: http://www.winischhofer.at/linuxsisusbvga.shtml
5976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005977F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005979SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005980M: Stephen Hemminger <shemminger@linux-foundation.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005981L: netdev@vger.kernel.org
5982S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07005983F: drivers/net/ethernet/marvell/sk*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005984
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005985SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07005986M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02005987M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005988M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005989L: linux-mm@kvack.org
5990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005991F: include/linux/sl?b*.h
5992F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005993
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005995M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005996S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07005997F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998
Guenter Roeck920fa1f2010-08-09 17:21:06 -07005999SMM665 HARDWARE MONITOR DRIVER
6000M: Guenter Roeck <linux@roeck-us.net>
6001L: lm-sensors@lm-sensors.org
6002S: Maintained
6003F: Documentation/hwmon/smm665
6004F: drivers/hwmon/smm665.c
6005
Steve Glendinning9df73052010-08-14 21:08:54 +02006006SMSC EMC2103 HARDWARE MONITOR DRIVER
6007M: Steve Glendinning <steve.glendinning@smsc.com>
6008L: lm-sensors@lm-sensors.org
6009S: Supported
6010F: Documentation/hwmon/emc2103
6011F: drivers/hwmon/emc2103.c
6012
Hans de Goedea98d5062011-03-21 17:59:36 +01006013SMSC SCH5627 HARDWARE MONITOR DRIVER
6014M: Hans de Goede <hdegoede@redhat.com>
6015L: lm-sensors@lm-sensors.org
6016S: Supported
6017F: Documentation/hwmon/sch5627
6018F: drivers/hwmon/sch5627.c
6019
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006020SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006021M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006022L: lm-sensors@lm-sensors.org
6023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006024F: Documentation/hwmon/smsc47b397
6025F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006026
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006027SMSC911x ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006028M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006029L: netdev@vger.kernel.org
6030S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006031F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006032F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006033
Steve Glendinning2cb37722008-12-11 20:54:30 -08006034SMSC9420 PCI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006035M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006036L: netdev@vger.kernel.org
6037S: Supported
Jeff Kirsherae150432011-05-12 20:21:07 -07006038F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006039
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006040SMSC UFX6000 and UFX7000 USB to VGA DRIVER
6041M: Steve Glendinning <steve.glendinning@smsc.com>
6042L: linux-fbdev@vger.kernel.org
6043S: Supported
6044F: drivers/video/smscufx.c
6045
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006046SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006047M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006048L: linux-altix@sgi.com
6049L: linux-ia64@vger.kernel.org
6050W: http://www.sgi.com/altix
6051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006052F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006053
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006054SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006055M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006056L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006057T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006059F: include/media/v4l2*
6060F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006061
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006062SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006063M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006065F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006066
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006068M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006069L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006070S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006071F: drivers/md/
6072F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006073
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006075M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006076L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07006078F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079
Michael Buesch61e115a2007-09-18 15:12:50 -04006080SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02006081M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04006082L: netdev@vger.kernel.org
6083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006084F: drivers/ssb/
6085F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04006086
Rafał Miłecki8369ae32011-05-09 18:56:46 +02006087BROADCOM SPECIFIC AMBA DRIVER (BCMA)
6088M: Rafał Miłecki <zajec5@gmail.com>
6089L: linux-wireless@vger.kernel.org
6090S: Maintained
6091F: drivers/bcma/
6092F: include/linux/bcma/
6093
Linus Torvalds1da177e2005-04-16 15:20:36 -07006094SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006095M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05006096L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01006097W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07006098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006099F: Documentation/laptops/sony-laptop.txt
6100F: drivers/char/sonypi.c
6101F: drivers/platform/x86/sony-laptop.c
6102F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006103
Alex Dubovbaf85322008-02-09 10:20:54 -08006104SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006105M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08006106W: http://tifmxx.berlios.de/
6107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006108F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08006109
Linus Torvalds1da177e2005-04-16 15:20:36 -07006110SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07006111M: Jaroslav Kysela <perex@perex.cz>
6112M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07006113L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07006114W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02006115T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07006116T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006117S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07006118F: Documentation/sound/
6119F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07006120F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006121
Mark Brownbd903bd2008-11-19 19:16:05 +00006122SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01006123M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006124M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownbb74a6e2009-05-13 17:23:54 +01006125T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07006126L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01006127W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006128S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006129F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01006130F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006131
Sam Ravnborg473321f2009-01-04 15:47:49 -08006132SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07006133M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006134L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006135Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches54e58812009-04-07 21:08:10 -07006136T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
6137T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006139F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07006140F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006141
David S. Miller6404fcc2010-03-16 01:00:17 -07006142SPARC SERIAL DRIVERS
6143M: "David S. Miller" <davem@davemloft.net>
6144L: sparclinux@vger.kernel.org
6145T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
6146T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
6147S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006148F: drivers/tty/serial/suncore.c
6149F: drivers/tty/serial/suncore.h
6150F: drivers/tty/serial/sunhv.c
6151F: drivers/tty/serial/sunsab.c
6152F: drivers/tty/serial/sunsab.h
6153F: drivers/tty/serial/sunsu.c
6154F: drivers/tty/serial/sunzilog.c
6155F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07006156
viresh kumarfc0c1952010-04-01 12:31:21 +01006157SPEAR PLATFORM SUPPORT
6158M: Viresh Kumar <viresh.kumar@st.com>
6159W: http://www.st.com/spear
6160S: Maintained
6161F: arch/arm/plat-spear/
6162
6163SPEAR3XX MACHINE SUPPORT
6164M: Viresh Kumar <viresh.kumar@st.com>
6165W: http://www.st.com/spear
6166S: Maintained
6167F: arch/arm/mach-spear3xx/
6168
6169SPEAR6XX MACHINE SUPPORT
6170M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
6171W: http://www.st.com/spear
6172S: Maintained
6173F: arch/arm/mach-spear6xx/
6174
6175SPEAR CLOCK FRAMEWORK SUPPORT
6176M: Viresh Kumar <viresh.kumar@st.com>
6177W: http://www.st.com/spear
6178S: Maintained
6179F: arch/arm/mach-spear*/clock.c
6180F: arch/arm/mach-spear*/include/mach/clkdev.h
6181F: arch/arm/plat-spear/clock.c
Joe Perches83823b72010-08-09 17:20:42 -07006182F: arch/arm/plat-spear/include/plat/clkdev.h
6183F: arch/arm/plat-spear/include/plat/clock.h
viresh kumarfc0c1952010-04-01 12:31:21 +01006184
6185SPEAR PAD MULTIPLEXING SUPPORT
6186M: Viresh Kumar <viresh.kumar@st.com>
6187W: http://www.st.com/spear
6188S: Maintained
6189F: arch/arm/plat-spear/include/plat/padmux.h
6190F: arch/arm/plat-spear/padmux.c
6191F: arch/arm/mach-spear*/spear*xx.c
6192F: arch/arm/mach-spear*/include/mach/generic.h
6193F: arch/arm/mach-spear3xx/spear3*0.c
6194F: arch/arm/mach-spear3xx/spear3*0_evb.c
6195F: arch/arm/mach-spear6xx/spear600.c
6196F: arch/arm/mach-spear6xx/spear600_evb.c
6197
Linus Torvalds1da177e2005-04-16 15:20:36 -07006198SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
Joe Perchesc8974012011-04-14 15:22:05 -07006199S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006200F: Documentation/serial/specialix.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006201F: drivers/staging/tty/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006203SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07006204M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006205L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08006206Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06006207T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006209F: Documentation/spi/
6210F: drivers/spi/
6211F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006212
Jim Lewis2752e402006-09-29 02:01:19 -07006213SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07006214M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
6215M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07006216L: netdev@vger.kernel.org
6217S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006218F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006219F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07006220
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006221SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006222M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006223L: linuxppc-dev@lists.ozlabs.org
6224L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006225W: http://www.ibm.com/developerworks/power/cell/
6226S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006227F: Documentation/filesystems/spufs.txt
6228F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006229
Phillip Lougherfc555842009-01-05 08:46:29 +00006230SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01006231M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00006232L: squashfs-devel@lists.sourceforge.net (subscribers-only)
6233W: http://squashfs.org.uk
6234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006235F: Documentation/filesystems/squashfs.txt
6236F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00006237
Linus Torvalds1da177e2005-04-16 15:20:36 -07006238SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07006239M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006241F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006242
Linus Torvalds26e9a392008-10-17 09:50:12 -07006243STABLE BRANCH
Joe Perches8b58be82009-07-29 15:04:30 -07006244M: Greg Kroah-Hartman <greg@kroah.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006245L: stable@kernel.org
6246S: Maintained
6247
Linus Torvalds26e9a392008-10-17 09:50:12 -07006248STAGING SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006249M: Greg Kroah-Hartman <gregkh@suse.de>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07006250T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07006251L: devel@driverdev.osuosl.org
Linus Torvalds26e9a392008-10-17 09:50:12 -07006252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006253F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07006254
Joe Perchesc8c8b102011-07-05 09:42:12 -07006255STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
6256M: Henk de Groot <pe1dnn@amsat.org>
6257S: Odd Fixes
6258F: drivers/staging/wlags49_h2/
6259F: drivers/staging/wlags49_h25/
6260
Joe Perchesc9555152011-07-05 09:42:01 -07006261STAGING - ASUS OLED
6262M: Jakub Schmidtke <sjakub@gmail.com>
6263S: Odd Fixes
6264F: drivers/staging/asus_oled/
6265
Joe Perchesebd3d012011-07-05 09:42:02 -07006266STAGING - COMEDI
6267M: Ian Abbott <abbotti@mev.co.uk>
6268M: Mori Hess <fmhess@users.sourceforge.net>
6269S: Odd Fixes
6270F: drivers/staging/comedi/
6271
Joe Perches8ca572c2011-07-05 09:42:03 -07006272STAGING - CRYSTAL HD VIDEO DECODER
6273M: Naren Sankar <nsankar@broadcom.com>
6274M: Jarod Wilson <jarod@wilsonet.com>
6275M: Scott Davilla <davilla@4pi.com>
6276M: Manu Abraham <abraham.manu@gmail.com>
6277S: Odd Fixes
6278F: drivers/staging/crystalhd/
6279
Joe Perchesa0138162011-07-05 15:21:34 -07006280STAGING - CYPRESS WESTBRIDGE SUPPORT
6281M: David Cross <david.cross@cypress.com>
6282S: Odd Fixes
6283F: drivers/staging/westbridge/
6284
Joe Perches0f16ffc2011-07-05 09:42:04 -07006285STAGING - ECHO CANCELLER
6286M: Steve Underwood <steveu@coppice.org>
6287M: David Rowe <david@rowetel.com>
6288S: Odd Fixes
6289F: drivers/staging/echo/
6290
Mark Einon8dc2bbe72011-08-29 18:42:37 +01006291STAGING - ET131X NETWORK DRIVER
6292M: Mark Einon <mark.einon@gmail.com>
6293S: Odd Fixes
6294F: drivers/staging/et131x/
6295
Joe Perchesa0138162011-07-05 15:21:34 -07006296STAGING - FLARION FT1000 DRIVERS
6297M: Marek Belisko <marek.belisko@gmail.com>
6298S: Odd Fixes
6299F: drivers/staging/ft1000/
6300
Joe Perchesec3fab92011-07-05 09:42:05 -07006301STAGING - FRONTIER TRANZPORT AND ALPHATRACK
6302M: David Täht <d@teklibre.com>
6303S: Odd Fixes
6304F: drivers/staging/frontier/
6305
Joe Perches45f11392011-07-05 09:42:06 -07006306STAGING - HYPER-V (MICROSOFT)
6307M: Hank Janssen <hjanssen@microsoft.com>
6308M: Haiyang Zhang <haiyangz@microsoft.com>
6309S: Odd Fixes
6310F: drivers/staging/hv/
6311
Joe Perches6c1bb422011-07-05 09:42:07 -07006312STAGING - INDUSTRIAL IO
6313M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07006314L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07006315S: Odd Fixes
6316F: drivers/staging/iio/
6317
Joe Perchesa0138162011-07-05 15:21:34 -07006318STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
6319M: Jarod Wilson <jarod@wilsonet.com>
6320W: http://www.lirc.org/
6321S: Odd Fixes
6322F: drivers/staging/lirc/
6323
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006324STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02006325M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006326M: Marc Dietrich <marvin24@gmx.de>
6327L: ac100@lists.launchpad.net (moderated for non-subscribers)
6328S: Maintained
6329F: drivers/staging/nvec/
6330
Joe Perchesa0138162011-07-05 15:21:34 -07006331STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
6332M: Andres Salomon <dilinger@queued.net>
6333M: Chris Ball <cjb@laptop.org>
6334M: Jon Nettleton <jon.nettleton@gmail.com>
6335W: http://wiki.laptop.org/go/DCON
6336S: Odd Fixes
6337F: drivers/staging/olpc_dcon/
6338
6339STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07006340M: Willy Tarreau <willy@meta-x.org>
6341S: Odd Fixes
6342F: drivers/staging/panel/
6343
Joe Perchesa0138162011-07-05 15:21:34 -07006344STAGING - REALTEK RTL8712U DRIVERS
6345M: Larry Finger <Larry.Finger@lwfinger.net>
6346M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
6347S: Odd Fixes
6348F: drivers/staging/rtl8712/
6349
Joe Perches9629fa82011-07-05 09:42:09 -07006350STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
6351M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
6352S: Odd Fixes
6353F: drivers/staging/sm7xx/
6354
Joe Perchesa0138162011-07-05 15:21:34 -07006355STAGING - SOFTLOGIC 6x10 MPEG CODEC
6356M: Ben Collins <bcollins@bluecherry.net>
6357S: Odd Fixes
6358F: drivers/staging/solo6x10/
6359
6360STAGING - SPEAKUP CONSOLE SPEECH DRIVER
6361M: William Hubbs <w.d.hubbs@gmail.com>
6362M: Chris Brannon <chris@the-brannons.com>
6363M: Kirk Reiser <kirk@braille.uwo.ca>
6364M: Samuel Thibault <samuel.thibault@ens-lyon.org>
6365L: speakup@braille.uwo.ca
6366W: http://www.linux-speakup.org/
6367S: Odd Fixes
6368F: drivers/staging/speakup/
6369
6370STAGING - TI DSP BRIDGE DRIVERS
6371M: Omar Ramirez Luna <omar.ramirez@ti.com>
6372S: Odd Fixes
6373F: drivers/staging/tidspbridge/
6374
6375STAGING - TRIDENT TVMASTER TMxxxx USB VIDEO CAPTURE DRIVERS
6376L: linux-media@vger.kernel.org
6377S: Odd Fixes
6378F: drivers/staging/tm6000/
6379
6380STAGING - USB ENE SM/MS CARD READER DRIVER
6381M: Al Cho <acho@novell.com>
6382S: Odd Fixes
6383F: drivers/staging/keucr/
6384
Joe Perchesb3e871c2011-07-05 09:42:10 -07006385STAGING - VIA VT665X DRIVERS
6386M: Forest Bond <forest@alittletooquiet.net>
6387S: Odd Fixes
6388F: drivers/staging/vt665?/
6389
Joe Perches81a9a522011-07-05 09:42:11 -07006390STAGING - WINBOND IS89C35 WLAN USB DRIVER
6391M: Pavel Machek <pavel@ucw.cz>
6392S: Odd Fixes
6393F: drivers/staging/winbond/
6394
Joe Perches709bcb02011-07-05 09:42:13 -07006395STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
6396M: Arnaud Patard <apatard@mandriva.com>
6397S: Odd Fixes
6398F: drivers/staging/xgifb/
6399
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006401M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07006402S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07006403F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006404
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006405SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07006406M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006407W: http://sammy.net/sun3/
6408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006409F: arch/m68k/kernel/*sun3*
6410F: arch/m68k/sun3*/
6411F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07006412F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006413
Paul Mundt2cbb12a2007-11-19 13:08:37 +09006414SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07006415M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09006416L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006418Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtbea27822010-11-10 18:07:43 +09006419T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09006420S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09006421F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07006422F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09006423F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006425SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07006426M: Len Brown <len.brown@intel.com>
6427M: Pavel Machek <pavel@ucw.cz>
6428M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02006429L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006430S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006431F: Documentation/power/
6432F: arch/x86/kernel/acpi/
6433F: drivers/base/power/
6434F: kernel/power/
6435F: include/linux/suspend.h
6436F: include/linux/freezer.h
6437F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006438
6439SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006440M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441L: linux-video@atrey.karlin.mff.cuni.cz
6442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006443F: Documentation/svga.txt
6444F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445
6446SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006447M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006449F: Documentation/filesystems/sysv-fs.txt
6450F: fs/sysv/
6451F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006452
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07006453TARGET SUBSYSTEM
6454M: Nicholas A. Bellinger <nab@linux-iscsi.org>
6455L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00006456L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07006457L: http://groups.google.com/group/linux-iscsi-target-dev
6458W: http://www.linux-iscsi.org
6459T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6460S: Supported
6461F: drivers/target/
6462F: include/target/
6463F: Documentation/target/
6464
Alan Cox4e688522008-04-30 00:52:11 -07006465TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07006466M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07006467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006468F: Documentation/accounting/taskstats*
6469F: include/linux/taskstats*
6470F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07006471
Stephen Hemminger781b456a2006-07-10 20:25:29 -07006472TC CLASSIFIER
Joe Perches8b58be82009-07-29 15:04:30 -07006473M: Jamal Hadi Salim <hadi@cyberus.ca>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07006474L: netdev@vger.kernel.org
6475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006476F: include/linux/pkt_cls.h
6477F: include/net/pkt_cls.h
6478F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07006479
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07006480TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006481M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
6482M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07006483W: http://tcp-lp-mod.sourceforge.net/
6484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006485F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07006486
Erik Gilling84b94142010-06-09 15:35:53 -07006487TEGRA SUPPORT
6488M: Colin Cross <ccross@android.com>
Erik Gilling84b94142010-06-09 15:35:53 -07006489M: Olof Johansson <olof@lixom.net>
Olof Johansson746fb632011-10-07 13:27:48 -07006490M: Stephen Warren <swarren@nvidia.com>
Erik Gilling84b94142010-06-09 15:35:53 -07006491L: linux-tegra@vger.kernel.org
Olof Johansson746fb632011-10-07 13:27:48 -07006492T: git git://git.kernel.org/pub/scm/linux/kernel/git/olof/tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07006493S: Supported
6494F: arch/arm/mach-tegra
6495
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07006496TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006497M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07006498L: netdev@vger.kernel.org
6499S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07006500F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07006501
Alan Cox4e688522008-04-30 00:52:11 -07006502Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07006503M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07006504S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006505F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07006506
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006507TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07006508M: Chris Zankel <chris@zankel.net>
Alan Cox4e688522008-04-30 00:52:11 -07006509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006510F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07006511
6512THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006513M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07006514L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05006515L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006516W: http://ibm-acpi.sourceforge.net
6517W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07006518T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07006519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006520F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07006521
Alex Dubov4020f2d2006-10-04 02:15:37 -07006522TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006523M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006525F: drivers/misc/tifm*
6526F: drivers/mmc/host/tifm_sd.c
6527F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07006528
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03006529TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03006530M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03006531L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6532S: Maintained
6533F: sound/soc/codecs/twl4030*
6534
Per Lidene86eaa32006-01-12 16:45:18 +01006535TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006536M: Jon Maloy <jon.maloy@ericsson.com>
6537M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05006538L: netdev@vger.kernel.org (core kernel code)
6539L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01006540W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01006541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006542F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07006543F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01006544
Chris Metcalf867e3592010-05-28 23:09:12 -04006545TILE ARCHITECTURE
6546M: Chris Metcalf <cmetcalf@tilera.com>
6547W: http://www.tilera.com/scm/
6548S: Supported
6549F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08006550F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07006551F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05006552F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04006553
Linus Torvalds1da177e2005-04-16 15:20:36 -07006554TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006555M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08006556L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557W: http://sourceforge.net/projects/tlan/
6558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006559F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07006560F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006561
Kentaro Takedad74db3b2009-02-05 17:18:18 +09006562TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006563M: Kentaro Takeda <takedakn@nttdata.co.jp>
6564M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09006565L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
6566L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09006567L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
6568L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
6569W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09006570T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09006571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006572F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09006573
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03006574TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006575M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05006576L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03006577S: Maintained
6578F: drivers/platform/x86/topstar-laptop.c
6579
Linus Torvalds1da177e2005-04-16 15:20:36 -07006580TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05006581L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02006582S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006583F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006584
6585TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006586M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006587L: tlinux-users@tce.toshiba-dme.co.jp
6588W: http://www.buzzard.org.uk/toshiba/
6589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006590F: drivers/char/toshiba.c
6591F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006592
Pierre Ossmand719f902009-03-24 21:06:09 +01006593TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02006594M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07006595M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02006596L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01006597S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02006598F: drivers/mmc/host/tmio_mmc*
6599F: drivers/mmc/host/sh_mobile_sdhi.c
6600F: include/linux/mmc/tmio.h
6601F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01006602
Hugh Dickins98f32602009-05-21 20:33:58 +01006603TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07006604M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01006605L: linux-mm@kvack.org
6606S: Maintained
6607F: include/linux/shmem_fs.h
6608F: mm/shmem.c
6609
Alan Cox4e688522008-04-30 00:52:11 -07006610TPM DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006611M: Debora Velarde <debora@linux.vnet.ibm.com>
6612M: Rajiv Andrade <srajiv@linux.vnet.ibm.com>
Alan Cox4e688522008-04-30 00:52:11 -07006613W: http://tpmdd.sourceforge.net
Joe Perches8b58be82009-07-29 15:04:30 -07006614M: Marcel Selhorst <m.selhorst@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08006615W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07006616L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07006617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006618F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07006619
Joe Perchesd6f005a2009-10-26 16:49:40 -07006620TRACING
6621M: Steven Rostedt <rostedt@goodmis.org>
6622M: Frederic Weisbecker <fweisbec@gmail.com>
6623M: Ingo Molnar <mingo@redhat.com>
Frederic Weisbecker86a8c632010-07-15 23:03:38 +02006624T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07006625S: Maintained
6626F: Documentation/trace/ftrace.txt
6627F: arch/*/*/*/ftrace.h
6628F: arch/*/kernel/ftrace.c
6629F: include/*/ftrace.h
6630F: include/linux/trace*.h
6631F: include/trace/
6632F: kernel/trace/
6633
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07006635M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07006636T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006637S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02006638K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07006639
Alan Cox4e688522008-04-30 00:52:11 -07006640TTY LAYER
Greg Kroah-Hartman57d7f282009-07-31 21:28:16 -07006641M: Greg Kroah-Hartman <gregkh@suse.de>
6642S: Maintained
Greg Kroah-Hartman3da39bc2010-11-09 09:15:40 -08006643T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty-2.6.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006644F: drivers/tty/*
6645F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01006646F: include/linux/serial_core.h
6647F: include/linux/serial.h
6648F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07006649
Grant Grundler740db6d2008-02-17 11:53:49 -07006650TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006651M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07006652L: netdev@vger.kernel.org
6653S: Maintained
Jeff Kirshera88394c2011-05-20 07:15:19 -07006654F: drivers/net/ethernet/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006655
6656TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07006657M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006658L: vtun@office.satix.net
6659W: http://vtun.sourceforge.net/tun
6660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006661F: Documentation/networking/tuntap.txt
6662F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006663
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08006664TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006665M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08006666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006667F: drivers/tc/
6668F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08006669
Linus Torvalds1da177e2005-04-16 15:20:36 -07006670U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006671M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006672L: linux-scsi@vger.kernel.org
6673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006674F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006675
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006676UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03006677M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03006678M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006679L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03006680T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006681W: http://www.linux-mtd.infradead.org/doc/ubifs.html
6682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006683F: Documentation/filesystems/ubifs.txt
6684F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006685
Alan Coxcc2020e2008-05-19 14:21:51 +01006686UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07006687M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01006688W: http://www.uclinux.org/
6689L: uclinux-dev@uclinux.org (subscribers-only)
6690S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07006691F: arch/m68k/*/*_no.*
6692F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01006693
Robert P. J. Day14fadca2009-04-21 12:24:47 -07006694UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07006695M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01006696W: http://uclinux-h8.sourceforge.jp/
6697S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07006698F: arch/h8300/
6699F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07006700F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01006701
Linus Torvalds1da177e2005-04-16 15:20:36 -07006702UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006703M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006705F: Documentation/filesystems/udf.txt
6706F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006707
Alan Coxcc2020e2008-05-19 14:21:51 +01006708UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006709M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01006710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006711F: Documentation/filesystems/ufs.txt
6712F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01006713
David Vrabel18332a82008-09-17 16:34:44 +01006714ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01006715L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01006716S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00006717F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07006718F: include/linux/uwb.h
6719F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01006720
GuanXuetaob31d8272011-01-16 00:35:49 +08006721UNICORE32 ARCHITECTURE:
6722M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6723W: http://mprc.pku.edu.cn/~guanxuetao/linux
6724S: Maintained
6725T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6726F: arch/unicore32/
6727
Tony Finchd8379ab2009-11-27 15:50:30 +00006728UNIFDEF
6729M: Tony Finch <dot@dotat.at>
6730W: http://dotat.at/prog/unifdef
6731S: Maintained
6732F: scripts/unifdef.c
6733
Linus Torvalds1da177e2005-04-16 15:20:36 -07006734UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006735M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006736W: http://www.kernel.dk
6737S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006738F: Documentation/cdrom/
6739F: drivers/cdrom/cdrom.c
6740F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006741
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006742UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03006743M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006744W: http://www.linux-mtd.infradead.org/
6745L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03006746T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006747S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006748F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07006749F: include/linux/mtd/ubi.h
6750F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006751
Linus Torvalds1da177e2005-04-16 15:20:36 -07006752USB ACM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006753M: Oliver Neukum <oliver@neukum.name>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07006754L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006756F: Documentation/usb/acm.txt
6757F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006758
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02006759USB ATTACHED SCSI
6760M: Matthew Wilcox <willy@linux.intel.com>
6761M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
6762L: linux-usb@vger.kernel.org
6763L: linux-scsi@vger.kernel.org
6764S: Supported
6765F: drivers/usb/storage/uas.c
6766
Linus Torvalds1da177e2005-04-16 15:20:36 -07006767USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07006768M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006769L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006770S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006771F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006772
Linus Torvalds1da177e2005-04-16 15:20:36 -07006773USB CDC ETHERNET DRIVER
Oliver Neukumf0348d42009-12-11 15:01:26 -08006774M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006775L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006777F: drivers/net/usb/cdc_*.c
6778F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006779
Peter Korsgaardb02b3712008-04-27 08:59:44 +02006780USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006781M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02006782L: linux-usb@vger.kernel.org
6783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006784F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02006785
Peter Korsgaardd0374f42007-02-16 17:03:54 +01006786USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006787M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02006788L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01006789W: http://www.linux-usb.org/usbnet
6790S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006791F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01006792
Alan Coxcc2020e2008-05-19 14:21:51 +01006793USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006794M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01006795L: rio500-users@lists.sourceforge.net
6796W: http://rio500.sourceforge.net
6797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006798F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01006799
Linus Torvalds1da177e2005-04-16 15:20:36 -07006800USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04006801M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006802L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04006803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006804F: Documentation/usb/ehci.txt
6805F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006806
Luca Risolia7ce08c92006-01-11 02:06:59 +00006807USB ET61X[12]51 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006808M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006809L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006810L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006811T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00006812W: http://www.linux-projects.org
6813S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006814F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00006815
David Brownell69ae9e32006-11-14 02:03:31 -08006816USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03006817M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006818L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006819W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03006820T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006822F: drivers/usb/gadget/
6823F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08006824
Jiri Kosina2dea64b2007-07-11 12:12:11 +02006825USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07006826M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006827L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006828T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006829S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07006830F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07006831F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006832
matt mooney857aab32011-06-17 15:50:46 -07006833USB/IP DRIVERS
6834M: Matt Mooney <mfm@muteddisk.com>
6835L: linux-usb@vger.kernel.org
6836S: Maintained
6837F: drivers/staging/usbip/
6838
Olav Kongas959eea22005-11-03 17:38:14 +02006839USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006840M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006841L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02006842S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006843F: drivers/usb/host/isp116x*
6844F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02006845
Linus Torvalds1da177e2005-04-16 15:20:36 -07006846USB KAWASAKI LSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006847M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006848L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006849S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006850F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006851
6852USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006853M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006854L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08006855L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07006856S: Maintained
6857W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07006858F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006859
Clemens Ladischaf399172011-01-10 16:32:54 +01006860USB MIDI DRIVER
6861M: Clemens Ladisch <clemens@ladisch.de>
6862L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6863T: git git://git.alsa-project.org/alsa-kernel.git
6864S: Maintained
6865F: sound/usb/midi.*
6866
Linus Torvalds1da177e2005-04-16 15:20:36 -07006867USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04006868M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006869L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04006870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006871F: Documentation/usb/ohci.txt
6872F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006873
Matthias Urlichsba460e42005-07-14 00:33:47 -07006874USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006875M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006876L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07006877S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006878F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07006879
Linus Torvalds1da177e2005-04-16 15:20:36 -07006880USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006881M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006882L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006883L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006884W: http://pegasus2.sourceforge.net/
6885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006886F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006887
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006888USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07006889M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006890L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006891S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006892F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006893
6894USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006895M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006896L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006897L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006898W: http://pegasus2.sourceforge.net/
6899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006900F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006901
Alan Cox4e688522008-04-30 00:52:11 -07006902USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006903M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006904L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006906F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07006907
6908USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006909M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006910L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006911S: Maintained
6912W: http://geocities.com/i0xox0i
6913W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07006914F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07006915
Linus Torvalds1da177e2005-04-16 15:20:36 -07006916USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006917M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006918W: http://www.reiner-sct.de/support/treiber_cyberjack.php
6919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006920F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006921
6922USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006923M: Peter Berger <pberger@brimson.com>
6924M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006925L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006927F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006928
6929USB SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006930M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006931L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006932S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006933F: Documentation/usb/usb-serial.txt
6934F: drivers/usb/serial/generic.c
6935F: drivers/usb/serial/usb-serial.c
6936F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006937
Linus Torvalds1da177e2005-04-16 15:20:36 -07006938USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006939M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006940L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006942F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006943
6944USB SERIAL KEYSPAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006945M: Greg Kroah-Hartman <greg@kroah.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006946L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006947W: http://www.kroah.com/linux/
6948S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006949F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006950
6951USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006952M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006953L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006954W: http://www.connecttech.com
6955S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006956F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006957
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006958USB SMSC95XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006959M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006960L: netdev@vger.kernel.org
6961S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006962F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006963
Luca Risoliaf423b9a2007-03-26 16:12:04 -03006964USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006965M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006966L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006967L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006968T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006969W: http://www.linux-projects.org
6970S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006971F: Documentation/video4linux/sn9c102.txt
6972F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006973
6974USB SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006975M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006976L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006977W: http://www.linux-usb.org
Greg Kroah-Hartmanc9a7ec82010-11-09 09:11:49 -08006978T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006979S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006980F: Documentation/usb/
6981F: drivers/net/usb/
6982F: drivers/usb/
6983F: include/linux/usb.h
6984F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006985
6986USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006987M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006988L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006990F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006991
David Brownell69ae9e32006-11-14 02:03:31 -08006992USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02006993M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02006994L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006995W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07006996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006997F: drivers/net/usb/usbnet.c
6998F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006999
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007000USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07007001M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Jiri Slabya67534a2008-12-10 09:09:27 -03007002L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007003L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007004T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03007005W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007007F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007008
Linus Torvalds1da177e2005-04-16 15:20:36 -07007009USB W996[87]CF DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007010M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007011L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007012L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007013T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007014W: http://www.linux-projects.org
7015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007016F: Documentation/video4linux/w9968cf.txt
7017F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007018
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007019USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07007020M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007021L: linux-wireless@vger.kernel.org
7022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007023F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007024
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007025USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08007026M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007027L: linux-usb@vger.kernel.org
7028S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08007029F: drivers/usb/host/xhci*
7030F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007031
Linus Torvalds1da177e2005-04-16 15:20:36 -07007032USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04007033L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007034W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04007035S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007036F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007037
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007038USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007039M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007040L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007041L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007042T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007043W: http://royale.zerezo.com/zr364xx/
7044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007045F: Documentation/video4linux/zr364xx.txt
7046F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007047
Randy Dunlape7839f22008-10-12 16:11:45 -07007048USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07007049M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01007050M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007051L: user-mode-linux-devel@lists.sourceforge.net
7052L: user-mode-linux-user@lists.sourceforge.net
7053W: http://user-mode-linux.sourceforge.net
7054S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07007055F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07007056F: arch/um/
7057F: fs/hostfs/
7058F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007059
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007060USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07007061M: "Hans J. Koch" <hjk@hansjkoch.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007062M: Greg Kroah-Hartman <gregkh@suse.de>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007064F: Documentation/DocBook/uio-howto.tmpl
7065F: drivers/uio/
7066F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007067
Karel Zakf899b0a2008-05-23 13:04:21 -07007068UTIL-LINUX-NG PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07007069M: Karel Zak <kzak@redhat.com>
Karel Zakf899b0a2008-05-23 13:04:21 -07007070L: util-linux-ng@vger.kernel.org
7071W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07007072T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07007073S: Maintained
7074
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007075UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007076M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007077L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007078W: http://dev.gentoo.org/~spock/projects/uvesafb/
7079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007080F: Documentation/fb/uvesafb.txt
7081F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007082
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007083VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007084M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007086F: Documentation/filesystems/vfat.txt
7087F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007088
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007089VIDEOBUF2 FRAMEWORK
7090M: Pawel Osciak <pawel@osciak.com>
7091M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03007092M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007093L: linux-media@vger.kernel.org
7094S: Maintained
7095F: drivers/media/video/videobuf2-*
7096F: include/media/videobuf2-*
7097
Amit Shah9a824462010-03-23 18:23:09 +05307098VIRTIO CONSOLE DRIVER
7099M: Amit Shah <amit.shah@redhat.com>
7100L: virtualization@lists.linux-foundation.org
7101S: Maintained
7102F: drivers/char/virtio_console.c
7103F: include/linux/virtio_console.h
7104
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10307105VIRTIO CORE, NET AND BLOCK DRIVERS
7106M: Rusty Russell <rusty@rustcorp.com.au>
7107M: "Michael S. Tsirkin" <mst@redhat.com>
7108L: virtualization@lists.linux-foundation.org
7109S: Maintained
7110F: drivers/virtio/
7111F: drivers/net/virtio_net.c
7112F: drivers/block/virtio_blk.c
7113F: include/linux/virtio_*.h
7114
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007115VIRTIO HOST (VHOST)
7116M: "Michael S. Tsirkin" <mst@redhat.com>
7117L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00007118L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007119L: netdev@vger.kernel.org
7120S: Maintained
7121F: drivers/vhost/
7122F: include/linux/vhost.h
7123
Linus Torvalds1da177e2005-04-16 15:20:36 -07007124VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007125M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007126S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007127F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007128
Jean Delvare32c0a522005-09-22 21:47:58 +02007129VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007130M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01007131L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02007132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007133F: Documentation/i2c/busses/i2c-viapro
7134F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02007135
Harald Weltef0bf7f62009-06-17 20:22:39 +02007136VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08007137M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07007138M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02007139S: Maintained
7140F: drivers/mmc/host/via-sdmmc.c
7141
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007142VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007143M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007144L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007145S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007146F: include/linux/via-core.h
7147F: include/linux/via-gpio.h
7148F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07007149F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007150
Francois Romieu01f20732007-01-26 00:57:17 -08007151VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007152M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08007153L: netdev@vger.kernel.org
7154S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007155F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007156
Patrick McHardybe7f8272007-10-23 20:26:36 -07007157VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07007158M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07007159L: netdev@vger.kernel.org
7160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007161F: drivers/net/macvlan.c
7162F: include/linux/if_*vlan.h
7163F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07007164
Florian Fainelli55e331c2009-06-16 15:33:53 -07007165VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07007166M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08007167L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07007168S: Maintained
7169F: drivers/vlynq/vlynq.c
7170F: include/linux/vlynq.h
7171
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007172VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08007173M: Shreyas Bhatewara <sbhatewara@vmware.com>
7174M: "VMware, Inc." <pv-drivers@vmware.com>
7175L: netdev@vger.kernel.org
7176S: Maintained
7177F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007178
Alok Kataria851b1642009-10-13 14:51:05 -07007179VMware PVSCSI driver
7180M: Alok Kataria <akataria@vmware.com>
7181M: VMware PV-Drivers <pv-drivers@vmware.com>
7182L: linux-scsi@vger.kernel.org
7183S: Maintained
7184F: drivers/scsi/vmw_pvscsi.c
7185F: drivers/scsi/vmw_pvscsi.h
7186
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007187VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01007188M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007189M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007190W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00007191W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07007192T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007193S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007194F: drivers/regulator/
7195F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007196
Juerg Haefligerab413192006-09-24 20:54:04 +02007197VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007198M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02007199L: lm-sensors@lm-sensors.org
7200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007201F: Documentation/hwmon/vt1211
7202F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02007203
Roger Lucas1de9e372005-11-26 20:20:05 +01007204VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007205M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01007206L: lm-sensors@lm-sensors.org
7207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007208F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01007209
Tony Olech88095e72011-05-14 16:48:13 -04007210VUB300 USB to SDIO/SD/MMC bridge chip
7211M: Tony Olech <tony.olech@elandigitalsystems.com>
7212L: linux-mmc@vger.kernel.org
7213L: linux-usb@vger.kernel.org
7214S: Supported
7215F: drivers/mmc/host/vub300.c
7216
Linus Torvalds1da177e2005-04-16 15:20:36 -07007217W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07007218M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007220F: Documentation/w1/
7221F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007222
Charles Spirakis13927072006-07-05 18:05:15 +02007223W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007224M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02007225L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04007226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007227F: Documentation/hwmon/w83791d
7228F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02007229
Rudolf Marek61db0112006-12-12 18:18:30 +01007230W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007231M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01007232L: lm-sensors@lm-sensors.org
7233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007234F: Documentation/hwmon/w83793
7235F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01007236
Jean Delvaree3760b42010-10-28 20:31:49 +02007237W83795 HARDWARE MONITORING DRIVER
7238M: Jean Delvare <khali@linux-fr.org>
7239L: lm-sensors@lm-sensors.org
7240S: Maintained
7241F: drivers/hwmon/w83795.c
7242
Linus Torvalds1da177e2005-04-16 15:20:36 -07007243W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007244M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007246F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007247
Wim Van Sebroeck35277612006-01-15 21:21:14 +01007248WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007249M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00007250L: linux-watchdog@vger.kernel.org
7251W: http://www.linux-watchdog.org/
Joe Perches54e58812009-04-07 21:08:10 -07007252T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01007253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007254F: Documentation/watchdog/
7255F: drivers/watchdog/
7256F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01007257
Linus Torvalds1da177e2005-04-16 15:20:36 -07007258WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007259M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007260L: linux-scsi@vger.kernel.org
7261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007262F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007263
David Herrmannb22e00f2011-09-06 13:50:40 +02007264WIIMOTE HID DRIVER
7265M: David Herrmann <dh.herrmann@googlemail.com>
7266L: linux-input@vger.kernel.org
7267S: Maintained
7268F: drivers/hid/hid-wiimote*
7269
David Härdemane258b802009-09-21 17:04:53 -07007270WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07007271M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07007272S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07007273F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07007274
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08007275WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07007276M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08007277M: linux-wimax@intel.com
7278L: wimax@linuxwimax.org
7279S: Supported
7280W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07007281F: Documentation/wimax/README.wimax
7282F: include/linux/wimax.h
7283F: include/linux/wimax/debug.h
7284F: include/net/wimax.h
7285F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08007286
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05007287WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007288M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05007289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007290F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05007291
Kalle Valo834da342009-07-21 14:26:08 +03007292WL1251 WIRELESS DRIVER
Luciano Coelhof9ab38b2011-07-17 10:06:34 +03007293M: Luciano Coelho <coelho@ti.com>
Kalle Valo834da342009-07-21 14:26:08 +03007294L: linux-wireless@vger.kernel.org
Luciano Coelhof9ab38b2011-07-17 10:06:34 +03007295W: http://wireless.kernel.org/en/users/Drivers/wl1251
Kalle Valo834da342009-07-21 14:26:08 +03007296T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
7297S: Maintained
Kalle Valocc2858c2010-10-10 11:28:33 +03007298F: drivers/net/wireless/wl1251/*
Luciano Coelho5e68ff62009-08-10 11:15:13 +03007299
7300WL1271 WIRELESS DRIVER
Luciano Coelhoa29091e2011-01-26 21:46:29 +02007301M: Luciano Coelho <coelho@ti.com>
Luciano Coelho5e68ff62009-08-10 11:15:13 +03007302L: linux-wireless@vger.kernel.org
Luciano Coelhoa29091e2011-01-26 21:46:29 +02007303W: http://wireless.kernel.org/en/users/Drivers/wl12xx
Luciano Coelho381bd102010-09-28 09:54:27 +03007304T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
Luciano Coelho5e68ff62009-08-10 11:15:13 +03007305S: Maintained
Luciano Coelhoa29091e2011-01-26 21:46:29 +02007306F: drivers/net/wireless/wl12xx/
Ohad Ben-Cohenc1f9a092010-09-16 13:16:02 +02007307F: include/linux/wl12xx.h
Kalle Valo834da342009-07-21 14:26:08 +03007308
Linus Torvalds1da177e2005-04-16 15:20:36 -07007309WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007310M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07007311L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03007312W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07007313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007314F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007315
Mark Brownfebf1df2008-04-02 00:51:09 -04007316WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007317M: Mark Brown <broonie@opensource.wolfsonmicro.com>
7318M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04007319L: linux-input@vger.kernel.org
7320T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
7321W: http://opensource.wolfsonmicro.com/node/7
7322S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007323F: drivers/input/touchscreen/*wm97*
7324F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04007325
Mark Brown055bcbc2010-08-13 14:18:12 +01007326WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07007327M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Browna532f972010-08-13 14:18:29 +01007328M: Ian Lartey <ian@opensource.wolfsonmicro.com>
Mark Brown645a6592010-10-05 19:27:56 -07007329M: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
Mark Browncf8eda32010-10-05 19:31:40 -07007330T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01007331T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07007332W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01007333S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08007334F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01007335F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownb75ea162009-07-02 16:43:08 +01007336F: drivers/leds/leds-wm83*.c
Mark Brown59ec6da2011-08-19 17:53:12 +09007337F: drivers/input/misc/wm831x-on.c
7338F: drivers/input/touchscreen/wm831x-ts.c
7339F: drivers/input/touchscreen/wm97*.c
Mark Brownb75ea162009-07-02 16:43:08 +01007340F: drivers/mfd/wm8*.c
7341F: drivers/power/wm83*.c
7342F: drivers/rtc/rtc-wm83*.c
7343F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01007344F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01007345F: drivers/watchdog/wm83*_wdt.c
Mark Brown3860e6c2009-09-09 14:46:43 +01007346F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01007347F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08007348F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09007349F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01007350F: include/sound/wm????.h
7351F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01007352
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01007353WORKQUEUE
7354M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01007355T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
7356S: Maintained
7357F: include/linux/workqueue.h
7358F: kernel/workqueue.c
7359F: Documentation/workqueue.txt
7360
Linus Torvalds1da177e2005-04-16 15:20:36 -07007361X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00007362M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007363L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00007364S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007365F: Documentation/networking/x25*
7366F: include/net/x25*
7367F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007368
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007369X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07007370M: Thomas Gleixner <tglx@linutronix.de>
7371M: Ingo Molnar <mingo@redhat.com>
7372M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08007373M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007374T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007376F: Documentation/x86/
7377F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007378
Matthew Garrettd0944852010-02-11 10:40:13 -05007379X86 PLATFORM DRIVERS
7380M: Matthew Garrett <mjg@redhat.com>
7381L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07007382T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05007383S: Maintained
7384F: drivers/platform/x86
7385
Ingo Molnarc1f5c542011-06-18 22:51:13 +02007386X86 MCE INFRASTRUCTURE
7387M: Tony Luck <tony.luck@intel.com>
7388M: Borislav Petkov <bp@amd64.org>
7389L: linux-edac@vger.kernel.org
7390S: Maintained
7391F: arch/x86/kernel/cpu/mcheck/*
7392
Ian Campbellc4468082011-04-27 15:26:46 -07007393XEN HYPERVISOR INTERFACE
7394M: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
7395M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7396L: xen-devel@lists.xensource.com (moderated for non-subscribers)
7397L: virtualization@lists.linux-foundation.org
7398S: Supported
7399F: arch/x86/xen/
7400F: drivers/*/xen-*front.c
7401F: drivers/xen/
7402F: arch/x86/include/asm/xen/
7403F: include/xen/
7404
Ian Campbell9b57e1a2011-04-03 23:12:23 +00007405XEN NETWORK BACKEND DRIVER
7406M: Ian Campbell <ian.campbell@citrix.com>
7407L: xen-devel@lists.xensource.com (moderated for non-subscribers)
7408L: netdev@vger.kernel.org
7409S: Supported
7410F: drivers/net/xen-netback/*
7411
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04007412XEN PCI SUBSYSTEM
7413M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08007414L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02007415S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04007416F: arch/x86/pci/*xen*
7417F: drivers/pci/*xen*
7418
7419XEN SWIOTLB SUBSYSTEM
7420M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08007421L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04007422S: Supported
7423F: arch/x86/xen/*swiotlb*
7424F: drivers/xen/*swiotlb*
7425
Linus Torvalds1da177e2005-04-16 15:20:36 -07007426XFS FILESYSTEM
7427P: Silicon Graphics Inc
Alex Elderf08a59f2009-09-11 09:51:25 -05007428M: Alex Elder <aelder@sgi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007429M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10007430L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07007431W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07007432T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007433S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007434F: Documentation/filesystems/xfs.txt
7435F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007436
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02007437XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007438M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02007439W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02007440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007441F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02007442
Peter Korsgaard238b8722006-12-06 20:35:17 -08007443XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007444M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08007445L: linux-serial@vger.kernel.org
7446S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007447F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08007448
Linus Torvalds1da177e2005-04-16 15:20:36 -07007449YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07007450M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007451L: linux-hams@vger.kernel.org
7452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007453F: drivers/net/hamradio/yam*
7454F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007455
Henkaf64a5e2005-10-12 15:02:56 +02007456YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007457M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02007458L: usbb2k-api-dev@nongnu.org
7459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007460F: Documentation/input/yealink.txt
7461F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02007462
Linus Torvalds1da177e2005-04-16 15:20:36 -07007463Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07007464M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007465W: http://yaina.de/jreuter/
7466W: http://www.qsl.net/dl1bke/
7467L: linux-hams@vger.kernel.org
7468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007469F: Documentation/networking/z8530drv.txt
7470F: drivers/net/hamradio/*scc.c
7471F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007472
Daniel Drake7c0c3af2006-07-16 13:55:17 +01007473ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007474M: Daniel Drake <dsd@gentoo.org>
7475M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01007476W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07007477L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01007478L: zd1211-devs@lists.sourceforge.net (subscribers-only)
7479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007480F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01007481
Linus Torvalds1da177e2005-04-16 15:20:36 -07007482ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07007483L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03007484L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007485W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03007486T: Mercurial http://linuxtv.org/hg/v4l-dvb
7487S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007488F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007489
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07007490ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007491M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07007492S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007493F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07007494
Linus Torvalds1da177e2005-04-16 15:20:36 -07007495THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07007496M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07007497L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007498Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04007499T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007500S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07007501F: *
7502F: */