blob: 37cbe1495c6ea5594e4f3f9efa0f53b68dc9da40 [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 Kirsherca7a8e82011-03-30 03:47:06 -0700216F: drivers/net/ethernet/3com/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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700320M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200321L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700323F: Documentation/hwmon/adm1025
324F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Corentin Labbecae2caa2007-02-14 21:15:04 +0100326ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700327M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100328L: lm-sensors@lm-sensors.org
329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700330F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100331
Michael Wucc0b88c2007-08-31 01:15:25 -0400332ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400333L: linux-wireless@vger.kernel.org
334W: http://linuxwireless.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400335S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700336F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400337
Michael Hennerich527a1a82010-10-28 11:31:28 +0000338ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
339M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100340L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700341W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000342S: Supported
343F: drivers/mfd/adp5520.c
344F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700345F: drivers/leds/leds-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000346F: drivers/gpio/adp5520-gpio.c
347F: drivers/input/keyboard/adp5520-keys.c
348
349ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
350M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100351L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700352W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000353S: Supported
354F: drivers/input/keyboard/adp5588-keys.c
355F: drivers/gpio/adp5588-gpio.c
356
357ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
358M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100359L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700360W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000361S: Supported
362F: drivers/video/backlight/adp8860_bl.c
363
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100364ADS1015 HARDWARE MONITOR DRIVER
365M: Dirk Eibach <eibach@gdsys.de>
366L: lm-sensors@lm-sensors.org
367S: Maintained
368F: Documentation/hwmon/ads1015
369F: drivers/hwmon/ads1015.c
370F: include/linux/i2c/ads1015.h
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700373M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700375F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Jean Delvareb058b852009-12-09 20:36:08 +0100377ADT7475 HARDWARE MONITOR DRIVER
378M: Jean Delvare <khali@linux-fr.org>
379L: lm-sensors@lm-sensors.org
380S: Maintained
381F: Documentation/hwmon/adt7475
382F: drivers/hwmon/adt7475.c
383
Michael Hennerich527a1a82010-10-28 11:31:28 +0000384ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
385M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100386L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700387W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000388S: Supported
389F: drivers/input/misc/adxl34x.c
390
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400391ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700392M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400393L: linux-scsi@vger.kernel.org
394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700395F: Documentation/scsi/advansys.txt
396F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700399M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700401F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200404L: linux-fsdevel@vger.kernel.org
405S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700406F: Documentation/filesystems/affs.txt
407F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700409AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700410M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700411L: linux-afs@lists.infradead.org
412S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700413F: fs/afs/
414F: include/net/af_rxrpc.h
415F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700418M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700419T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700421F: drivers/char/agp/
422F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700425M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426L: linux-scsi@vger.kernel.org
427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700428F: drivers/scsi/aha152x*
429F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Hannes Reinecke64624d42007-10-19 10:32:29 +0200431AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700432M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200433L: linux-scsi@vger.kernel.org
434S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700435F: drivers/scsi/aic7xxx/
436F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200437
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700438AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700439M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700440L: linux-aio@kvack.org
441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700442F: fs/aio.c
443F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700446M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700447L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448W: http://www.linux-usb.org/SpeedTouch/
449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700450F: drivers/usb/atm/speedtch.c
451F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Pierre Ossman272f1332007-05-14 21:25:26 +0200453ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700454M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700456F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200457
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000458ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700459M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100460L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700462F: Documentation/i2c/busses/i2c-ali1563
463F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700466M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700467M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500468M: Matt Turner <mattst88@gmail.com>
Cheng Renquana9406692009-03-31 15:23:35 -0700469L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700470F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Tobias Klauseradf92512011-02-09 10:58:29 +0100472ALTERA UART/JTAG UART SERIAL DRIVERS
473M: Tobias Klauser <tklauser@distanz.ch>
474L: linux-serial@vger.kernel.org
475L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
476S: Maintained
477F: drivers/tty/serial/altera_uart.c
478F: drivers/tty/serial/altera_jtaguart.c
479F: include/linux/altera_uart.h
480F: include/linux/altera_jtaguart.h
481
Andreas Herrmann512d1022011-05-25 20:43:31 +0200482AMD FAM15H PROCESSOR POWER MONITORING DRIVER
483M: Andreas Herrmann <andreas.herrmann3@amd.com>
484L: lm-sensors@lm-sensors.org
485S: Maintained
486F: Documentation/hwmon/fam15h_power
487F: drivers/hwmon/fam15h_power.c
488
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700489AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700490M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700491L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700492S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700493F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700494
Jordan Crousef90b8112006-01-06 00:12:14 -0800495AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800496P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700497L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800498W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
499S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700500F: drivers/char/hw_random/geode-rng.c
501F: drivers/crypto/geode*
502F: drivers/video/geode/
503F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800504
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200505AMD IOMMU (AMD-VI)
Joe Perches8b58be82009-07-29 15:04:30 -0700506M: Joerg Roedel <joerg.roedel@amd.com>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200507L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -0700508T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200509S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700510F: arch/x86/kernel/amd_iommu*.c
511F: arch/x86/include/asm/amd_iommu*.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200512
Peter Orubae7f5b302008-07-28 18:44:11 +0200513AMD MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700514M: Andreas Herrmann <andreas.herrmann3@amd.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700515L: amd64-microcode@amd64.org
516S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700517F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200518
Stelian Pop284f42b2006-12-12 18:18:31 +0100519AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700520M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100521S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200522F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100523
Tom Tuckerf94b5332006-09-22 15:22:48 -0700524AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700525M: Tom Tucker <tom@opengridcomputing.com>
526M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700527L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700529F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700530
Michael Hennerich527a1a82010-10-28 11:31:28 +0000531ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100532L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000533L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700534W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000535S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100536F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200537F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000538F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000539F: sound/soc/codecs/ssm*
540
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400541ANALOG DEVICES INC ASOC DRIVERS
542L: uclinux-dist-devel@blackfin.uclinux.org
543L: alsa-devel@alsa-project.org (moderated for non-subscribers)
544W: http://blackfin.uclinux.org/
545S: Supported
546F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400547
Johannes Berg42269062006-07-25 16:15:50 +0200548AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700549M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000550L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700551L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700553F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200556M: Jiri Kosina <jkosina@suse.cz>
557S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700558F: arch/x86/kernel/apm_32.c
559F: include/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200560F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700562APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700563M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700564L: linux-input@vger.kernel.org
565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700566F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700567
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700568APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200569M: Henrik Rydberg <rydberg@euromail.se>
570L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700572F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700575M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700577F: drivers/net/appletalk/
578F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Viresh Kumara4801672011-02-22 15:46:07 +0530580ARASAN COMPACT FLASH PATA CONTROLLER
581M: Viresh Kumar <viresh.kumar@st.com>
582L: linux-ide@vger.kernel.org
583S: Maintained
584F: include/linux/pata_arasan_cf_data.h
585F: drivers/ata/pata_arasan_cf.c
586
Jaya Kumar1154ea72005-06-21 17:17:04 -0700587ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700588M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700590F: drivers/video/arcfb.c
591F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700594M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700596F: arch/arm/lib/floppydma.S
597F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Will Deacon6f965212011-07-01 14:38:53 +0100599ARM PMU PROFILING AND DEBUGGING
600M: Will Deacon <will.deacon@arm.com>
601S: Maintained
602F: arch/arm/kernel/perf_event*
603F: arch/arm/oprofile/common.c
604F: arch/arm/kernel/pmu.c
605F: arch/arm/include/asm/pmu.h
606F: arch/arm/kernel/hw_breakpoint.c
607F: arch/arm/include/asm/hw_breakpoint.h
608
Russell Kingd4275352009-04-16 14:05:27 +0100609ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700610M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700611L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100612W: http://www.arm.linux.org.uk/
613S: Maintained
614F: arch/arm/
615
Russell Kingcefbf4e2009-11-22 17:40:28 +0000616ARM PRIMECELL AACI PL041 DRIVER
617M: Russell King <linux@arm.linux.org.uk>
618S: Maintained
619F: sound/arm/aaci.*
620
621ARM PRIMECELL CLCD PL110 DRIVER
622M: Russell King <linux@arm.linux.org.uk>
623S: Maintained
624F: drivers/video/amba-clcd.*
625
626ARM PRIMECELL KMI PL050 DRIVER
627M: Russell King <linux@arm.linux.org.uk>
628S: Maintained
629F: drivers/input/serio/ambakmi.*
630F: include/linux/amba/kmi.h
631
Russell King2761f5c2007-05-24 06:56:08 +0200632ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200633S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700634F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200635
Russell Kingcefbf4e2009-11-22 17:40:28 +0000636ARM PRIMECELL BUS SUPPORT
637M: Russell King <linux@arm.linux.org.uk>
638S: Maintained
639F: drivers/amba/
640F: include/linux/amba/bus.h
641
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800642ARM/ADI ROADRUNNER MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700643M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700644L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700646F: arch/arm/mach-ixp23xx/
647F: arch/arm/mach-ixp23xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800648
649ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700650M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700651L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800652S: Maintained
653
Sergey Lapin9c784f92008-08-03 02:29:48 +0100654ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700655M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700656L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100657S: Maintained
658
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800659ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700660M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700661L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800662S: Maintained
663
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800664ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700665M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800666M: Nicolas Ferre <nicolas.ferre@atmel.com>
667M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700668L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200669W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800670W: http://www.linux4sam.org
671S: Supported
672F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100673
Leo Chen57a473f2009-08-12 22:08:48 +0100674ARM/BCMRING ARM ARCHITECTURE
Jiandong Zhengd6db4662010-12-14 21:55:49 +0000675M: Jiandong Zheng <jdzheng@broadcom.com>
Russell Kingddd559b2009-09-12 12:02:26 +0100676M: Scott Branden <sbranden@broadcom.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700677L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800678S: Maintained
Leo Chen57a473f2009-08-12 22:08:48 +0100679F: arch/arm/mach-bcmring
680
681ARM/BCMRING MTD NAND DRIVER
Jiandong Zhengd6db4662010-12-14 21:55:49 +0000682M: Jiandong Zheng <jdzheng@broadcom.com>
Russell Kingddd559b2009-09-12 12:02:26 +0100683M: Scott Branden <sbranden@broadcom.com>
Leo Chen57a473f2009-08-12 22:08:48 +0100684L: linux-mtd@lists.infradead.org
685S: Maintained
686F: drivers/mtd/nand/bcm_umi_nand.c
687F: drivers/mtd/nand/bcm_umi_bch.c
Leo Chen57a473f2009-08-12 22:08:48 +0100688F: drivers/mtd/nand/nand_bcm_umi.h
689
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300690ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
691M: Anton Vorontsov <avorontsov@mvista.com>
692S: Maintained
693F: arch/arm/mach-cns3xxx/
694T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
695
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800696ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100697M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000698M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700699L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800700S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100701F: arch/arm/mach-ep93xx/
702F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800703
704ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700705M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700706L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800707S: Maintained
708
Russell Kingd4275352009-04-16 14:05:27 +0100709ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700710M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700711L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100712F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700713F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100714
Mike Rapoportd48134e2008-08-20 09:03:26 +0100715ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700716M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700717L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100718S: Maintained
719
Hubert Feurstein94150092009-10-07 08:36:07 +0100720ARM/CONTEC MICRO9 MACHINE SUPPORT
721M: Hubert Feurstein <hubert.feurstein@contec.at>
722S: Maintained
723F: arch/arm/mach-ep93xx/micro9.c
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700726M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727S: Maintained
728
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200729ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100730M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700731L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100732T: git git://git.berlios.de/gemini-board
733S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300734F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200735
Barry Songa990cbd2011-07-12 21:44:10 +0800736ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
737M: Barry Song <baohua.song@csr.com>
738L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
739S: Maintained
740F: arch/arm/mach-prima2/
741
Russell Kingd4275352009-04-16 14:05:27 +0100742ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700743M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700744L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100745W: http://www.arm.linux.org.uk/
746S: Maintained
747F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700748F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100749
Russell Kinga9da4f72008-07-12 21:42:04 +0100750ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700751M: Daniel Ribeiro <drwyrm@gmail.com>
752M: Stefan Schmidt <stefan@openezx.org>
753M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200754L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100755W: http://www.openezx.org/
756S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200757T: topgit git://git.openezx.org/openezx.git
758F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100759
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200760ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100761M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700762L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100763S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700764T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300765F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200766
Russell Kingd4275352009-04-16 14:05:27 +0100767ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700768M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700769L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100770W: http://www.arm.linux.org.uk/
771S: Maintained
772F: arch/arm/include/asm/hardware/dec21285.h
773F: arch/arm/mach-footbridge/
774
Sascha Hauer86183a52008-07-24 23:50:35 +0200775ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700776M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700777L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200778S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700779T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Uwe Kleine-Königb16533d2009-11-30 16:53:24 +0100780F: arch/arm/mach-mx*/
781F: arch/arm/plat-mxc/
Sascha Hauer86183a52008-07-24 23:50:35 +0200782
Amit Kucheria3d48e1d2010-02-04 15:57:29 -0800783ARM/FREESCALE IMX51
784M: Amit Kucheria <amit.kucheria@canonical.com>
785L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
786S: Maintained
787F: arch/arm/mach-mx5/
788
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800789ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700790M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700791L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800792S: Maintained
793
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100794ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700795M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700796L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100797S: Maintained
798
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200799ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700800M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200801S: Maintained
802F: arch/arm/mach-pxa/hx4700.c
803F: arch/arm/mach-pxa/include/mach/hx4700.h
804
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100805ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700806M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200807W: www.jlime.com
808S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700809T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
810F: arch/arm/mach-sa1100/jornada720.c
811F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100812
Marek Vasut403d2972010-05-22 00:29:39 +0200813ARM/INCOME PXA270 SUPPORT
814M: Marek Vasut <marek.vasut@gmail.com>
815L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
816S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700817F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200818
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800819ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700820M: Lennert Buytenhek <kernel@wantstofly.org>
821M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700822L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700823S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100824
825ARM/INTEL IOP33X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700826M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700827L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700828S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800829
830ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700831M: Lennert Buytenhek <kernel@wantstofly.org>
832M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700833L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700834S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800835
836ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700837M: Lennert Buytenhek <kernel@wantstofly.org>
838M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700839L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700840S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800841
842ARM/INTEL IXP2000 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700843M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700844L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800845S: Maintained
846
847ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700848M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700849L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800850S: Maintained
851
852ARM/INTEL IXP23XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700853M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700854L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800855S: Maintained
856
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200857ARM/INTEL IXP4XX ARM ARCHITECTURE
858M: Imre Kaloz <kaloz@openwrt.org>
859M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100860L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200861S: Maintained
862F: arch/arm/mach-ixp4xx/
863
Joe Perches838553c2010-10-26 14:22:59 -0700864ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100865M: Jonathan Cameron <jic23@cam.ac.uk>
866L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
867S: Maintained
868F: arch/arm/mach-pxa/stargate2.c
869F: drivers/pcmcia/pxa2xx_stargate2.c
870
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800871ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700872M: Lennert Buytenhek <kernel@wantstofly.org>
873M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700874L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700875S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800876
877ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700878M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700879L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800880S: Maintained
881
882ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700883M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700884L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800885S: Maintained
886
Philipp Zabel3b8861712008-07-09 21:27:15 +0100887ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700888M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100889S: Maintained
890
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400891ARM/Marvell Loki/Kirkwood/MV78xx0/Orion SOC support
Nicolas Pitre18e28422010-05-03 16:43:47 -0400892M: Lennert Buytenhek <kernel@wantstofly.org>
893M: Nicolas Pitre <nico@fluxnic.net>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700894L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre18e28422010-05-03 16:43:47 -0400895S: Odd Fixes
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400896F: arch/arm/mach-loki/
897F: arch/arm/mach-kirkwood/
898F: arch/arm/mach-mv78xx0/
899F: arch/arm/mach-orion5x/
900F: arch/arm/plat-orion/
901
Alexander Clouterd69ac132011-04-14 15:22:02 -0700902ARM/Orion SoC/Technologic Systems TS-78xx platform support
903M: Alexander Clouter <alex@digriz.org.uk>
904L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
905W: http://www.digriz.org.uk/ts78xx/kernel
906S: Maintained
907F: arch/arm/mach-orion5x/ts78xx-*
908
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200909ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700910M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700911L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200912F: arch/arm/mach-pxa/mioa701.c
913S: Maintained
914
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100915ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700916M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100917S: Maintained
918
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100919ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700920M: Alessandro Rubini <rubini@unipv.it>
Linus Walleij87572882010-12-22 09:18:29 +0100921M: Linus Walleij <linus.walleij@stericsson.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700922M: STEricsson <STEricsson_nomadik_linux@list.st.com>
923L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
924S: Maintained
925F: arch/arm/mach-nomadik/
926F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100927F: drivers/i2c/busses/i2c-nomadik.c
928T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100929
Andy Green9d762952009-05-19 06:41:42 -0300930ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700931M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300932L: openmoko-kernel@lists.openmoko.org (subscribers-only)
933W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
934S: Supported
935
Daniel Walker0c19d212009-12-07 16:53:51 -0800936ARM/QUALCOMM MSM MACHINE SUPPORT
937M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -0800938M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -0800939M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -0800940L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -0800941F: arch/arm/mach-msm/
942F: drivers/video/msm/
943F: drivers/mmc/host/msm_sdcc.c
944F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800945F: drivers/tty/serial/msm_serial.h
946F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -0700947F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -0700948F: drivers/*/pm8???-*
949F: include/linux/mfd/pm8xxx/
Daniel Walker6c965ff2010-12-09 15:45:27 -0800950T: git git://codeaurora.org/quic/kernel/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -0800951S: Maintained
952
Dirk Opfer8459c152005-11-06 14:27:52 +0000953ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700954M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
955M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000956S: Maintained
957
Marek Vasut5d783a22009-07-16 13:26:48 +0200958ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -0700959M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +0200960L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100961W: http://hackndev.com
962S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700963F: arch/arm/mach-pxa/include/mach/palmtx.h
964F: arch/arm/mach-pxa/palmtx.c
965F: arch/arm/mach-pxa/include/mach/palmt5.h
966F: arch/arm/mach-pxa/palmt5.c
967F: arch/arm/mach-pxa/include/mach/palmld.h
968F: arch/arm/mach-pxa/palmld.c
969F: arch/arm/mach-pxa/include/mach/palmte2.h
970F: arch/arm/mach-pxa/palmte2.c
971F: arch/arm/mach-pxa/include/mach/palmtc.h
972F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100973
Joe Perchesb57fe922009-12-14 18:00:52 -0800974ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700975M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +0200976L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200977W: http://hackndev.com
978S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -0800979F: arch/arm/mach-pxa/include/mach/palmtreo.h
980F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200981
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100982ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700983M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +0200984L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -0700985W: http://hackndev.com
986S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700987F: arch/arm/mach-pxa/include/mach/palmz72.h
988F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700991M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
993S: Maintained
994
995ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700996M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700997L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998W: http://www.arm.linux.org.uk/
999S: Maintained
1000
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001001ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001002M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001003L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001004S: Maintained
1005
Russell Kingd4275352009-04-16 14:05:27 +01001006ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001007M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001008L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001009W: http://www.arm.linux.org.uk/
1010S: Maintained
1011F: arch/arm/common/time-acorn.c
1012F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1013F: arch/arm/include/asm/hardware/ioc.h
1014F: arch/arm/include/asm/hardware/iomd.h
1015F: arch/arm/include/asm/hardware/memc.h
1016F: arch/arm/mach-rpc/
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001017F: drivers/net/ethernet/i825xx/ether1*
1018F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001019F: drivers/scsi/arm/
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001022M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023W: http://www.shark-linux.de/shark.html
1024S: Maintained
1025
Ben Dooksb21477f2009-06-13 10:46:34 +01001026ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001027M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001028M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001029L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001030W: http://www.fluff.org/ben/linux/
1031S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001032F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001033F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001034F: arch/arm/plat-s5p/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001035F: drivers/*/*s3c2410*
1036F: drivers/*/*/*s3c2410*
Ben Dooksb21477f2009-06-13 10:46:34 +01001037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038ARM/S3C2410 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001039M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001040L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041W: http://www.fluff.org/ben/linux/
1042S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +01001043F: arch/arm/mach-s3c2410/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Joe Perches85743532010-10-26 14:23:00 -07001045ARM/S3C244x ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001046M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001047L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048W: http://www.fluff.org/ben/linux/
1049S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +01001050F: arch/arm/mach-s3c2440/
Ben Dooksb21477f2009-06-13 10:46:34 +01001051F: arch/arm/mach-s3c2443/
1052
Joe Perchesf9962312010-10-26 14:23:01 -07001053ARM/S3C64xx ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001054M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001055L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001056W: http://www.fluff.org/ben/linux/
1057S: Maintained
Joe Perchesf9962312010-10-26 14:23:01 -07001058F: arch/arm/mach-s3c64xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001060ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001061M: Kukjin Kim <kgene.kim@samsung.com>
1062L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1063L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1064S: Maintained
1065F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001066F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001067
Kyungmin Park10ffa962011-03-04 17:36:26 -08001068ARM/SAMSUNG MOBILE MACHINE SUPPORT
1069M: Kyungmin Park <kyungmin.park@samsung.com>
1070L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1071S: Maintained
1072F: arch/arm/mach-s5pv210/mach-aquila.c
1073F: arch/arm/mach-s5pv210/mach-goni.c
1074F: arch/arm/mach-exynos4/mach-universal_c210.c
1075F: arch/arm/mach-exynos4/mach-nuri.c
1076
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001077ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1078M: Kyungmin Park <kyungmin.park@samsung.com>
1079M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1080L: linux-arm-kernel@lists.infradead.org
1081L: linux-media@vger.kernel.org
1082S: Maintained
1083F: arch/arm/plat-s5p/dev-fimc*
1084F: arch/arm/plat-samsung/include/plat/*fimc*
1085F: drivers/media/video/s5p-fimc/
1086
Paul Mundtd48d38e2010-02-08 12:50:24 +09001087ARM/SHMOBILE ARM ARCHITECTURE
1088M: Paul Mundt <lethal@linux-sh.org>
1089M: Magnus Damm <magnus.damm@gmail.com>
1090L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001091W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001092Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtd22c0e52010-11-10 18:09:14 +09001093T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest
Paul Mundtd48d38e2010-02-08 12:50:24 +09001094S: Supported
1095F: arch/arm/mach-shmobile/
1096F: drivers/sh/
1097
Thomas Gleixner448352a2010-09-17 20:27:30 +02001098ARM/TELECHIPS ARM ARCHITECTURE
Hans J. Koch6a534c92011-04-14 15:22:16 -07001099M: "Hans J. Koch" <hjk@hansjkoch.de>
Thomas Gleixner448352a2010-09-17 20:27:30 +02001100L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1101S: Maintained
1102F: arch/arm/plat-tcc/
1103F: arch/arm/mach-tcc8k/
1104
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001105ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001106M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001107L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001108S: Maintained
1109
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001110ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001111M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001112L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1113S: Maintained
1114
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001115ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001116M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001117L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001118S: Maintained
1119
wanzongshun98ad6e32009-02-13 06:04:32 +01001120ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001121M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001122L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001123W: http://www.mcuos.com
1124S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001125F: arch/arm/mach-w90x900/
1126F: arch/arm/mach-nuc93x/
1127F: drivers/input/keyboard/w90p910_keypad.c
1128F: drivers/input/touchscreen/w90p910_ts.c
1129F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001130F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001131F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001132F: drivers/rtc/rtc-nuc900.c
1133F: drivers/spi/spi_nuc900.c
1134F: drivers/usb/host/ehci-w90x900.c
1135F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001136
Linus Walleij54274d72010-04-04 10:58:03 +01001137ARM/U300 MACHINE SUPPORT
1138M: Linus Walleij <linus.walleij@stericsson.com>
1139L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1140S: Supported
1141F: arch/arm/mach-u300/
1142F: drivers/i2c/busses/i2c-stu300.c
1143F: drivers/rtc/rtc-coh901331.c
1144F: drivers/watchdog/coh901327_wdt.c
1145F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001146F: drivers/mfd/ab3100*
1147F: drivers/rtc/rtc-ab3100.c
1148F: drivers/rtc/rtc-coh901331.c
1149T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001150
Linus Walleij87572882010-12-22 09:18:29 +01001151ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001152M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleij87572882010-12-22 09:18:29 +01001153M: Linus Walleij <linus.walleij@stericsson.com>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001154L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1155S: Maintained
1156F: arch/arm/mach-ux500/
Linus Walleij87572882010-12-22 09:18:29 +01001157F: drivers/dma/ste_dma40*
1158F: drivers/mfd/ab3550*
1159F: drivers/mfd/abx500*
1160F: drivers/mfd/ab8500*
1161F: drivers/mfd/stmpe*
1162F: drivers/rtc/rtc-ab8500.c
1163T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001164
Russell Kingd4275352009-04-16 14:05:27 +01001165ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001166M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001167L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001168W: http://www.arm.linux.org.uk/
1169S: Maintained
1170F: arch/arm/vfp/
1171
Marek Vasute66b6d82010-03-26 06:51:32 +01001172ARM/VOIPAC PXA270 SUPPORT
1173M: Marek Vasut <marek.vasut@gmail.com>
1174L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1175S: Maintained
1176F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001177F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001178
1179ARM/ZIPIT Z2 SUPPORT
1180M: Marek Vasut <marek.vasut@gmail.com>
1181L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1182S: Maintained
1183F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001184F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001185
George Josephd58de032010-03-05 22:17:25 +01001186ASC7621 HARDWARE MONITOR DRIVER
1187M: George Joseph <george.joseph@fairview5.com>
1188L: lm-sensors@lm-sensors.org
1189S: Maintained
1190F: Documentation/hwmon/asc7621
1191F: drivers/hwmon/asc7621.c
1192
Corentin Charyb229ece2011-02-26 10:20:40 +01001193ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001194M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001196L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001197W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001199F: drivers/platform/x86/asus*.c
1200F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001202ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001203M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001204L: lm-sensors@lm-sensors.org
1205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001206F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001207
Andrew Morton953a6472008-11-06 12:53:28 -08001208ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Joe Perches8b58be82009-07-29 15:04:30 -07001209M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001210W: http://sourceforge.net/projects/xscaleiop
1211S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001212F: Documentation/crypto/async-tx-api.txt
1213F: crypto/async_tx/
1214F: drivers/dma/
1215F: include/linux/dmaengine.h
1216F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001217
Wolfram Sanga1867d32009-09-18 22:45:51 +02001218AT24 EEPROM DRIVER
1219M: Wolfram Sang <w.sang@pengutronix.de>
1220L: linux-i2c@vger.kernel.org
1221S: Maintained
1222F: drivers/misc/eeprom/at24.c
1223F: include/linux/i2c/at24.h
1224
Randy Dunlape7839f22008-10-12 16:11:45 -07001225ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001226M: "Ed L. Cashin" <ecashin@coraid.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227W: http://www.coraid.com/support/linux
1228S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001229F: Documentation/aoe/
1230F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Joe Perches9a10a872010-12-01 09:37:55 -08001232ATHEROS ATH GENERIC UTILITIES
1233M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
1234L: linux-wireless@vger.kernel.org
1235S: Supported
1236F: drivers/net/wireless/ath/*
1237
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001238ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001239M: Jiri Slaby <jirislaby@gmail.com>
1240M: Nick Kossifidis <mickflemm@gmail.com>
1241M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
1242M: Bob Copeland <me@bobcopeland.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001243L: linux-wireless@vger.kernel.org
1244L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001245W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001246S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001247F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001248
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001249ATHEROS ATH9K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001250M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
1251M: Jouni Malinen <jmalinen@atheros.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001252M: Vasanthakumar Thiagarajan <vasanth@atheros.com>
1253M: Senthil Balasubramanian <senthilkumar@atheros.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001254L: linux-wireless@vger.kernel.org
1255L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001256W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001257S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001258F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001259
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001260CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1261M: Christian Lamparter <chunkeey@googlemail.com>
1262L: linux-wireless@vger.kernel.org
1263W: http://wireless.kernel.org/en/users/Drivers/carl9170
1264S: Maintained
1265F: drivers/net/wireless/ath/carl9170/
1266
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001267ATK0110 HWMON DRIVER
1268M: Luca Tettamanti <kronos.it@gmail.com>
1269L: lm-sensors@lm-sensors.org
1270S: Maintained
1271F: drivers/hwmon/asus_atk0110.c
1272
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001273ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001274M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001276F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001277
Chris Snook7ae115b2008-09-09 03:26:57 -04001278ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001279M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001280M: Chris Snook <chris.snook@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001281M: Jie Yang <jie.yang@atheros.com>
Chris Snooke443e382010-09-16 22:00:28 -07001282L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001283W: http://sourceforge.net/projects/atl1
1284W: http://atl1.sourceforge.net
1285S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001286F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001289M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001290L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001291L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292W: http://linux-atm.sourceforge.net
1293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001294F: drivers/atm/
1295F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Pierre Ossman272f1332007-05-14 21:25:26 +02001297ATMEL AT91 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001298M: Nicolas Ferre <nicolas.ferre@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001299L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001300W: http://www.atmel.com/products/AT91/
1301W: http://www.at91.com/
1302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001303F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001304
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001305ATMEL AT91 / AT32 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001306M: Nicolas Ferre <nicolas.ferre@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001307S: Maintained
1308F: drivers/mmc/host/atmel-mci.c
1309F: drivers/mmc/host/atmel-mci-regs.h
1310
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001311ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001312M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001313S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001314F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001315
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001316ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001317M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001318L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001320F: drivers/video/atmel_lcdfb.c
1321F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001322
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001323ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001324M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001325S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001326F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001327
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001328ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001329M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001330S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001331F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001332
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001333ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001334M: Nicolas Ferre <nicolas.ferre@atmel.com>
1335L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001336W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1337S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001338F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001341M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001342L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343W: http://www.thekelleys.org.uk/atmel
1344W: http://atmelwlandriver.sourceforge.net/
1345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001346F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Chris Wrighta92b7b82005-07-07 18:12:23 -07001348AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001349M: Al Viro <viro@zeniv.linux.org.uk>
1350M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001351L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001352W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001353T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001355F: include/linux/audit.h
1356F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001357
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001358AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001359M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001360W: http://miguelojeda.es/auxdisplay.htm
1361W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001363F: drivers/auxdisplay/
1364F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001365
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001366AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001367M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1368M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001369W: http://www.atmel.com/products/AVR32/
1370W: http://avr32linux.org/
1371W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001373F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001374
1375AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001376M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1377M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001379F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001382M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001384W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001386F: include/linux/ax25.h
1387F: include/net/ax25.h
1388F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001390B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001391M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001392L: linux-wireless@vger.kernel.org
1393W: http://linuxwireless.org/en/users/Drivers/b43
1394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001395F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001396
1397B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001398M: Larry Finger <Larry.Finger@lwfinger.net>
1399M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001400L: linux-wireless@vger.kernel.org
1401W: http://linuxwireless.org/en/users/Drivers/b43
1402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001403F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001404
Richard Purdie300abeb2007-02-07 22:21:07 +00001405BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001406M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001408F: drivers/video/backlight/
1409F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001410
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001411BATMAN ADVANCED
1412M: Marek Lindner <lindner_marek@yahoo.de>
1413M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001414L: b.a.t.m.a.n@lists.open-mesh.org
1415W: http://www.open-mesh.org/
1416S: Maintained
1417F: net/batman-adv/
1418
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001419BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001420M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001421L: linux-hams@vger.kernel.org
1422W: http://www.baycom.org/~tom/ham/ham.html
1423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001424F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001425
1426BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001427S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001428F: Documentation/filesystems/befs.txt
1429F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001430
1431BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001432M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001434F: Documentation/filesystems/bfs.txt
1435F: fs/bfs/
1436F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001437
Bryan Wu1394f032007-05-06 14:50:22 -07001438BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001439M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001440L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001441W: http://blackfin.uclinux.org
1442S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001443F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001444
Bryan Wue190d6b2007-07-17 14:43:44 +08001445BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001446L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001447W: http://blackfin.uclinux.org
1448S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001449F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001450
Mike Frysinger566da5b2007-06-11 15:31:30 +08001451BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001452M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001453L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001454W: http://blackfin.uclinux.org
1455S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001456F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001457
Mike Frysinger936ed492010-03-10 15:20:38 -08001458BLACKFIN SDH DRIVER
1459M: Cliff Cai <cliff.cai@analog.com>
1460L: uclinux-dist-devel@blackfin.uclinux.org
1461W: http://blackfin.uclinux.org
1462S: Supported
1463F: drivers/mmc/host/bfin_sdh.c
1464
Bryan Wu1394f032007-05-06 14:50:22 -07001465BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001466M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001467L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001468W: http://blackfin.uclinux.org
1469S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001470F: drivers/tty/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001471
Bryan Wu1e6d3202007-07-15 02:50:02 +08001472BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001473M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001474L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001475W: http://blackfin.uclinux.org
1476S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001477F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001478
Bryan Wud24ecfc2007-05-01 23:26:32 +02001479BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001480M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001481L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001482W: http://blackfin.uclinux.org/
1483S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001484F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001487M: Jens Axboe <axboe@kernel.dk>
Joe Perches54e58812009-04-07 21:08:10 -07001488T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001490F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Joern Engel2b54aae2008-02-06 01:38:02 -08001492BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001493M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001494L: linux-mtd@lists.infradead.org
1495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001496F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001497
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001498BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001499M: Marcel Holtmann <marcel@holtmann.org>
Joe Perches706e69d2011-03-22 16:34:26 -07001500M: "Gustavo F. Padovan" <padovan@profusion.mobi>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001501L: linux-bluetooth@vger.kernel.org
1502W: http://www.bluez.org/
Gustavo F. Padovanb3c05982010-10-08 09:13:28 -03001503T: git git://git.kernel.org/pub/scm/linux/kernel/git/padovan/bluetooth-2.6.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001505F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001506
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001508M: Marcel Holtmann <marcel@holtmann.org>
Joe Perches706e69d2011-03-22 16:34:26 -07001509M: "Gustavo F. Padovan" <padovan@profusion.mobi>
Pavel Machek781c2842008-03-20 15:41:02 -07001510L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001511W: http://www.bluez.org/
Gustavo F. Padovanb3c05982010-10-08 09:13:28 -03001512T: git git://git.kernel.org/pub/scm/linux/kernel/git/padovan/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001514F: net/bluetooth/
1515F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001518M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001519M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001520L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001521W: http://sourceforge.net/projects/bonding/
1522S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001523F: drivers/net/bonding/
1524F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Gary Zambrano39105892006-06-22 17:26:20 -07001526BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001527M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001528L: netdev@vger.kernel.org
1529S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001530F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001531
Michael Chan948c51e2006-06-04 02:51:39 -07001532BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001533M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001534L: netdev@vger.kernel.org
1535S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001536F: drivers/net/ethernet/broadcom/bnx2.*
1537F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001538
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001539BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001540M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001541L: netdev@vger.kernel.org
1542S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001543F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001544
Michael Chan948c51e2006-06-04 02:51:39 -07001545BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001546M: Matt Carlson <mcarlson@broadcom.com>
1547M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001548L: netdev@vger.kernel.org
1549S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001550F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001551
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001552BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1553M: Brett Rudley <brudley@broadcom.com>
1554M: Henry Ptasinski <henryp@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001555M: Roland Vossen <rvossen@broadcom.com>
1556M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001557M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
1558M: Kan Yan <kanyan@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001559L: linux-wireless@vger.kernel.org
1560S: Supported
1561F: drivers/staging/brcm80211/
1562
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001563BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1564M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1565L: linux-scsi@vger.kernel.org
1566S: Supported
1567F: drivers/scsi/bnx2fc/
1568
Jing Huang7725ccf2009-09-23 17:46:15 -07001569BROCADE BFA FC SCSI DRIVER
Joe Perches455518e2009-11-11 14:26:10 -08001570M: Jing Huang <huangj@brocade.com>
1571L: linux-scsi@vger.kernel.org
1572S: Supported
1573F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001574
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001575BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1576M: Rasesh Mody <rmody@brocade.com>
1577M: Debashis Dutt <ddutt@brocade.com>
1578L: netdev@vger.kernel.org
1579S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001580F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001581
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001582BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001583M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001584L: linux-scsi@vger.kernel.org
1585S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001586F: block/bsg.c
1587F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001588
Clemens Ladischaf399172011-01-10 16:32:54 +01001589BT87X AUDIO DRIVER
1590M: Clemens Ladisch <clemens@ladisch.de>
1591L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1592T: git git://git.alsa-project.org/alsa-kernel.git
1593S: Maintained
1594F: Documentation/sound/alsa/Bt87x.txt
1595F: sound/pci/bt87x.c
1596
Michael Bueschff1d5c22008-07-25 01:46:10 -07001597BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001598M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001599W: http://bu3sch.de/btgpio.php
1600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001601F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001602
Joe Percheseb1eb042009-01-21 10:49:16 -05001603BTRFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001604M: Chris Mason <chris.mason@oracle.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001605L: linux-btrfs@vger.kernel.org
1606W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001607Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Joe Perches54e58812009-04-07 21:08:10 -07001608T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001610F: Documentation/filesystems/btrfs.txt
1611F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001614M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001615L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001616W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001617T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001619F: Documentation/video4linux/bttv/
1620F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
Clemens Ladischaf399172011-01-10 16:32:54 +01001622C-MEDIA CMI8788 DRIVER
1623M: Clemens Ladisch <clemens@ladisch.de>
1624L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1625T: git git://git.alsa-project.org/alsa-kernel.git
1626S: Maintained
1627F: sound/pci/oxygen/
1628
David Howellsa5432f52009-04-20 15:46:45 +01001629CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001630M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001631L: linux-cachefs@redhat.com
1632S: Supported
1633F: Documentation/filesystems/caching/cachefiles.txt
1634F: fs/cachefiles/
1635
Jonathan Corbet77d51402007-03-22 19:44:17 -03001636CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001637M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001638L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001639T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001641F: Documentation/video4linux/cafe_ccic
1642F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001643
Joe Perches201b6ba2010-09-07 20:33:24 +00001644CAIF NETWORK LAYER
1645M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1646L: netdev@vger.kernel.org
1647S: Supported
1648F: Documentation/networking/caif/
1649F: drivers/net/caif/
1650F: include/linux/caif/
1651F: include/net/caif/
1652F: net/caif/
1653
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001654CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001655M: Muli Ben-Yehuda <muli@il.ibm.com>
1656M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001657L: discuss@x86-64.org
1658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001659F: arch/x86/kernel/pci-calgary_64.c
1660F: arch/x86/kernel/tce_64.c
1661F: arch/x86/include/asm/calgary.h
1662F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001663
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001664CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001665M: Oliver Hartkopp <socketcan@hartkopp.net>
Joe Perches8b58be82009-07-29 15:04:30 -07001666M: Oliver Hartkopp <oliver.hartkopp@volkswagen.de>
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001667M: Urs Thuermann <urs.thuermann@volkswagen.de>
Mike Frysinger7cacd432011-06-24 17:42:14 -07001668L: socketcan-core@lists.berlios.de (subscribers-only)
Wolfgang Grandegger42d38042010-03-08 12:51:41 -08001669L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001670W: http://developer.berlios.de/projects/socketcan/
1671S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001672F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001673F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001674F: include/linux/can/core.h
1675F: include/linux/can/bcm.h
1676F: include/linux/can/raw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001677
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001678CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001679M: Wolfgang Grandegger <wg@grandegger.com>
Mike Frysinger7cacd432011-06-24 17:42:14 -07001680L: socketcan-core@lists.berlios.de (subscribers-only)
Wolfgang Grandegger42d38042010-03-08 12:51:41 -08001681L: netdev@vger.kernel.org
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001682W: http://developer.berlios.de/projects/socketcan/
1683S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001684F: drivers/net/can/
1685F: include/linux/can/dev.h
1686F: include/linux/can/error.h
1687F: include/linux/can/netlink.h
1688F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001689
Arnd Bergmannb8154542008-05-16 11:10:59 +02001690CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001691M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001692L: linuxppc-dev@lists.ozlabs.org
1693L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001694W: http://www.ibm.com/developerworks/power/cell/
1695S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001696F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001697F: arch/powerpc/include/asm/spu*.h
1698F: arch/powerpc/oprofile/*cell*
1699F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001700
Sage Weil9030aaf2009-10-06 11:31:15 -07001701CEPH DISTRIBUTED FILE SYSTEM CLIENT
1702M: Sage Weil <sage@newdream.net>
Sage Weil82593f82010-03-29 09:53:23 -07001703L: ceph-devel@vger.kernel.org
Sage Weil9030aaf2009-10-06 11:31:15 -07001704W: http://ceph.newdream.net/
Sage Weilfb99f882009-12-03 15:04:08 -08001705T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001706S: Supported
1707F: Documentation/filesystems/ceph.txt
1708F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001709F: net/ceph
1710F: include/linux/ceph
Sage Weil9030aaf2009-10-06 11:31:15 -07001711
David Vrabel18332a82008-09-17 16:34:44 +01001712CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001713L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001714S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001715F: Documentation/usb/WUSB-Design-overview.txt
1716F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001717F: drivers/usb/host/hwa-hc.c
1718F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001719F: drivers/usb/wusbcore/
1720F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001721
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001722CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001723M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001724W: http://miguelojeda.es/auxdisplay.htm
1725W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001727F: drivers/auxdisplay/cfag12864b.c
1728F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001729
1730CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001731M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001732W: http://miguelojeda.es/auxdisplay.htm
1733W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001735F: drivers/auxdisplay/cfag12864bfb.c
1736F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001737
Johannes Berg704232c2007-04-23 12:20:05 -07001738CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001739M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001740L: linux-wireless@vger.kernel.org
1741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001742F: include/linux/nl80211.h
1743F: include/net/cfg80211.h
1744F: net/wireless/*
1745X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001746
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001747CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001748M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001749S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001750F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001751
Harry Weif8407f262011-02-25 14:44:15 -08001752CHINESE DOCUMENTATION
1753M: Harry Wei <harryxiyou@gmail.com>
1754L: xiyoulinuxkernelgroup@googlegroups.com
1755L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1756S: Maintained
1757F: Documentation/zh_CN/
1758
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001759CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001760M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001761M: Vasanthy Kolluri <vkolluri@cisco.com>
1762M: Roopa Prabhu <roprabhu@cisco.com>
Vasanthy Kolluri94d57c42010-09-30 13:36:05 +00001763M: David Wang <dwang2@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001764S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001765F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001766
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001767CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001768M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001769L: netdev@vger.kernel.org
1770S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001771F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001772
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001773CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001774M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001775L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001777F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001778
Timur Tabid9e9d822008-04-24 08:45:26 +10001779CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001780M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001781L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001782S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001783F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001784
Russell Kingd4275352009-04-16 14:05:27 +01001785CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001786M: Russell King <linux@arm.linux.org.uk>
Russell Kingd4275352009-04-16 14:05:27 +01001787F: include/linux/clk.h
1788
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001789CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001790M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001791M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1792M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001793L: linux-scsi@vger.kernel.org
1794S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001795F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001796
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001797CMPC ACPI DRIVER
1798M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1799M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001800L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001801S: Supported
1802F: drivers/platform/x86/classmate-laptop.c
1803
Nicolas Palix74425ee2010-06-06 17:15:01 +02001804COCCINELLE/Semantic Patches (SmPL)
1805M: Julia Lawall <julia@diku.dk>
1806M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palixaf78f212010-10-08 21:27:36 +02001807M: Nicolas Palix <npalix.work@gmail.com>
Nicolas Palix74425ee2010-06-06 17:15:01 +02001808L: cocci@diku.dk (moderated for non-subscribers)
1809W: http://coccinelle.lip6.fr/
1810S: Supported
1811F: scripts/coccinelle/
1812F: scripts/coccicheck
1813
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001815M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816M: coda@cs.cmu.edu
1817L: codalist@coda.cs.cmu.edu
1818W: http://www.coda.cs.cmu.edu/
1819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001820F: Documentation/filesystems/coda.txt
1821F: fs/coda/
1822F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001824COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07001825M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04001826L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08001827L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001828W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001829Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07001830T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001831S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001832F: Documentation/filesystems/cifs.txt
1833F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001836M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001837L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001839F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
1841COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001842M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001843L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001845F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
1847COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001848M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001849L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001851F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001853COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001854M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05001855L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001857F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859COMPUTONE INTELLIPORT MULTIPORT CARD
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860W: http://www.wittsend.com/computone.html
Joe Perchesc8974012011-04-14 15:22:05 -07001861S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001862F: Documentation/serial/computone.txt
Joe Perchesc8974012011-04-14 15:22:05 -07001863F: drivers/staging/tty/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Simon Arlott949be0f2007-03-06 02:47:46 -08001865CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001866M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001867L: accessrunner-general@lists.sourceforge.net
1868W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001870F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001871
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001872CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08001873M: Joel Becker <jlbec@evilplan.org>
1874T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001875S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001876F: fs/configfs/
1877F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001878
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001879CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07001880M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001881L: netdev@vger.kernel.org
1882S: Maintained
1883F: drivers/connector/
1884
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001885CONTROL GROUPS (CGROUPS)
Joe Perches8b58be82009-07-29 15:04:30 -07001886M: Paul Menage <menage@google.com>
1887M: Li Zefan <lizf@cn.fujitsu.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001888L: containers@lists.linux-foundation.org
1889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001890F: include/linux/cgroup*
1891F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07001892F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001893
Rudolf Marekbebe4672007-05-08 17:22:02 +02001894CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02001895M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02001896L: lm-sensors@lm-sensors.org
1897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001898F: Documentation/hwmon/coretemp
1899F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001902M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903W: http://www.fi.muni.cz/~kas/cosa/
1904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001905F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Florian Fainelli4371ee32009-06-01 02:43:17 -07001907CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001908M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07001909L: netdev@vger.kernel.org
1910S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07001911F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07001912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913CPU FREQUENCY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001914M: Dave Jones <davej@redhat.com>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001915L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001917T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001919F: drivers/cpufreq/
1920F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
1922CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001923M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001925F: arch/x86/kernel/cpuid.c
1926F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02001928CPU POWER MONITORING SUBSYSTEM
1929M: Dominik Brodowski <linux@dominikbrodowski.net>
1930M: Thomas Renninger <trenn@suse.de>
1931S: Maintained
1932F: tools/power/cpupower
1933
Paul Jacksoned90fb42005-09-27 21:45:37 -07001934CPUSETS
Joe Perches8b58be82009-07-29 15:04:30 -07001935M: Paul Menage <menage@google.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07001936W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001937W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001938S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001939F: Documentation/cgroups/cpusets.txt
1940F: include/linux/cpuset.h
1941F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001944W: http://sourceforge.net/projects/cramfs/
1945S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001946F: Documentation/filesystems/cramfs.txt
1947F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
1949CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001950M: Mikael Starvik <starvik@axis.com>
1951M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02001952L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953W: http://developer.axis.com
1954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001955F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001956F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
1958CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07001959M: Herbert Xu <herbert@gondor.apana.org.au>
1960M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001962T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001964F: Documentation/crypto/
1965F: arch/*/crypto/
1966F: crypto/
1967F: drivers/crypto/
1968F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
Neil Horman5b07bd52009-02-05 16:03:04 +11001970CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07001971M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11001972L: linux-crypto@vger.kernel.org
1973S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07001974F: crypto/ansi_cprng.c
1975F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11001976
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001977CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07001978M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001980F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001981
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001982CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03001983M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02001984L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001985L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001986T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001987W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07001988W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001990F: Documentation/video4linux/cx18.txt
1991F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001992
Steve Wisee5ec3782008-05-20 14:06:33 -07001993CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07001994M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07001995L: netdev@vger.kernel.org
1996W: http://www.chelsio.com
1997S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07001998F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001999
2000CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002001M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002002L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002003W: http://www.openfabrics.org
2004S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002005F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002006
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002007CXGB4 ETHERNET DRIVER (CXGB4)
2008M: Dimitris Michailidis <dm@chelsio.com>
2009L: netdev@vger.kernel.org
2010W: http://www.chelsio.com
2011S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002012F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002013
2014CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2015M: Steve Wise <swise@chelsio.com>
2016L: linux-rdma@vger.kernel.org
2017W: http://www.openfabrics.org
2018S: Supported
2019F: drivers/infiniband/hw/cxgb4/
2020
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002021CXGB4VF ETHERNET DRIVER (CXGB4VF)
2022M: Casey Leedom <leedom@chelsio.com>
2023L: netdev@vger.kernel.org
2024W: http://www.chelsio.com
2025S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002026F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002027
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002028STMMAC ETHERNET DRIVER
2029M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2030L: netdev@vger.kernel.org
2031W: http://www.stlinux.com
2032S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002033F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002036M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002037L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038W: http://www.arm.linux.org.uk/
2039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002040F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002041
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002043M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002044W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002046F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
2048CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002050S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002051F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002052F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
2054CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002056S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002057F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002060M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061W: http://yaina.de/jreuter/
2062W: http://www.qsl.net/dl1bke/
2063L: linux-hams@vger.kernel.org
2064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002065F: net/ax25/af_ax25.c
2066F: net/ax25/ax25_dev.c
2067F: net/ax25/ax25_ds_*
2068F: net/ax25/ax25_in.c
2069F: net/ax25/ax25_out.c
2070F: net/ax25/ax25_timer.c
2071F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002073DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002074L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002075S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002076F: Documentation/networking/dmfe.txt
Jeff Kirshera88394c2011-05-20 07:15:19 -07002077F: drivers/net/ethernet/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002078
2079DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002080M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002081W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002082M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002084F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002085
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086DC395x SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002087M: Oliver Neukum <oliver@neukum.name>
2088M: Ali Akcaagac <aliakc@web.de>
2089M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002091L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092L: http://lists.twibble.org/mailman/listinfo/dc395x/
2093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002094F: Documentation/scsi/dc395x.txt
2095F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002097DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002098M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002099L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002100W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002102F: include/linux/dccp.h
2103F: include/linux/tfrc.h
2104F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107W: http://linux-decnet.sourceforge.net
2108L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002109S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002110F: Documentation/networking/decnet.txt
2111F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
2113DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002114M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002116F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002118DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002119M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002120L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002122F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002125M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126W: http://www.debian.org/~dz/i8k/
2127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002128F: drivers/char/i8k.c
2129F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
Doug Warzecha90563ec2005-09-06 15:17:15 -07002131DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002132M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002134F: Documentation/dcdbas.txt
2135F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002136
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002137DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002138M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002139S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002140F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002143M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145S: Maintained
2146
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002147DEVICE-MAPPER (LVM)
2148P: Alasdair Kergon
2149L: dm-devel@redhat.com
2150W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002151Q: http://patchwork.kernel.org/project/dm-devel/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002153F: Documentation/device-mapper/
2154F: drivers/md/dm*
2155F: include/linux/device-mapper.h
2156F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002157
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158DIGI INTL. EPCA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002159M: "Digi International, Inc" <Eng.Linux@digi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160L: Eng.Linux@digi.com
2161W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002162S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002163F: Documentation/serial/digiepca.txt
Joe Perchesc8974012011-04-14 15:22:05 -07002164F: drivers/staging/tty/epca*
2165F: drivers/staging/tty/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
Guenter Roeck335d7c52011-01-26 11:45:49 -08002167DIOLAN U2C-12 I2C DRIVER
2168M: Guenter Roeck <guenter.roeck@ericsson.com>
2169L: linux-i2c@vger.kernel.org
2170S: Maintained
2171F: drivers/i2c/busses/i2c-diolan-u2c.c
2172
Randy Dunlape7839f22008-10-12 16:11:45 -07002173DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002174M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002176F: Documentation/filesystems/dnotify.txt
2177F: fs/notify/dnotify/
2178F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
2180DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002181M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2183W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2184W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2185S: Maintained
2186
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002187DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002188M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002190F: Documentation/filesystems/quota.txt
2191F: fs/quota/
2192F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
Randy Dunlape7839f22008-10-12 16:11:45 -07002194DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002195M: Christine Caulfield <ccaulfie@redhat.com>
2196M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002197L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002198W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002199T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002200S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002201F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002202
Dan Williamsb3e5f262007-08-07 10:26:35 -07002203DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002204M: Vinod Koul <vinod.koul@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002205M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002206S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002207F: drivers/dma/
2208F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302209T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2210T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002211
Juerg Haefligerb8250372007-06-09 10:11:16 -04002212DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002213M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002214L: lm-sensors@lm-sensors.org
2215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002216F: Documentation/hwmon/dme1737
2217F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002218
Martin Waitzba483d52005-06-17 13:20:59 -07002219DOCBOOK FOR DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07002220M: Randy Dunlap <rdunlap@xenotime.net>
Martin Waitzba483d52005-06-17 13:20:59 -07002221S: Maintained
Randy Dunlap5d3efe02010-11-18 12:27:37 -08002222F: scripts/kernel-doc
Martin Waitzba483d52005-06-17 13:20:59 -07002223
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002224DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002225M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002226L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002227S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002228F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002229
Joe Perches7d2c86b2009-04-07 20:59:01 -07002230DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07002231M: Randy Dunlap <rdunlap@xenotime.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002232L: linux-doc@vger.kernel.org
Randy Dunlap0dcb6d72011-07-06 11:19:56 -07002233T: quilt http://userweb.kernel.org/~rdunlap/kernel-doc-patches/current/
Jean Delvare795fb7e2008-09-20 12:33:08 +02002234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002235F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002236
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002238M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239L: blinux-list@redhat.com
2240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002241F: drivers/char/dtlk.c
2242F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002244DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002245M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002246L: linux-scsi@vger.kernel.org
2247W: http://www.adaptec.com/
2248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002249F: drivers/scsi/dpt*
2250F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002251
Philipp Reisnerb411b362009-09-25 16:07:19 -07002252DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002253P: Philipp Reisner
2254P: Lars Ellenberg
2255M: drbd-dev@lists.linbit.com
2256L: drbd-user@lists.linbit.com
2257W: http://www.drbd.org
2258T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2259T: git git://git.drbd.org/drbd-8.3.git
2260S: Supported
2261F: drivers/block/drbd/
2262F: lib/lru_cache.c
2263F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002264
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002265DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Joe Perches8b58be82009-07-29 15:04:30 -07002266M: Greg Kroah-Hartman <gregkh@suse.de>
Greg Kroah-Hartmane658e9f2010-11-09 09:12:42 -08002267T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002269F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002270F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002271F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002272F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002273F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002274F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002275F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
2277DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002278M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002279L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002280T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002282F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002283F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
Chris Wilson8daf7472010-09-28 14:07:26 +01002285INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Keith Packard704df8d2011-05-11 07:58:08 -07002286M: Keith Packard <keithp@keithp.com>
Joe Perchescc840f72010-11-23 22:36:42 -08002287L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002288L: dri-devel@lists.freedesktop.org
Keith Packard704df8d2011-05-11 07:58:08 -07002289T: git git://git.kernel.org/pub/scm/linux/kernel/git/keithp/linux-2.6.git
Chris Wilson8daf7472010-09-28 14:07:26 +01002290S: Supported
2291F: drivers/gpu/drm/i915
2292F: include/drm/i915*
2293
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002295M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002296L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002298F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002300DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002301M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002302S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002303F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002304
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002306M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002307L: linux-eata@i-connect.net
2308L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002310F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
2312EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002313M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314L: linux-scsi@vger.kernel.org
2315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002316F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
2318EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002319M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002320L: linux-eata@i-connect.net
2321L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002323F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
2325EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002326M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002327L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328W: http://ebtables.sourceforge.net/
2329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002330F: include/linux/netfilter_bridge/ebt_*.h
2331F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
Michael Halcrow237fead2006-10-04 02:16:22 -07002333ECRYPT FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002334M: Tyler Hicks <tyhicks@linux.vnet.ibm.com>
2335M: Dustin Kirkland <kirkland@canonical.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002336L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002337W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002338S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002339F: Documentation/filesystems/ecryptfs.txt
2340F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002341
Alan Coxda9bb1d2006-01-18 17:44:13 -08002342EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002343M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002344L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002345W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002346S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002347F: Documentation/edac.txt
2348F: drivers/edac/edac_*
2349F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002350
Borislav Petkovc476c232009-05-20 20:31:58 +02002351EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002352M: Doug Thompson <dougthompson@xmission.com>
2353M: Borislav Petkov <borislav.petkov@amd.com>
Borislav Petkovc476c232009-05-20 20:31:58 +02002354L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2355W: bluesmoke.sourceforge.net
2356S: Supported
2357F: drivers/edac/amd64_edac*
2358
Dave Peterson0e438e32006-03-26 01:38:55 -08002359EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002360M: Mark Gross <mark.gross@intel.com>
2361M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002362L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002363W: bluesmoke.sourceforge.net
2364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002365F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002366
2367EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002368M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002369L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002370W: bluesmoke.sourceforge.net
2371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002372F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002373
Douglas Thompson6bc78402007-07-19 01:50:12 -07002374EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002375M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002376L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002377W: bluesmoke.sourceforge.net
2378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002379F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002380
2381EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002382M: Jason Uhlenkott <juhlenko@akamai.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002383L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002384W: bluesmoke.sourceforge.net
2385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002386F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002387
2388EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002389M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002390L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002391W: bluesmoke.sourceforge.net
2392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002393F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002394
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002395EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002396M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002397L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002398W: bluesmoke.sourceforge.net
2399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002400F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002401
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002402EDAC-I7300
2403M: Mauro Carvalho Chehab <mchehab@redhat.com>
2404L: linux-edac@vger.kernel.org
2405W: bluesmoke.sourceforge.net
2406S: Maintained
2407F: drivers/edac/i7300_edac.c
2408
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002409EDAC-I7CORE
2410M: Mauro Carvalho Chehab <mchehab@redhat.com>
2411L: linux-edac@vger.kernel.org
2412W: bluesmoke.sourceforge.net
2413S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002414F: drivers/edac/i7core_edac.c
2415F: drivers/edac/edac_mce.c
2416F: include/linux/edac_mce.h
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002417
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002418EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002419M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302420M: "Arvind R." <arvino55@gmail.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002421L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002422W: bluesmoke.sourceforge.net
2423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002424F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002425
2426EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002427M: Egor Martovetsky <egor@pasemi.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002428L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002429W: bluesmoke.sourceforge.net
2430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002431F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002432
Dave Peterson0e438e32006-03-26 01:38:55 -08002433EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002434M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002435L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002436W: bluesmoke.sourceforge.net
2437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002438F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002439
Clemens Ladischaf399172011-01-10 16:32:54 +01002440EDIROL UA-101/UA-1000 DRIVER
2441M: Clemens Ladisch <clemens@ladisch.de>
2442L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2443T: git git://git.alsa-project.org/alsa-kernel.git
2444S: Maintained
2445F: sound/usb/misc/ua101.c
2446
Peter Jones85a00d92010-09-22 13:05:04 -07002447EFIFB FRAMEBUFFER DRIVER
2448L: linux-fbdev@vger.kernel.org
2449M: Peter Jones <pjones@redhat.com>
2450S: Maintained
2451F: drivers/video/efifb.c
2452
Josh Triplett0bee8d22006-07-30 03:03:58 -07002453EFS FILESYSTEM
2454W: http://aeschi.ch.eu.org/efs/
2455S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002456F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002457
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002458EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002459M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2460M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002461L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002462S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002463F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002464
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002465EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
2466M: Breno Leitao <leitao@linux.vnet.ibm.com>
2467L: netdev@vger.kernel.org
2468S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002469F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002470
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002471EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002472M: Paul Gortmaker <paul.gortmaker@windriver.com>
2473M: Matt Mackall <mpm@selenic.com>
2474M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002475L: linux-embedded@vger.kernel.org
2476S: Maintained
2477
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002478EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002479M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002480L: linux-scsi@vger.kernel.org
2481W: http://sourceforge.net/projects/lpfcxxxx
2482S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002483F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002484
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002485ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002486M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002487S: Maintained
2488F: drivers/misc/cb710/
2489F: drivers/mmc/host/cb710-mmc.*
2490F: include/linux/cb710.h
2491
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002492ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2493M: Maxim Levitsky <maximlevitsky@gmail.com>
2494S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002495F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002496
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002498M: Christopher Hoover <ch@murgatroid.com>
2499M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002501F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002503EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002504M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002505S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002506T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002507F: drivers/video/s1d13xxxfb.c
2508F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002509
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002511M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002512L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002514F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
2516ETHERNET BRIDGE
Joe Perches8b58be82009-07-29 15:04:30 -07002517M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07002518L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002519L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002520W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002522F: include/linux/netfilter_bridge/
2523F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
2525ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002526M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002528F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
2530EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002531M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002532L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002534F: Documentation/filesystems/ext2.txt
2535F: fs/ext2/
2536F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
2538EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002539M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002540M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002541M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002542L: linux-ext4@vger.kernel.org
2543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002544F: Documentation/filesystems/ext3.txt
2545F: fs/ext3/
2546F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002547
2548EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002549M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002550M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002551L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002552W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002553Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002555F: Documentation/filesystems/ext4.txt
2556F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
Jean Delvaree53004e2006-01-09 23:26:14 +01002558F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002559M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002560L: lm-sensors@lm-sensors.org
2561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002562F: Documentation/hwmon/f71805f
2563F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002564
Eric Paris88b2dbd2010-08-18 12:25:50 -04002565FANOTIFY
2566M: Eric Paris <eparis@redhat.com>
2567S: Maintained
2568F: fs/notify/fanotify/
2569F: include/linux/fanotify.h
2570
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002572M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573W: http://www.farsite.co.uk/
2574S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002575F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576
Akinobu Mitac5408b82007-04-23 14:41:20 -07002577FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002578M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07002579S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002580F: Documentation/fault-injection/
2581F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002582
Robert Lovecae727d2010-02-16 12:16:00 -08002583FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
2584M: Robert Love <robert.w.love@intel.com>
2585L: devel@open-fcoe.org
2586W: www.Open-FCoE.org
2587S: Supported
2588F: drivers/scsi/libfc/
2589F: drivers/scsi/fcoe/
2590F: include/scsi/fc/
2591F: include/scsi/libfc.h
2592F: include/scsi/libfcoe.h
2593
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002594FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07002595M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002596L: linux-fsdevel@vger.kernel.org
2597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002598F: include/linux/fcntl.h
2599F: include/linux/fs.h
2600F: fs/fcntl.c
2601F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002602
2603FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07002604M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002605L: linux-fsdevel@vger.kernel.org
2606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002607F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002608
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002609FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02002610M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002611L: lm-sensors@lm-sensors.org
2612S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002613F: drivers/hwmon/f75375s.c
2614F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002615
Clemens Ladischa331b0c2011-05-25 09:48:48 +02002616FIREWIRE AUDIO DRIVERS
2617M: Clemens Ladisch <clemens@ladisch.de>
2618L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2619T: git git://git.alsa-project.org/alsa-kernel.git
2620S: Maintained
2621F: sound/firewire/
2622
Joe Perches7d2c86b2009-04-07 20:59:01 -07002623FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002624M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002625L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01002626W: http://ieee1394.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07002627T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002628S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002629F: drivers/firewire/
2630F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02002631F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002632
2633FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002634S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002635F: Documentation/firmware_class/
2636F: drivers/base/firmware*.c
2637F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002638
2639FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002640M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07002641W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002643F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002644
2645FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002646L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00002647S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002648F: drivers/net/wan/dlci.c
2649F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002650
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651FRAMEBUFFER LAYER
Paul Mundt56be1412011-03-23 08:29:07 +09002652M: Paul Mundt <lethal@linux-sh.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002653L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09002655Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Paul Mundtfc5fef52010-11-15 13:25:31 +09002656T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/fbdev-2.6.git
Paul Mundt56be1412011-03-23 08:29:07 +09002657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002658F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09002659F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09002660F: drivers/video/
2661F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07002662F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663
Zhang Wei173acc72008-03-01 07:42:48 -07002664FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002665M: Li Yang <leoli@freescale.com>
2666M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002667L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002669F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002670
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002671FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002672M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002673L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002674L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002676F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002677
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002678FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002679M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002680L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07002681L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002683F: arch/arm/plat-mxc/include/mach/imxfb.h
2684F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002685
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002686FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002687M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
2688M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002689L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002690L: netdev@vger.kernel.org
2691S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07002692F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07002693F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002694
Timur Tabid9e9d822008-04-24 08:45:26 +10002695FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07002696M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002697L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10002698S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002699F: arch/powerpc/sysdev/qe_lib/
2700F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002701
Joe Perchesb55ef9292009-10-26 16:49:46 -07002702FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002703M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002704L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002705L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002706S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08002707F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07002708
Li Yangbeaf53b2007-05-25 13:54:02 +08002709FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002710M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08002711L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002712L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002713S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07002714F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002715
Timur Tabid9e9d822008-04-24 08:45:26 +10002716FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002717M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002718L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10002719S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002720F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002721
2722FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002723M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07002724L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002725L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10002726S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002727F: sound/soc/fsl/fsl*
2728F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002729
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002731M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002734F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735
Pavel Machek71038f52009-01-15 13:51:02 -08002736FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07002737M: Pavel Machek <pavel@ucw.cz>
2738M: "Rafael J. Wysocki" <rjw@sisk.pl>
Pavel Machek71038f52009-01-15 13:51:02 -08002739L: linux-pm@lists.linux-foundation.org
2740S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002741F: Documentation/power/freezing-of-tasks.txt
2742F: include/linux/freezer.h
2743F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002744
David Howellsa5432f52009-04-20 15:46:45 +01002745FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002746M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01002747L: linux-cachefs@redhat.com
2748S: Supported
2749F: Documentation/filesystems/caching/
2750F: fs/fscache/
2751F: include/linux/fscache*.h
2752
David Howells5ab7ffe2007-04-10 15:10:45 +01002753FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002754M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002756F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
Jonathan Woithe20b93732008-06-11 10:14:56 +09302758FUJITSU LAPTOP EXTRAS
Joe Perches8b58be82009-07-29 15:04:30 -07002759M: Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
Matthew Garrettd0944852010-02-11 10:40:13 -05002760L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09302761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002762F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302763
Miklos Szeredi04578f12005-09-09 13:10:22 -07002764FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07002765M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07002766L: fuse-devel@lists.sourceforge.net
2767W: http://fuse.sourceforge.net/
2768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002769F: fs/fuse/
2770F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002771
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07002773M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002775S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002776F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
2778GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002779M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780L: linux-scsi@vger.kernel.org
2781W: http://www.icp-vortex.com/
2782S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002783F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002785GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07002786M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002787S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002788F: drivers/i2c/busses/i2c-gpio.c
2789F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002790
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01002791GENERIC GPIO I2C MULTIPLEXER DRIVER
2792M: Peter Korsgaard <peter.korsgaard@barco.com>
2793L: linux-i2c@vger.kernel.org
2794S: Supported
2795F: drivers/i2c/muxes/gpio-i2cmux.c
2796F: include/linux/gpio-i2cmux.h
2797F: Documentation/i2c/muxes/gpio-i2cmux
2798
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002799GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002800M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002803F: drivers/net/wan/c101.c
2804F: drivers/net/wan/hd6457*
2805F: drivers/net/wan/hdlc*
2806F: drivers/net/wan/n2.c
2807F: drivers/net/wan/pc300too.c
2808F: drivers/net/wan/pci200syn.c
2809F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002811GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07002812M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002813L: linux-arch@vger.kernel.org
2814T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
2815S: Maintained
2816F: include/asm-generic
2817
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002818GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07002819M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002820L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002821S: Supported
2822F: drivers/uio/uio_pci_generic.c
2823
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002824GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002825M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002826L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002827W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002828T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2829T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002830S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002831F: Documentation/filesystems/gfs2*.txt
2832F: fs/gfs2/
2833F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002834
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002835GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002836M: Hansjoerg Lipp <hjlipp@web.de>
2837M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002838L: gigaset307x-common@lists.sourceforge.net
2839W: http://gigaset307x.sourceforge.net/
2840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002841F: Documentation/isdn/README.gigaset
2842F: drivers/isdn/gigaset/
2843F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002844
Grant Likelya0dc00b2011-02-12 01:48:14 -07002845GPIO SUBSYSTEM
2846M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelya0dc00b2011-02-12 01:48:14 -07002847S: Maintained
2848T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07002849F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07002850F: drivers/gpio/
2851F: include/linux/gpio*
2852
Harry Wei71a6d0a2011-05-11 15:13:33 -07002853GRE DEMULTIPLEXER DRIVER
2854M: Dmitry Kozlov <xeb@mail.ru>
2855L: netdev@vger.kernel.org
2856S: Maintained
2857F: net/ipv4/gre.c
2858F: include/net/gre.h
2859
Kristoffer Glembod4c41132010-02-15 03:33:44 +00002860GRETH 10/100/1G Ethernet MAC device driver
2861M: Kristoffer Glembo <kristoffer@gaisler.com>
2862L: netdev@vger.kernel.org
2863S: Maintained
2864F: drivers/net/greth*
2865
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002866GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002867M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002868L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002869T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002871F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002872
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03002873GSPCA GL860 SUBDRIVER
2874M: Olivier Lorin <o.lorin@laposte.net>
2875L: linux-media@vger.kernel.org
2876T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2877S: Maintained
2878F: drivers/media/video/gspca/gl860/
2879
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002880GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002881M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002882L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002883T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002885F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002886
2887GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002888M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002889L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002890T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002892F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002893
Brian Johnson261982f2009-07-19 15:58:56 -03002894GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03002895M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03002896L: linux-media@vger.kernel.org
2897T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2898S: Maintained
2899F: drivers/media/video/gspca/sn9c20x.c
2900
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002901GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002902M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002903L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002904T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002906F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002907
2908GSPCA USB WEBCAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002909M: Jean-Francois Moine <moinejf@free.fr>
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002910W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002911L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002912T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002914F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002915
Harry Wei71a6d0a2011-05-11 15:13:33 -07002916HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
2917M: Frank Seidel <frank@f-seidel.de>
2918L: platform-driver-x86@vger.kernel.org
2919W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
2920S: Maintained
2921F: drivers/platform/x86/hdaps.c
2922
2923HWPOISON MEMORY FAILURE HANDLING
2924M: Andi Kleen <andi@firstfloor.org>
2925L: linux-mm@kvack.org
2926T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
2927S: Maintained
2928F: mm/memory-failure.c
2929F: mm/hwpoison-inject.c
2930
2931HYPERVISOR VIRTUAL CONSOLE DRIVER
2932L: linuxppc-dev@lists.ozlabs.org
2933S: Odd Fixes
2934F: drivers/tty/hvc/
2935
Jean Delvare5b543962005-08-15 19:51:02 +02002936HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02002937M: Jean Delvare <khali@linux-fr.org>
2938M: Guenter Roeck <guenter.roeck@ericsson.com>
Jean Delvare5b543962005-08-15 19:51:02 +02002939L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002940W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02002941T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07002942T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02002943S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01002944F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07002945F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01002946F: include/linux/hwmon*.h
Jean Delvare5b543962005-08-15 19:51:02 +02002947
Michael Buesch844dd052006-06-26 00:24:59 -07002948HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07002949M: Matt Mackall <mpm@selenic.com>
2950M: Herbert Xu <herbert@gondor.apana.org.au>
2951S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07002952F: Documentation/hw_random.txt
2953F: drivers/char/hw_random/
2954F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002955
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956HARMONY SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002957M: Kyle McMartin <kyle@mcmartin.ca>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002958L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002960F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002962HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002963M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002964L: iss_storagedev@hp.com
2965S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002966F: Documentation/blockdev/cpqarray.txt
2967F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002968
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05002969HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07002970M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05002971L: iss_storagedev@hp.com
2972S: Supported
2973F: Documentation/scsi/hpsa.txt
2974F: drivers/scsi/hpsa*.[ch]
2975F: include/linux/cciss*.h
2976
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002977HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07002978M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002979L: iss_storagedev@hp.com
2980S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002981F: Documentation/blockdev/cciss.txt
2982F: drivers/block/cciss*
2983F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002984
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02002986L: linux-fsdevel@vger.kernel.org
2987S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002988F: Documentation/filesystems/hfs.txt
2989F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
2991HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002992M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993L: linux-nvidia@lists.surfsouth.com
2994W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002996F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002998HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07002999M: Pavel Machek <pavel@ucw.cz>
3000M: "Rafael J. Wysocki" <rjw@sisk.pl>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003001L: linux-pm@lists.linux-foundation.org
3002S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003003F: arch/x86/power/
3004F: drivers/base/power/
3005F: kernel/power/
3006F: include/linux/suspend.h
3007F: include/linux/freezer.h
3008F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003009F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003010
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003011HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003012M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003013L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003014T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003016F: drivers/hid/
3017F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003018
Ingo Molnar38bed542007-02-22 09:09:34 +01003019HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003020M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar38bed542007-02-22 09:09:34 +01003021S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003022F: Documentation/timers/
3023F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003024F: kernel/time/clockevents.c
3025F: kernel/time/tick*.*
3026F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003027F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003028F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003029
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030HIGH-SPEED SCC DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07003031M: Klaus Kudielka <klaus.kudielka@ieee.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032L: linux-hams@vger.kernel.org
3033W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
3034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003035F: drivers/net/hamradio/dmascc.c
3036F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003038HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003039M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003040W: http://www.highpoint-tech.com
3041S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003042F: Documentation/scsi/hptiop.txt
3043F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003044
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003046M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047L: linux-hippi@sunsite.dk
3048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003049F: include/linux/hippidevice.h
3050F: include/linux/if_hippi.h
3051F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052
Jouni Malinenff1d2762005-05-12 22:54:16 -04003053HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003054M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003055L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003056L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003057W: http://hostap.epitest.fi/
3058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003059F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003060
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003061HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003062L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003063S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003064F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003065
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003066HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003067M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003068S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003069F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003070
Joe Perches7d2c86b2009-04-07 20:59:01 -07003071HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003072M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003074F: Documentation/timers/hpet.txt
3075F: drivers/char/hpet.c
3076F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003077
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003078HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003079M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003081F: arch/x86/kernel/hpet.c
3082F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003083
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003085M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003088F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089
Joe Perches7d2c86b2009-04-07 20:59:01 -07003090HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003091M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003092W: http://www.pharscape.org
3093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003094F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003095
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003096HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003097M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003098L: linux-input@vger.kernel.org
3099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003100F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003101
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003103M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003105F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003107I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003108M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003109L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003111F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003112
Jean Delvare5b543962005-08-15 19:51:02 +02003113I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003114M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
3115M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003116L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003117W: http://i2c.wiki.kernel.org/
3118T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Uwe Kleine-König0e533002010-01-25 10:20:34 +01003119T: git git://git.fluff.org/bjdooks/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003121F: Documentation/i2c/
3122F: drivers/i2c/
3123F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003124F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125
Till Harbaume8c76ee2007-05-01 23:26:35 +02003126I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003127M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003128L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003129W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003131F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003132
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003134M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003136F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137
3138i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003139M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003140T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141S: Maintained
3142
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003144M: Tony Luck <tony.luck@intel.com>
3145M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146L: linux-ia64@vger.kernel.org
3147W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07003148T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003150F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152IBM MCA SCSI SUBSYSTEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003153M: Michael Lang <langa2@kph.uni-mainz.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154W: http://www.uni-mainz.de/~langm000/linux.html
3155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003156F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157
3158IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003159M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003161F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162
Santiago Leon9d348af2010-09-03 18:29:53 +00003163IBM Power Virtual Ethernet Device Driver
3164M: Santiago Leon <santil@linux.vnet.ibm.com>
3165L: netdev@vger.kernel.org
3166S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003167F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003168
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169IBM ServeRAID RAID DRIVER
3170P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003171M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003173S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003174F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003176IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003177M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003179Q: http://patchwork.ozlabs.org/project/linux-ide/list/
David S. Miller920d44e2009-06-21 16:11:33 -07003180T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003182F: Documentation/ide/
3183F: drivers/ide/
3184F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003186IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003187M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003188L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003190F: Documentation/cdrom/ide-cd
3191F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
Andy Henroid27471fd2008-10-09 11:45:22 -07003193IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003194M: Andy Henroid <andrew.d.henroid@intel.com>
Andy Henroid27471fd2008-10-09 11:45:22 -07003195L: linux-pm@lists.linux-foundation.org
3196S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003197F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003198
Sergey Lapin02cf2282009-06-08 12:18:50 +00003199IEEE 802.15.4 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003200M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
3201M: Sergey Lapin <slapin@ossfans.org>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003202L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003203W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003204T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003205S: Maintained
3206F: net/ieee802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003207F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003208
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003209IKANOS/ADI EAGLE ADSL USB DRIVER
3210M: Matthieu Castet <castet.matthieu@free.fr>
3211M: Stanislaw Gruszka <stf_xl@wp.pl>
3212S: Maintained
3213F: drivers/usb/atm/ueagle-atm.c
3214
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003215INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003216M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003217S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003218F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003219
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003221L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003222S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003223F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224
3225INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003226M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003227M: Sean Hefty <sean.hefty@intel.com>
3228M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003229L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003230W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003231Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003232T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003234F: Documentation/infiniband/
3235F: drivers/infiniband/
3236F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237
Robert Lovec9f04f52005-07-15 12:21:07 -04003238INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003239M: John McCutchan <john@johnmccutchan.com>
3240M: Robert Love <rlove@rlove.org>
3241M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003243F: Documentation/filesystems/inotify.txt
3244F: fs/notify/inotify/
3245F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003246
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003247INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003248M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3249M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003250L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003251Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003252T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003254F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003255
Henrik Rydberg3267a872010-06-24 19:10:40 -07003256INPUT MULTITOUCH (MT) PROTOCOL
3257M: Henrik Rydberg <rydberg@euromail.se>
3258L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003259T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003260S: Maintained
3261F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003262F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003263K: \b(ABS|SYN)_MT_
3264
Len Brown26717172010-03-08 14:07:30 -05003265INTEL IDLE DRIVER
3266M: Len Brown <lenb@kernel.org>
3267L: linux-pm@lists.linux-foundation.org
3268T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-idle-2.6.git
3269S: Supported
3270F: drivers/idle/intel_idle.c
3271
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003272INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003273M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003274L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003276F: Documentation/fb/intelfb.txt
3277F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003278
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003280M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003281L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003283F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303285INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003286M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003287L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303288W: http://www.lesswatts.org/projects/acpi/
3289S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003290F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303291
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003293M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003295F: arch/x86/kernel/microcode_core.c
3296F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003298INTEL I/OAT DMA DRIVER
Dan Williams9fe3b692010-01-15 01:47:37 -08003299M: Dan Williams <dan.j.williams@intel.com>
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003300S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003301F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003302
David Woodhouse6c8909b2008-10-18 16:12:17 +01003303INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003304M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003305L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003306T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003307S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003308F: drivers/pci/intel-iommu.c
3309F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003310
Dan Williamsb3e5f262007-08-07 10:26:35 -07003311INTEL IOP-ADMA DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003312M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsf00f5102009-08-18 15:21:50 -07003313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003314F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003315
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003316INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003317M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003319F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3320F: arch/arm/mach-ixp4xx/include/mach/npe.h
3321F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3322F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07003323F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07003324F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003325
Michael Buesch844dd052006-06-26 00:24:59 -07003326INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003327M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003329F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003330
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003331INTEL IXP2000 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003332M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003333L: netdev@vger.kernel.org
3334S: Maintained
Jeff Kirsherb47da972011-07-14 22:13:23 -07003335F: drivers/net/ethernet/xscale/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003336
Jeff Kirsher0d164402010-10-05 01:15:17 +00003337INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003338M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3339M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3340M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003341M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3342M: Don Skidmore <donald.c.skidmore@intel.com>
3343M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003344M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003345M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003346M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003347L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003348W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003349T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
3350T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00003352F: Documentation/networking/e100.txt
3353F: Documentation/networking/e1000.txt
3354F: Documentation/networking/e1000e.txt
3355F: Documentation/networking/igb.txt
3356F: Documentation/networking/igbvf.txt
3357F: Documentation/networking/ixgb.txt
3358F: Documentation/networking/ixgbe.txt
3359F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003360F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361
Len Brown6dccf9c2011-07-12 22:29:32 -04003362INTEL MRST PMU DRIVER
3363M: Len Brown <len.brown@intel.com>
3364L: linux-pm@lists.linux-foundation.org
3365S: Supported
3366F: arch/x86/platform/mrst/pmu.*
3367
James Ketrenos826d2ab2005-11-07 18:56:59 -06003368INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Johannes Berg724c6b32007-04-23 12:18:20 -07003369L: linux-wireless@vger.kernel.org
Zhu Yie7fdc952010-06-10 09:44:29 +08003370S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003371F: Documentation/networking/README.ipw2100
3372F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003373
3374INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Johannes Berg724c6b32007-04-23 12:18:20 -07003375L: linux-wireless@vger.kernel.org
Zhu Yie7fdc952010-06-10 09:44:29 +08003376S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003377F: Documentation/networking/README.ipw2200
3378F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003379
Shane Wang4bd96a72010-03-10 14:36:10 +08003380INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
3381M: Joseph Cihula <joseph.cihula@intel.com>
3382M: Shane Wang <shane.wang@intel.com>
3383L: tboot-devel@lists.sourceforge.net
3384W: http://tboot.sourceforge.net
3385T: Mercurial http://www.bughost.org/repos.hg/tboot.hg
3386S: Supported
3387F: Documentation/intel_txt.txt
3388F: include/linux/tboot.h
3389F: arch/x86/kernel/tboot.c
3390
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003391INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003392M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003393M: linux-wimax@intel.com
3394L: wimax@linuxwimax.org
3395S: Supported
3396W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003397F: Documentation/wimax/README.i2400m
3398F: drivers/net/wimax/i2400m/
3399F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003400
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003401INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
3402M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003403L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003404S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003405F: drivers/net/wireless/iwlegacy/
3406
Zhu Yib481de92007-09-25 17:54:57 -07003407INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07003408M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07003409M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07003410L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07003411W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07003412T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07003413S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003414F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003415
Samuel Ortizf6cd53c2009-11-24 11:33:26 +08003416INTEL WIRELESS MULTICOMM 3200 WIFI (iwmc3200wifi)
3417M: Samuel Ortiz <samuel.ortiz@intel.com>
Samuel Ortizf6cd53c2009-11-24 11:33:26 +08003418M: Intel Linux Wireless <ilw@linux.intel.com>
3419L: linux-wireless@vger.kernel.org
3420S: Supported
3421W: http://wireless.kernel.org/en/users/Drivers/iwmc3200wifi
3422F: drivers/net/wireless/iwmc3200wifi/
3423
Ralf Baechlecb109a02007-08-30 23:56:30 -07003424IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003425M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426L: linux-mips@linux-mips.org
3427S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07003428F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429
Ralf Baechlecb109a02007-08-30 23:56:30 -07003430IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003431M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01003432L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003433S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003434F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003435
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003436IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07003437M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003439F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
Francois Romieu1202d6f2007-09-17 17:13:55 -07003441IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003442M: Francois Romieu <romieu@fr.zoreil.com>
3443M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07003444L: netdev@vger.kernel.org
3445S: Maintained
Joe Perches3365a292010-03-28 08:42:16 +00003446F: drivers/net/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07003447
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003448IPATH DRIVER
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07003449M: Mike Marciniszyn <infinipath@qlogic.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003450L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07003451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003452F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003453
Corey Minyard4409ebe2006-04-20 02:43:12 -07003454IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003455M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08003456L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07003457W: http://openipmi.sourceforge.net/
3458S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003459F: Documentation/IPMI.txt
3460F: drivers/char/ipmi/
3461F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003462
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003463IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003464M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003465L: linux-scsi@vger.kernel.org
3466W: http://www.adaptec.com/
3467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003468F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003469
3470IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07003471M: Wensong Zhang <wensong@linux-vs.org>
3472M: Simon Horman <horms@verge.net.au>
3473M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003474L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003475L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003477F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07003478F: include/net/ip_vs.h
3479F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07003480F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
Randy Dunlape7839f22008-10-12 16:11:45 -07003482IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003483M: Jiri Kosina <jkosina@suse.cz>
3484M: David Sterba <dsterba@suse.cz>
David Sterba099dc4f2008-02-07 10:57:12 +01003485S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003486T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08003487F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003488
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003489IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003490M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003491L: netdev@vger.kernel.org
3492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003493F: include/linux/ipx.h
3494F: include/net/ipx.h
3495F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003496
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003498M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07003499L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01003500L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003502S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02003503T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07003504F: Documentation/networking/irda.txt
3505F: drivers/net/irda/
3506F: include/net/irda/
3507F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02003509IRQ SUBSYSTEM
3510M: Thomas Gleixner <tglx@linutronix.de>
3511S: Maintained
3512T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git irq/core
3513F: kernel/irq/
3514
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003515ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07003516M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003518F: Documentation/isapnp.txt
3519F: drivers/pnp/isapnp/
3520F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003521
Harry Wei71a6d0a2011-05-11 15:13:33 -07003522iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
3523M: Peter Jones <pjones@redhat.com>
3524M: Konrad Rzeszutek Wilk <konrad@kernel.org>
3525S: Maintained
3526F: drivers/firmware/iscsi_ibft*
3527
Mike Christie14816b1e2007-11-28 16:22:06 -08003528ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07003529M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08003530L: open-iscsi@googlegroups.com
3531W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003532T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08003533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003534F: drivers/scsi/*iscsi*
3535F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08003536
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003538M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07003539L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07003540L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003542T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003544F: Documentation/isdn/
3545F: drivers/isdn/
3546F: include/linux/isdn.h
3547F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548
3549ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07003550M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07003551L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552W: http://www.melware.de
3553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003554F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555
Jean Delvared6248702010-03-05 22:17:20 +01003556IT87 HARDWARE MONITORING DRIVER
3557M: Jean Delvare <khali@linux-fr.org>
3558L: lm-sensors@lm-sensors.org
3559S: Maintained
3560F: Documentation/hwmon/it87
3561F: drivers/hwmon/it87.c
3562
Hans Verkuil91821ff2007-12-02 09:35:33 -03003563IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03003564M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02003565L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003566L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003567T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003568W: http://www.ivtvdriver.org
3569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003570F: Documentation/video4linux/*.ivtv
3571F: drivers/media/video/ivtv/
3572F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003573
Guenter Roeck4453d732010-08-09 17:21:08 -07003574JC42.4 TEMPERATURE SENSOR DRIVER
3575M: Guenter Roeck <linux@roeck-us.net>
3576L: lm-sensors@lm-sensors.org
3577S: Maintained
3578F: drivers/hwmon/jc42.c
3579F: Documentation/hwmon/jc42
3580
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003581JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06003582M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003583L: jfs-discussion@lists.sourceforge.net
3584W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003585T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05003586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003587F: Documentation/filesystems/jfs.txt
3588F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003589
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003590JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003591M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003592L: netdev@vger.kernel.org
3593S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07003594F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003595
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07003597M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04003598L: linux-mtd@lists.infradead.org
3599W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003601F: fs/jffs2/
3602F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603
Josh Triplettde456d32006-07-30 03:04:00 -07003604JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07003605M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02003606M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003607L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003608S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04003609F: fs/jbd/
3610F: include/linux/ext3_jbd.h
3611F: include/linux/jbd.h
3612
3613JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
3614M: "Theodore Ts'o" <tytso@mit.edu>
3615L: linux-ext4@vger.kernel.org
3616S: Maintained
3617F: fs/jbd2/
3618F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003619
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03003620JSM Neo PCI based serial card
3621M: Breno Leitao <leitao@linux.vnet.ibm.com>
3622L: linux-serial@vger.kernel.org
3623S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003624F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03003625
Clemens Ladischaf399172011-01-10 16:32:54 +01003626K10TEMP HARDWARE MONITORING DRIVER
3627M: Clemens Ladisch <clemens@ladisch.de>
3628L: lm-sensors@lm-sensors.org
3629S: Maintained
3630F: Documentation/hwmon/k10temp
3631F: drivers/hwmon/k10temp.c
3632
Rudolf Marek4660cb32006-10-08 22:01:26 +02003633K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003634M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02003635L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003637F: Documentation/hwmon/k8temp
3638F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639
3640KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02003641M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003642L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02003643S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003644F: Documentation/kbuild/kconfig-language.txt
3645F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646
Vivek Goyalea6c2082006-05-20 14:59:55 -07003647KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07003648M: Vivek Goyal <vgoyal@redhat.com>
3649M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07003650L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003651W: http://lse.sourceforge.net/kdump/
3652S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003653F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003654
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07003656M: Ian Kent <raven@themaw.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657L: autofs@linux.kernel.org
3658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003659F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660
Michal Marek70fb7ba2010-01-29 14:22:43 +01003661KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08003662M: Michal Marek <mmarek@suse.cz>
Michal Marek3631d9a2010-06-29 11:58:42 +02003663T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git for-next
3664T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003665L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08003666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003667F: Documentation/kbuild/
3668F: Makefile
3669F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01003670F: scripts/basic/
3671F: scripts/mk*
3672F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673
3674KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07003675L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07003676W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07003677S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003679KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003680M: "J. Bruce Fields" <bfields@fieldses.org>
3681M: Neil Brown <neilb@suse.de>
Neil Brown16141c02007-12-11 16:16:12 -08003682L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003684S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003685F: fs/nfsd/
3686F: include/linux/nfsd/
3687F: fs/lockd/
3688F: fs/nfs_common/
3689F: net/sunrpc/
3690F: include/linux/lockd/
3691F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692
Avi Kivity426d62e2006-12-13 00:34:03 -08003693KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07003694M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03003695M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003696L: kvm@vger.kernel.org
3697W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003698S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003699F: Documentation/*/kvm.txt
3700F: arch/*/kvm/
3701F: arch/*/include/asm/kvm*
3702F: include/linux/kvm*
3703F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003704
Joerg Roedelad8003d2008-09-10 20:01:07 +02003705KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07003706M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003707L: kvm@vger.kernel.org
3708W: http://kvm.qumranet.com
3709S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003710F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07003711F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003712
Hollis Blanchard513014b2008-04-16 23:28:08 -05003713KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01003714M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003715L: kvm-ppc@vger.kernel.org
3716W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003717S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003718F: arch/powerpc/include/asm/kvm*
3719F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003720
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003721KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07003722M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003723L: kvm-ia64@vger.kernel.org
3724W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003725S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003726F: Documentation/ia64/kvm.txt
3727F: arch/ia64/include/asm/kvm*
3728F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003729
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003730KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07003731M: Carsten Otte <cotte@de.ibm.com>
3732M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003733M: linux390@de.ibm.com
3734L: linux-s390@vger.kernel.org
3735W: http://www.ibm.com/developerworks/linux/linux390/
3736S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003737F: Documentation/s390/kvm.txt
3738F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003739F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01003740F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003741
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003742KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07003743M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07003744W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07003745L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003746S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003747F: include/linux/kexec.h
3748F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003749
David Howellse9714612010-03-29 23:42:09 +01003750KEYS/KEYRINGS:
3751M: David Howells <dhowells@redhat.com>
3752L: keyrings@linux-nfs.org
3753S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07003754F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01003755F: include/linux/key.h
3756F: include/linux/key-type.h
3757F: include/keys/
3758F: security/keys/
3759
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05003760KEYS-TRUSTED
3761M: David Safford <safford@watson.ibm.com>
3762M: Mimi Zohar <zohar@us.ibm.com>
3763L: linux-security-module@vger.kernel.org
3764L: keyrings@linux-nfs.org
3765S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07003766F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05003767F: include/keys/trusted-type.h
3768F: security/keys/trusted.c
3769F: security/keys/trusted.h
3770
3771KEYS-ENCRYPTED
3772M: Mimi Zohar <zohar@us.ibm.com>
3773M: David Safford <safford@watson.ibm.com>
3774L: linux-security-module@vger.kernel.org
3775L: keyrings@linux-nfs.org
3776S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07003777F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05003778F: include/keys/encrypted-type.h
3779F: security/keys/encrypted.c
3780F: security/keys/encrypted.h
3781
Jason Wessel5b778da2010-05-20 21:04:28 -05003782KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07003783M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05003784W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003785L: kgdb-bugreport@lists.sourceforge.net
3786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003787F: Documentation/DocBook/kgdb.tmpl
3788F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003789F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05003790F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07003791F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05003792F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003793
Pekka Enberg456db8c2008-04-28 22:47:29 +03003794KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07003795M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02003796M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03003797S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08003798F: Documentation/kmemcheck.txt
3799F: arch/x86/include/asm/kmemcheck.h
3800F: arch/x86/mm/kmemcheck/
3801F: include/linux/kmemcheck.h
3802F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03003803
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003804KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07003805M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003806S: Maintained
3807F: Documentation/kmemleak.txt
3808F: include/linux/kmemleak.h
3809F: mm/kmemleak.c
3810F: mm/kmemleak-test.c
3811
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003812KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07003813M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
3814M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
3815M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07003816M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003818F: Documentation/kprobes.txt
3819F: include/linux/kprobes.h
3820F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003821
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003822KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003823M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07003824W: http://miguelojeda.es/auxdisplay.htm
3825W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003827F: Documentation/auxdisplay/ks0108
3828F: drivers/auxdisplay/ks0108.c
3829F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003830
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003833S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003834F: Documentation/networking/lapb-module.txt
3835F: include/*/lapb.h
3836F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837
3838LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07003839M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840L: linux-scsi@vger.kernel.org
3841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003842F: Documentation/scsi/53c700.txt
3843F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844
Richard Purdie263de9b2006-05-15 09:44:16 -07003845LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003846M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie263de9b2006-05-15 09:44:16 -07003847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003848F: drivers/leds/
3849F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003850
Jean Delvareb0461a42011-06-15 15:08:46 -07003851LEGACY EEPROM DRIVER
3852M: Jean Delvare <khali@linux-fr.org>
3853S: Maintained
3854F: Documentation/misc-devices/eeprom
3855F: drivers/misc/eeprom/eeprom.c
3856
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07003858M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859L: legousb-devel@lists.sourceforge.net
3860W: http://legousb.sourceforge.net/
3861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003862F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863
Rusty Russell568a17f2007-10-25 14:12:24 +10003864LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07003865M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003866L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10003867W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06003868S: Odd Fixes
Rob Landley61516582011-05-06 09:27:36 -07003869F: Documentation/virtual/lguest/
Joe Perches679655d2009-04-07 20:44:32 -07003870F: arch/x86/lguest/
3871F: drivers/lguest/
3872F: include/linux/lguest*.h
3873F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003874
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07003876M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877W: http://www.ibm.com/linux/ltc/projects/ppc
3878S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00003879F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003881LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07003882M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
3883M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003885L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003886Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07003887T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00003889F: Documentation/powerpc/
3890F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891
3892LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07003893M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003895L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003897F: arch/powerpc/platforms/powermac/
3898F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899
Grant Likely77a76362008-07-12 12:11:43 -06003900LINUX FOR POWERPC EMBEDDED MPC5XXX
Joe Perches8b58be82009-07-29 15:04:30 -07003901M: Grant Likely <grant.likely@secretlab.ca>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003902L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003903T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003905F: arch/powerpc/platforms/512x/
3906F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
3908LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04003909M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003910M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003912L: linuxppc-dev@lists.ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003913T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003915F: arch/powerpc/platforms/40x/
3916F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917
Grant Likely260c02a2007-10-02 12:15:34 +10003918LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07003919M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06003920W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003921L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003922T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003924F: arch/powerpc/*/*virtex*
3925F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926
Tom Rinie93adf12005-07-26 12:49:53 -07003927LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07003928M: Vitaly Bordug <vitb@kernel.crashing.org>
3929M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07003930W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003931L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003932S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07003933F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07003934
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07003936M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01003937W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003938L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003939S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003940F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03003941F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942
Olof Johanssonab06ff32006-09-06 14:44:54 -05003943LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07003944M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003945L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00003946S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003947F: arch/powerpc/platforms/pasemi/
3948F: drivers/*/*pasemi*
3949F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05003950
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07003952M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08003953L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954S: Supported
3955
Harry Weia23ce6d2011-02-11 16:52:20 +01003956LIS3LV02D ACCELEROMETER DRIVER
3957M: Eric Piel <eric.piel@tremplin-utc.net>
3958S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01003959F: Documentation/misc-devices/lis3lv02d
3960F: drivers/misc/lis3lv02d/
Harry Weia23ce6d2011-02-11 16:52:20 +01003961
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003962LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07003963M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003964S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003965F: include/linux/llc.h
3966F: include/net/llc*
3967F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003968
Adrien Demarez4e233cb2009-12-09 20:35:50 +01003969LM73 HARDWARE MONITOR DRIVER
3970M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
3971L: lm-sensors@lm-sensors.org
3972S: Maintained
3973F: drivers/hwmon/lm73.c
3974
Jean Delvare156e2d12011-07-25 21:46:11 +02003975LM78 HARDWARE MONITOR DRIVER
3976M: Jean Delvare <khali@linux-fr.org>
3977L: lm-sensors@lm-sensors.org
3978S: Maintained
3979F: Documentation/hwmon/lm78
3980F: drivers/hwmon/lm78.c
3981
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003983M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003984L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003986F: Documentation/hwmon/lm83
3987F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988
3989LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003990M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003991L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003993F: Documentation/hwmon/lm90
3994F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003996LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07003997M: Peter Zijlstra <peterz@infradead.org>
3998M: Ingo Molnar <mingo@redhat.com>
Joe Perches54e58812009-04-07 21:08:10 -07003999T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004001F: Documentation/lockdep*.txt
4002F: Documentation/lockstat.txt
4003F: include/linux/lockdep.h
4004F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004005
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004006LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004007M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004008L: linux-ntfs-dev@lists.sourceforge.net
4009W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004011F: Documentation/ldm.txt
4012F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013
Joern Engelef6ada32009-11-20 22:17:12 +01004014LogFS
4015M: Joern Engel <joern@logfs.org>
4016L: logfs@logfs.org
4017W: logfs.org
4018S: Maintained
4019F: fs/logfs/
4020
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004021LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004022M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004023M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004024L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004025L: linux-scsi@vger.kernel.org
4026W: http://www.lsilogic.com/support
4027S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004028F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004029
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004031M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032L: linux-scsi@vger.kernel.org
4033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004034F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035
Guenter Roecke5f5c992010-06-25 11:59:54 -07004036LTC4261 HARDWARE MONITOR DRIVER
4037M: Guenter Roeck <linux@roeck-us.net>
4038L: lm-sensors@lm-sensors.org
4039S: Maintained
4040F: Documentation/hwmon/ltc4261
4041F: drivers/hwmon/ltc4261.c
4042
Mike Frysinger81365c32008-10-29 14:01:12 -07004043LTP (Linux Test Project)
Rishikesh763458e2010-02-10 13:56:40 -08004044M: Rishikesh K Rajak <risrajak@linux.vnet.ibm.com>
4045M: Garrett Cooper <yanegomi@gmail.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004046M: Mike Frysinger <vapier@gentoo.org>
4047M: Subrata Modak <subrata@linux.vnet.ibm.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004048L: ltp-list@lists.sourceforge.net (subscribers-only)
4049W: http://ltp.sourceforge.net/
Subrata Modaka5fe2472010-08-09 17:20:50 -07004050T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004051S: Maintained
4052
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004053M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004054M: Hirokazu Takata <takata@linux-m32r.org>
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004055L: linux-m32r@ml.linux-m32r.org
4056L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4057W: http://www.linux-m32r.org/
4058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004059F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004060
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004062M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063L: linux-m68k@lists.linux-m68k.org
4064W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004065T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004067F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004068F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069
4070M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004071M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004073L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004075F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076
4077M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004078M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079W: http://www.tazenda.demon.co.uk/phil/linux-hp
4080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004081F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082
Jiri Benc64a327a2007-05-05 11:47:08 -07004083MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004084M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004085L: linux-wireless@vger.kernel.org
4086W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004087T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004089F: Documentation/networking/mac80211-injection.txt
4090F: include/net/mac80211.h
4091F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004092
Stefano Brivio1036d862007-12-23 04:46:27 +01004093MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004094M: Stefano Brivio <stefano.brivio@polimi.it>
4095M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004096L: linux-wireless@vger.kernel.org
4097W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07004098T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004100F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004101
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004102MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004103M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004104L: netdev@vger.kernel.org
4105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004106F: drivers/net/macvlan.c
4107F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004108
Michael Kerriskfaf16682005-07-31 22:34:47 -07004109MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004110M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004111W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004112L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004113S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004114
Stefano Brivio74cda162007-11-19 20:27:46 +01004115MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004116M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004117L: libertas-dev@lists.infradead.org
4118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004119F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004120
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004121MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004122M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004123L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004124S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004125F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004126F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127
Bing Zhaofcad5842011-07-13 13:11:58 -07004128MARVELL MWIFIEX WIRELESS DRIVER
4129M: Bing Zhao <bzhao@marvell.com>
4130L: linux-wireless@vger.kernel.org
4131S: Maintained
4132F: drivers/net/wireless/mwifiex/
4133
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004134MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004135M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004136L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004137S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004138F: drivers/net/wireless/mwl8k.c
4139
Pierre Ossman2a695672009-03-16 19:52:26 +01004140MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004141M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004142S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004143F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004144
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004145MARVELL YUKON / SYSKONNECT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004146M: Mirko Lindner <mlindner@syskonnect.de>
4147M: Ralph Roesler <rroesler@syskonnect.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004148W: http://www.syskonnect.com
4149S: Supported
4150
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004152L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004153S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004154F: drivers/video/matrox/matroxfb_*
4155F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156
David George731b4ca2011-06-02 08:43:45 -07004157MAX1668 TEMPERATURE SENSOR DRIVER
4158M: "David George" <david.george@ska.ac.za>
4159L: lm-sensors@lm-sensors.org
4160S: Maintained
4161F: Documentation/hwmon/max1668
4162F: drivers/hwmon/max1668.c
4163
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004164MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004165M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004166L: lm-sensors@lm-sensors.org
4167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004168F: Documentation/hwmon/max6650
4169F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004170
Joe Perches127c49a2009-04-08 08:34:04 -07004171MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07004172M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07004173P: LinuxTV.org Project
4174L: linux-media@vger.kernel.org
4175W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004176Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches127c49a2009-04-08 08:34:04 -07004177T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
4178S: Maintained
4179F: Documentation/dvb/
4180F: Documentation/video4linux/
4181F: drivers/media/
4182F: include/media/
4183F: include/linux/dvb/
4184F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004185
4186MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004187M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004188L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004189W: http://megaraid.lsilogic.com
4190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004191F: Documentation/scsi/megaraid.txt
4192F: drivers/scsi/megaraid.*
4193F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004194
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004195MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197W: http://www.linux-mm.org
4198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004199F: include/linux/mm.h
4200F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004201
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004202MEMORY RESOURCE CONTROLLER
Balbir Singh185e5952011-06-15 15:08:30 -07004203M: Balbir Singh <bsingharora@gmail.com>
KAMEZAWA Hiroyukia38374b2010-03-10 15:22:40 -08004204M: Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp>
Joe Perches8b58be82009-07-29 15:04:30 -07004205M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004206L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004208F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004209F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004210
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004212M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004214W: http://www.linux-mtd.infradead.org/
4215Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004216T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004218F: drivers/mtd/
4219F: include/linux/mtd/
4220F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221
Michal Simekc6375b02009-03-27 14:25:52 +01004222MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004223M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01004224L: microblaze-uclinux@itee.uq.edu.au
4225W: http://www.monstr.eu/fdt/
4226T: git git://git.monstr.eu/linux-2.6-microblaze.git
4227S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004228F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229
4230MICROTEK X6 SCANNER
Joe Perches8b58be82009-07-29 15:04:30 -07004231M: Oliver Neukum <oliver@neukum.name>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004233F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234
4235MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004236M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01004238W: http://www.linux-mips.org/
Joe Perches54e58812009-04-07 21:08:10 -07004239T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01004240Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00004241S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004242F: Documentation/mips/
4243F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244
4245MISCELLANEOUS MCA-SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004246M: James Bottomley <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004248F: Documentation/ia64/mca.txt
4249F: Documentation/mca.txt
4250F: drivers/mca/
4251F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252
4253MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004254M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004256F: include/linux/module.h
4257F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258
4259MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08004261S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004262F: Documentation/video4linux/meye.txt
4263F: drivers/media/video/meye.*
4264F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265
Pavel Pisac58ff042007-05-16 01:10:41 +02004266MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004267M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004268L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02004269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004270F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02004271
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272MOUSE AND MISC DEVICES [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07004273M: Alessandro Rubini <rubini@ipvvis.unipv.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004275F: drivers/input/mouse/
4276F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277
Jiri Slabyb9705b62008-04-30 00:53:48 -07004278MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07004279M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08004280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004281F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07004282F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08004283
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004284MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07004285M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004286L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004288F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004289
Anisse Astier0f1006b2009-12-17 11:28:49 +01004290MSI WMI SUPPORT
4291M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05004292L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01004293S: Supported
4294F: drivers/platform/x86/msi-wmi.c
4295
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004296MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07004297M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07004298T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004299S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004300F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004301
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02004302MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04004303M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07004304L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04004305T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
4306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004307F: drivers/mmc/
4308F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01004309
David Brownell15a05802007-08-08 09:12:54 -07004310MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06004311S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004312F: drivers/mmc/host/mmc_spi.c
4313F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004314
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004316M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004318F: Documentation/sound/oss/MultiSound
4319F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320
Jiri Slabyd7354102006-12-08 02:38:35 -08004321MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02004322S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07004323F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07004324F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004325
Felipe Balbi550a7372008-07-24 12:27:36 +03004326MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03004327M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004328L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004329T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004331F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004332
Brice Goglin2d3cf582008-05-17 12:45:36 +02004333MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Jon Mason1049f642011-06-27 05:05:08 +00004334M: Jon Mason <mason@myri.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004335M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02004336L: netdev@vger.kernel.org
4337W: http://www.myri.com/scs/download-Myri10GE.html
4338S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07004339F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004340
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341NATSEMI ETHERNET DRIVER (DP8381x)
Joe Perches8b58be82009-07-29 15:04:30 -07004342M: Tim Hockin <thockin@hockin.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07004344F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345
Daniel Mack23dc05a2011-05-18 11:28:38 +02004346NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
4347M: Daniel Mack <zonque@gmail.com>
4348S: Maintained
4349L: alsa-devel@alsa-project.org
4350W: http://www.native-instruments.com
4351F: sound/usb/caiaq/
4352
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07004354M: Petr Vandrovec <petr@vandrovec.name>
4355S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004356F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357
4358NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07004359M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360L: linux-scsi@vger.kernel.org
4361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004362F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004364NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07004365M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004366L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00004367W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004368S: Supported
4369F: drivers/infiniband/hw/nes/
4370
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004371NETEM NETWORK EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07004372M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07004373L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004375F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004376
Jon Masonb2f5a052010-07-15 08:47:27 +00004377NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00004378M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07004379L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004380W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
4381W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07004382S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004383F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00004384F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07004385F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07004386
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387NETFILTER/IPTABLES/IPCHAINS
4388P: Rusty Russell
4389P: Marc Boucher
4390P: James Morris
4391P: Harald Welte
4392P: Jozsef Kadlecsik
Joe Perches8b58be82009-07-29 15:04:30 -07004393M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07004394L: netfilter-devel@vger.kernel.org
4395L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004396L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397W: http://www.netfilter.org/
4398W: http://www.iptables.org/
Joe Perches34693712009-11-11 14:26:45 -08004399T: git git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004401F: include/linux/netfilter*
4402F: include/linux/netfilter/
4403F: include/net/netfilter/
4404F: net/*/netfilter.c
4405F: net/*/netfilter/
4406F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407
Paul Moore4cc67732006-09-25 15:57:13 -07004408NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00004409M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07004410W: http://netlabel.sf.net
4411L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00004412S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004413F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004414F: include/net/netlabel.h
4415F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004416
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004418M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004420W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004422F: include/linux/netrom.h
4423F: include/net/netrom.h
4424F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004426NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004427M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004429F: Documentation/blockdev/nbd.txt
4430F: drivers/block/nbd.c
4431F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432
Neil Horman6e436502009-10-05 03:56:55 +00004433NETWORK DROP MONITOR
4434M: Neil Horman <nhorman@tuxdriver.com>
4435L: netdev@vger.kernel.org
4436S: Maintained
4437W: https://fedorahosted.org/dropwatch/
4438F: net/core/drop_monitor.c
4439
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07004441M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004442L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004443W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00004444W: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004445T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Joe Perchesdffc1432009-11-04 09:38:58 -08004446T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004448F: net/
4449F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00004450F: include/linux/in.h
4451F: include/linux/net.h
4452F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453
4454NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07004455M: "David S. Miller" <davem@davemloft.net>
4456M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07004457M: James Morris <jmorris@namei.org>
4458M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
4459M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004460L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004461T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004463F: net/ipv4/
4464F: net/ipv6/
4465F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00004466F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467
James Morris10e2ff12007-08-25 14:41:28 -07004468NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00004469M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07004470L: netdev@vger.kernel.org
4471S: Maintained
4472
John W. Linville29f8f632006-01-18 14:52:48 -08004473NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07004474M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08004475L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004476Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches54e58812009-04-07 21:08:10 -07004477T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08004478S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07004479F: net/mac80211/
4480F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07004481F: net/wireless/
4482F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07004483F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07004484F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07004485F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08004486
Joe Perches788873a2009-04-16 09:38:45 +00004487NETWORKING DRIVERS
4488L: netdev@vger.kernel.org
4489W: http://www.linuxfoundation.org/en/Net
4490T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Joe Perches3af26f52010-02-08 22:42:40 -08004491T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git
Joe Perches788873a2009-04-16 09:38:45 +00004492S: Odd Fixes
4493F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00004494F: include/linux/if_*
4495F: include/linux/*device.h
Joe Perches788873a2009-04-16 09:38:45 +00004496
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004497NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00004498M: Amit Kumar Salecha <amit.salecha@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004499L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00004500W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004501S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07004502F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004503
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004504NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07004505M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05004506L: linux-nfs@vger.kernel.org
4507W: http://client.linux-nfs.org
4508T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004510F: fs/lockd/
4511F: fs/nfs/
4512F: fs/nfs_common/
4513F: net/sunrpc/
4514F: include/linux/lockd/
4515F: include/linux/nfs*
4516F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517
4518NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004519M: Jan-Pascal van Best <janpascal@vanbest.org>
4520M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004521L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07004523F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004525NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004526M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09004527L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004528W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09004529T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004530S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004531F: Documentation/filesystems/nilfs2.txt
4532F: fs/nilfs2/
4533F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004534
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004536M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004539F: Documentation/scsi/NinjaSCSI.txt
4540F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541
4542NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004543M: GOTO Masanori <gotom@debian.or.jp>
4544M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004547F: Documentation/scsi/NinjaSCSI.txt
4548F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00004551M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00004553W: http://www.tuxera.com/
Joe Perches54e58812009-04-07 21:08:10 -07004554T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00004555S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004556F: Documentation/filesystems/ntfs.txt
4557F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004559NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004560M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004561L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004563F: drivers/video/riva/
4564F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565
Tony Lindgrenf5525782009-05-28 13:23:53 -07004566OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07004567M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004568L: linux-omap@vger.kernel.org
4569W: http://www.muru.com/linux/omap/
4570W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08004571Q: http://patchwork.kernel.org/project/linux-omap/list/
Tony Lindgrenf5525782009-05-28 13:23:53 -07004572T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
4573S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07004574F: arch/arm/*omap*/
Tony Lindgrenf5525782009-05-28 13:23:53 -07004575
4576OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004577M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004578L: linux-omap@vger.kernel.org
4579S: Maintained
4580F: arch/arm/*omap*/*clock*
4581
4582OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08004583M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004584L: linux-omap@vger.kernel.org
4585S: Maintained
4586F: arch/arm/*omap*/*pm*
4587
Paul Walmsley692ab1f2011-03-09 18:44:28 -07004588OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
4589M: Rajendra Nayak <rnayak@ti.com>
4590M: Paul Walmsley <paul@pwsan.com>
4591L: linux-omap@vger.kernel.org
4592S: Maintained
4593F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
4594F: arch/arm/mach-omap2/powerdomain44xx.c
4595F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
4596F: arch/arm/mach-omap2/clockdomain44xx.c
4597
Tony Lindgrenf5525782009-05-28 13:23:53 -07004598OMAP AUDIO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004599M: Jarkko Nikula <jhnikula@gmail.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004600L: alsa-devel@alsa-project.org (subscribers-only)
4601L: linux-omap@vger.kernel.org
4602S: Maintained
4603F: sound/soc/omap/
4604
4605OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02004606M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004607L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07004608L: linux-omap@vger.kernel.org
4609S: Maintained
4610F: drivers/video/omap/
4611
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004612OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02004613M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004614L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004615L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004616S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004617F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004618F: Documentation/arm/OMAP/DSS
4619
Tony Lindgrenf5525782009-05-28 13:23:53 -07004620OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004621M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004622L: linux-omap@vger.kernel.org
4623S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07004624F: drivers/mmc/host/omap.c
4625
4626OMAP HS MMC SUPPORT
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07004627L: linux-omap@vger.kernel.org
Madhusudhan Chikkature0500f10c2011-07-01 10:36:42 -07004628S: Orphan
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07004629F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07004630
4631OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004632M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004633S: Maintained
4634F: drivers/char/hw_random/omap-rng.c
4635
Paul Walmsleyf400c822010-12-06 19:08:54 -07004636OMAP HWMOD SUPPORT
4637M: Benoît Cousson <b-cousson@ti.com>
4638M: Paul Walmsley <paul@pwsan.com>
4639L: linux-omap@vger.kernel.org
4640S: Maintained
4641F: arch/arm/mach-omap2/omap_hwmod.c
4642F: arch/arm/plat-omap/include/plat/omap_hwmod.h
4643
4644OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
4645M: Benoît Cousson <b-cousson@ti.com>
4646L: linux-omap@vger.kernel.org
4647S: Maintained
4648F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
4649
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03004650OMAP IMAGE SIGNAL PROCESSOR (ISP)
4651M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4652L: linux-media@vger.kernel.org
4653S: Maintained
4654F: drivers/media/video/omap3isp/*
4655
Tony Lindgrenf5525782009-05-28 13:23:53 -07004656OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03004657M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004658L: linux-usb@vger.kernel.org
4659L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004660T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07004661S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07004662F: drivers/usb/*/*omap*
4663F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07004664
Bob Copeland0ad122d2008-07-25 19:45:18 -07004665OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004666M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07004667L: linux-karma-devel@lists.sourceforge.net
4668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004669F: Documentation/filesystems/omfs.txt
4670F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004671
Harald Weltec1986ee2005-11-13 16:06:29 -08004672OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004673M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08004674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004675F: drivers/char/pcmcia/cm4000_cs.c
4676F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004677
Harald Welte77c44ab2005-11-13 16:06:26 -08004678OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004679M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08004680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004681F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004682
Jonathan Corbet77d51402007-03-22 19:44:17 -03004683OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004684M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004685L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004686T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004688F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004689
Thomas Gleixner431bca72007-05-02 09:31:35 +02004690ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004691M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02004692L: linux-mtd@lists.infradead.org
4693S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004694F: drivers/mtd/onenand/
4695F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004696
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004698M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699L: osst-users@lists.sourceforge.net
4700L: linux-scsi@vger.kernel.org
4701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004702F: drivers/scsi/osst*
4703F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004705OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004706M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01004707L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004709F: Documentation/i2c/busses/i2c-ocores
4710F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004711
Grant Likely860c44c2009-10-26 16:49:49 -07004712OPEN FIRMWARE AND FLATTENED DEVICE TREE
4713M: Grant Likely <grant.likely@secretlab.ca>
Paul Bolle78bba982011-02-12 12:33:59 +01004714L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07004715W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06004716T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07004717S: Maintained
4718F: drivers/of
4719F: include/linux/of*.h
4720K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09004721K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07004722
Jonas Bonn19f9d392011-06-04 22:00:38 +03004723OPENRISC ARCHITECTURE
4724M: Jonas Bonn <jonas@southpole.se>
4725W: http://openrisc.net
4726L: linux@lists.openrisc.net
4727S: Maintained
4728T: git git://openrisc.net/~jonas/linux
4729F: arch/openrisc
4730
Clemens Ladischaf399172011-01-10 16:32:54 +01004731OPL4 DRIVER
4732M: Clemens Ladisch <clemens@ladisch.de>
4733L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4734T: git git://git.alsa-project.org/alsa-kernel.git
4735S: Maintained
4736F: sound/drivers/opl4/
4737
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07004739M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740L: oprofile-list@lists.sf.net
4741S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02004742F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07004743F: arch/*/oprofile/
4744F: drivers/oprofile/
4745F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004747ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004748M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08004749M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004750L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4751W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07004752T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004753S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004754F: Documentation/filesystems/ocfs2.txt
4755F: Documentation/filesystems/dlmfs.txt
4756F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004757
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07004759L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004760L: orinoco-users@lists.sourceforge.net
4761L: orinoco-devel@lists.sourceforge.net
David Kilroy3a59bab2010-08-21 12:13:45 +01004762W: http://linuxwireless.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07004763W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01004764S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004765F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004767OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004768M: Boaz Harrosh <bharrosh@panasas.com>
4769M: Benny Halevy <bhalevy@panasas.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02004770L: osd-dev@open-osd.org
4771W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004772T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004773S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004774F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07004775F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004776F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02004777
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004778P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02004779M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004780L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02004781W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004783F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004784
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004785PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004786M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004787L: netdev@vger.kernel.org
4788S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07004789F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004790
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004791PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004792M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01004793L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004795F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004796
Steffen Klassert48fc2672010-08-13 10:10:46 -04004797PADATA PARALLEL EXECUTION MECHANISM
4798M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04004799L: linux-crypto@vger.kernel.org
4800S: Maintained
4801F: kernel/padata.c
4802F: include/linux/padata.h
4803F: Documentation/padata.txt
4804
Harald Welte709ee532008-09-23 17:46:57 +02004805PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004806M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05004807L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02004808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004809F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004810
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01004811PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07004812M: David Howells <dhowells@redhat.com>
4813M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01004814L: linux-am33-list@redhat.com (moderated for non-subscribers)
4815W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004817F: Documentation/mn10300/
4818F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004819
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004821L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004822S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004823F: drivers/parport/
4824F: include/linux/parport*.h
4825F: drivers/char/ppdev.c
4826F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004828PARAVIRT_OPS INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07004829M: Jeremy Fitzhardinge <jeremy@xensource.com>
4830M: Chris Wright <chrisw@sous-sol.org>
4831M: Alok Kataria <akataria@vmware.com>
4832M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00004833L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004834S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004835F: Documentation/ia64/paravirt_ops.txt
4836F: arch/*/kernel/paravirt*
4837F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004838
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07004840M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004841L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842W: http://www.torque.net/linux-pp.html
4843S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004844F: Documentation/blockdev/paride.txt
4845F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846
4847PARISC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004848M: Kyle McMartin <kyle@mcmartin.ca>
4849M: Helge Deller <deller@gmx.de>
James Bottomleyb8828772009-08-04 23:59:55 +00004850M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004851L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004853Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches54e58812009-04-07 21:08:10 -07004854T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004856F: arch/parisc/
4857F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858
Jim Cromie1662d322006-10-06 00:43:59 -07004859PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004860M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004861L: lm-sensors@lm-sensors.org
4862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004863F: Documentation/hwmon/pc87360
4864F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004865
4866PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004867M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004869F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004870
Jean Delvare1ad107f2010-08-14 21:09:00 +02004871PC87427 HARDWARE MONITORING DRIVER
4872M: Jean Delvare <khali@linux-fr.org>
4873L: lm-sensors@lm-sensors.org
4874S: Maintained
4875F: Documentation/hwmon/pc87427
4876F: drivers/hwmon/pc87427.c
4877
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004878PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004879M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004880S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004881F: drivers/leds/leds-pca9532.c
4882F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004883
Guenter Roeck5ce914a2010-10-24 18:16:59 +02004884PCA9541 I2C BUS MASTER SELECTOR DRIVER
4885M: Guenter Roeck <guenter.roeck@ericsson.com>
4886L: linux-i2c@vger.kernel.org
4887S: Maintained
4888F: drivers/i2c/muxes/pca9541.c
4889
Wolfram Sanga1867d32009-09-18 22:45:51 +02004890PCA9564/PCA9665 I2C BUS DRIVER
4891M: Wolfram Sang <w.sang@pengutronix.de>
4892L: linux-i2c@vger.kernel.org
4893S: Maintained
4894F: drivers/i2c/algos/i2c-algo-pca.c
4895F: drivers/i2c/busses/i2c-pca-*
4896F: include/linux/i2c-algo-pca.h
4897F: include/linux/i2c-pca-platform.h
4898
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004899PCI ERROR RECOVERY
Joe Perches8b58be82009-07-29 15:04:30 -07004900M: Linas Vepstas <linas@austin.ibm.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004901L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004902S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004903F: Documentation/PCI/pci-error-recovery.txt
4904F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004905
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906PCI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004907M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes29054742008-05-03 08:35:49 -07004908L: linux-pci@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004909Q: http://patchwork.kernel.org/project/linux-pci/list/
Joe Perches54e58812009-04-07 21:08:10 -07004910T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004912F: Documentation/PCI/
4913F: drivers/pci/
4914F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915
Jesse Barnesbe3652b2009-09-17 10:01:07 -07004916PCI HOTPLUG
4917M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07004918L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004919S: Supported
Jesse Barnesbe3652b2009-09-17 10:01:07 -07004920F: drivers/pci/hotplug
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004921
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004923P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004924L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004925W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004926T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004928F: Documentation/pcmcia/
4929F: drivers/pcmcia/
4930F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931
4932PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08004933M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004934L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07004936F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937
Steffen Klassert48fc2672010-08-13 10:10:46 -04004938PCRYPT PARALLEL CRYPTO ENGINE
4939M: Steffen Klassert <steffen.klassert@secunet.com>
4940L: linux-crypto@vger.kernel.org
4941S: Maintained
4942F: crypto/pcrypt.c
4943F: include/crypto/pcrypt.h
4944
Tejun Heoe72df0b2010-12-10 17:02:49 +01004945PER-CPU MEMORY ALLOCATOR
4946M: Tejun Heo <tj@kernel.org>
4947M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01004948T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
4949S: Maintained
4950F: include/linux/percpu*.h
4951F: mm/percpu*.c
4952F: arch/*/include/asm/percpu.h
4953
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004954PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07004955M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004957F: include/linux/delayacct.h
4958F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004959
Ingo Molnar57c0c152009-09-21 12:20:38 +02004960PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004961M: Peter Zijlstra <a.p.zijlstra@chello.nl>
4962M: Paul Mackerras <paulus@samba.org>
4963M: Ingo Molnar <mingo@elte.hu>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02004964M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004965S: Supported
Robert Richter141c4292010-03-17 12:49:11 +01004966F: kernel/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02004967F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01004968F: arch/*/kernel/perf_event*.c
4969F: arch/*/kernel/*/perf_event*.c
4970F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02004971F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01004972F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02004973F: arch/*/kernel/perf_callchain.c
4974F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004975
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004976PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07004977M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004978L: linux-abi-devel@lists.sourceforge.net
4979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004980F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004981
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00004982PHONET PROTOCOL
4983M: Remi Denis-Courmont <remi.denis-courmont@nokia.com>
4984S: Supported
4985F: Documentation/networking/phonet.txt
4986F: include/linux/phonet.h
4987F: include/net/phonet/
4988F: net/phonet/
4989
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004991M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992L: linux-mtd@lists.infradead.org
4993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004994F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995
Peter Osterlund249a6772005-09-27 21:45:30 -07004996PKTCDVD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004997M: Peter Osterlund <petero2@telia.com>
Peter Osterlund249a6772005-09-27 21:45:30 -07004998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004999F: drivers/block/pktcdvd.c
5000F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005001
GuanXuetaob31d8272011-01-16 00:35:49 +08005002PKUNITY SOC DRIVERS
5003M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5004W: http://mprc.pku.edu.cn/~guanxuetao/linux
5005S: Maintained
5006T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5007F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005008F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005009F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005010F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005011
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005012PMBUS HARDWARE MONITORING DRIVERS
5013M: Guenter Roeck <guenter.roeck@ericsson.com>
5014L: lm-sensors@lm-sensors.org
5015W: http://www.lm-sensors.org/
5016W: http://www.roeck-us.net/linux/drivers/
5017T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5018S: Maintained
5019F: Documentation/hwmon/pmbus
5020F: drivers/hwmon/pmbus/
5021F: include/linux/i2c/pmbus.h
5022
Anil Ravindranath89a36812009-08-25 17:35:18 -07005023PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005024M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005025L: linux-scsi@vger.kernel.org
5026W: http://www.pmc-sierra.com/
5027S: Supported
5028F: drivers/scsi/pmcraid.*
5029
jack wangdbf9bfe2009-10-14 16:19:21 +08005030PMC SIERRA PM8001 DRIVER
5031M: jack_wang@usish.com
5032M: lindar_liu@usish.com
5033L: linux-scsi@vger.kernel.org
5034S: Supported
5035F: drivers/scsi/pm8001/
5036
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005038M: Thomas Gleixner <tglx@linutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005040F: fs/timerfd.c
5041F: include/linux/timer*
5042F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043
Anton Vorontsov3be86142007-07-15 04:43:36 +04005044POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005045M: Anton Vorontsov <cbou@mail.ru>
5046M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005047T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005049F: include/linux/power_supply.h
5050F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04005051
Linus Torvalds1da177e2005-04-16 15:20:36 -07005052PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005053M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005054M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005056F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057
Vitaly Wool999445d2007-01-04 13:07:03 +01005058PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005059M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005060L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005062F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005063
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005065M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066L: linux-ppp@vger.kernel.org
5067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005068F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069
5070PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005071M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005073F: net/atm/pppoatm.c
5074F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075
5076PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005077M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005079F: drivers/net/pppoe.c
5080F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005081
James Chapmana6d23702007-06-27 15:53:17 -07005082PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005083M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005084S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005085F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005086F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005087
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005088PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005089M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005090W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5091L: linuxpps@ml.enneenne.com (subscribers-only)
5092S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005093F: Documentation/pps/
5094F: drivers/pps/
5095F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005096
Harry Wei71a6d0a2011-05-11 15:13:33 -07005097PPTP DRIVER
5098M: Dmitry Kozlov <xeb@mail.ru>
5099L: netdev@vger.kernel.org
5100S: Maintained
5101F: drivers/net/pptp.c
5102W: http://sourceforge.net/projects/accel-pptp
5103
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005105M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106L: kpreempt-tech@lists.sourceforge.net
5107W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5108S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005109F: Documentation/preempt-locking.txt
5110F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111
5112PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005113M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005114L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005115W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005116S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005117F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005119PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005120M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005121L: linux-ide@vger.kernel.org
5122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005123F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005124
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005125PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005126M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005127L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005128L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005129S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07005130F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005131
Geoff Levandf58a9d12006-11-23 00:46:51 +01005132PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005133M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005134L: linuxppc-dev@lists.ozlabs.org
5135L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005137F: arch/powerpc/boot/ps3*
5138F: arch/powerpc/include/asm/lv1call.h
5139F: arch/powerpc/include/asm/ps3*.h
5140F: arch/powerpc/platforms/ps3/
5141F: drivers/*/ps3*
5142F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00005143F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07005144F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00005145F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01005146
Jim Pariscffb4add2009-01-06 11:32:10 +00005147PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005148M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005149L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00005150S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07005151F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00005152
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005153PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005154M: Roland McGrath <roland@redhat.com>
5155M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005156S: Maintained
5157F: include/asm-generic/syscall.h
5158F: include/linux/ptrace.h
5159F: include/linux/regset.h
5160F: include/linux/tracehook.h
5161F: kernel/ptrace.c
5162
Michael Krufky83202042006-07-03 00:24:18 -07005163PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005164M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03005165L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005166L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07005167W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07005168T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07005169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005170F: Documentation/video4linux/README.pvrusb2
5171F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07005172
Eric Miao30ec2612008-06-12 15:21:41 -07005173PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005174M: Eric Miao <eric.y.miao@gmail.com>
5175M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005176L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005178F: arch/arm/mach-pxa/
5179F: drivers/pcmcia/pxa2xx*
5180F: drivers/spi/pxa2xx*
5181F: drivers/usb/gadget/pxa2*
5182F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01005183F: sound/arm/pxa*
5184F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08005186PXA168 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005187M: Eric Miao <eric.y.miao@gmail.com>
5188M: Jason Chagas <jason.chagas@marvell.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005189L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -07005190T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08005191S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08005192
Eric Miao5fa82eb2009-03-20 12:52:24 +08005193PXA910 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005194M: Eric Miao <eric.y.miao@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005195L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -07005196T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08005197S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08005198
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005199MMP2 SUPPORT (aka ARMADA610)
5200M: Haojian Zhuang <haojian.zhuang@marvell.com>
5201M: Eric Miao <eric.y.miao@gmail.com>
5202L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5203T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
5204S: Maintained
5205
Pierre Ossman272f1332007-05-14 21:25:26 +02005206PXA MMCI DRIVER
5207S: Orphan
5208
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005209PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005210M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005211L: rtc-linux@googlegroups.com
5212S: Maintained
5213
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005214QIB DRIVER
5215M: Mike Marciniszyn <infinipath@qlogic.com>
5216L: linux-rdma@vger.kernel.org
5217S: Supported
5218F: drivers/infiniband/hw/qib/
5219
Jes Sorensen5e9772b2010-06-30 15:37:38 +02005220QLOGIC QLA1280 SCSI DRIVER
5221M: Michael Reed <mdr@sgi.com>
5222L: linux-scsi@vger.kernel.org
5223S: Maintained
5224F: drivers/scsi/qla1280.[ch]
5225
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005227M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08005228M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229L: linux-scsi@vger.kernel.org
5230S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005231F: Documentation/scsi/LICENSE.qla2xxx
5232F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233
Ravi Anand883c98f2010-04-28 11:45:49 +05305234QLOGIC QLA4XXX iSCSI DRIVER
5235M: Ravi Anand <ravi.anand@qlogic.com>
5236M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
5237M: iscsi-driver@qlogic.com
5238L: linux-scsi@vger.kernel.org
5239S: Supported
5240F: drivers/scsi/qla4xxx/
5241
Ron Mercer5a4faa872006-07-25 00:40:21 -07005242QLOGIC QLA3XXX NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005243M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07005244M: linux-driver@qlogic.com
5245L: netdev@vger.kernel.org
5246S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005247F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005248F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07005249
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005250QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
5251M: Amit Kumar Salecha <amit.salecha@qlogic.com>
Amit Kumar Salecha7b39f902010-05-18 22:57:36 -07005252M: Anirban Chakraborty <anirban.chakraborty@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005253M: linux-driver@qlogic.com
5254L: netdev@vger.kernel.org
5255S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005256F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005257
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005258QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00005259M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005260M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07005261M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005262L: netdev@vger.kernel.org
5263S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005264F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005265
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005267M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268W: http://www.alarsen.net/linux/qnx4fs/
5269S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005270F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07005271F: include/linux/qnx4_fs.h
5272F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005274RADOS BLOCK DEVICE (RBD)
5275F: include/linux/qnxtypes.h
5276M: Yehuda Sadeh <yehuda@hq.newdream.net>
5277M: Sage Weil <sage@newdream.net>
5278M: ceph-devel@vger.kernel.org
5279S: Supported
5280F: drivers/block/rbd.c
5281F: drivers/block/rbd_types.h
5282
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005284M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005285L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005287F: drivers/video/aty/radeon*
5288F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289
5290RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005291M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005292L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005294F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295
Randy Dunlape7839f22008-10-12 16:11:45 -07005296RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005297P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01005298M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01005299M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01005300M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005301L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01005302L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005303W: http://rt2x00.serialmonkey.com/
5304S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07005305T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005306F: drivers/net/wireless/rt2x00/
5307
Nick Piggin9db55792008-02-08 04:19:49 -08005308RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10005309M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08005310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005311F: Documentation/blockdev/ramdisk.txt
5312F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08005313
Matt Mackall9e95ce22005-04-16 15:25:56 -07005314RANDOM NUMBER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005315M: Matt Mackall <mpm@selenic.com>
Matt Mackall9e95ce22005-04-16 15:25:56 -07005316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005317F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07005318
Matt Porter394b7012005-11-07 01:00:15 -08005319RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005320M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08005321M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08005322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005323F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08005324
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005325RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005326L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04005327S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005328F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005329
5330RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005331M: Josh Triplett <josh@freedesktop.org>
5332M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08005333S: Supported
Joe Perches1fa7e542010-10-26 14:23:02 -07005334T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-2.6-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07005335F: Documentation/RCU/torture.txt
5336F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005337
Florian Fainellic1f766b2008-02-06 22:39:44 +01005338RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07005339M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01005340S: Maintained
5341
Florian Fainellidb17f392007-12-19 11:30:30 +01005342RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005343M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01005344L: netdev@vger.kernel.org
5345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005346F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01005347
Andy Grovera09ed662009-02-24 15:30:41 +00005348RDS - RELIABLE DATAGRAM SOCKETS
Joe Perches8b58be82009-07-29 15:04:30 -07005349M: Andy Grover <andy.grover@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00005350L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00005351S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005352F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00005353
Josh Triplett595182b2006-10-04 02:17:21 -07005354READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07005355M: Dipankar Sarma <dipankar@in.ibm.com>
5356M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Josh Triplett595182b2006-10-04 02:17:21 -07005357W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07005358S: Supported
Joe Perches1fa7e542010-10-26 14:23:02 -07005359T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-2.6-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08005360F: Documentation/RCU/
5361F: include/linux/rcu*
5362F: include/linux/srcu*
5363F: kernel/rcu*
5364F: kernel/srcu*
5365X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07005366
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08005367REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005368M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08005369L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08005370Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08005371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005372F: Documentation/rtc.txt
5373F: drivers/rtc/
5374F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08005375
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07005377L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005379F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380
Mark Brownb83a3132011-05-11 19:59:58 +02005381REGISTER MAP ABSTRACTION
5382M: Mark Brown <broonie@opensource.wolfsonmicro.com>
5383T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
5384S: Supported
5385F: drivers/base/regmap/
5386F: include/linux/regmap.h
5387
Ivo van Doorne08976452008-04-12 19:23:55 +02005388RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07005389M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02005390L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02005391S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08005392F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07005393F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02005394
Maxim Levitsky67e054e2010-02-22 20:39:42 +02005395RICOH SMARTMEDIA/XD DRIVER
5396M: Maxim Levitsky <maximlevitsky@gmail.com>
5397S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07005398F: drivers/mtd/nand/r852.c
5399F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02005400
Maxim Levitsky92634122011-03-25 01:56:59 -07005401RICOH R5C592 MEMORYSTICK DRIVER
5402M: Maxim Levitsky <maximlevitsky@gmail.com>
5403S: Maintained
5404F: drivers/memstick/host/r592.*
5405
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005406RISCOM8 DRIVER
5407S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005408F: Documentation/serial/riscom8.txt
Joe Perchesc8974012011-04-14 15:22:05 -07005409F: drivers/staging/tty/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005410
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411ROCKETPORT DRIVER
5412P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413W: http://www.comtrol.com
5414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005415F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07005416F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417
5418ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005419M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005421W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005423F: include/linux/rose.h
5424F: include/net/rose.h
5425F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426
Larry Finger59840482008-11-12 17:13:09 -06005427RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005428M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04005429L: linux-wireless@vger.kernel.org
5430W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07005431T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04005432S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05005433F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04005434
Larry Finger59840482008-11-12 17:13:09 -06005435RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03005436M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005437M: Hin-Tak Leung <htl10@users.sourceforge.net>
5438M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07005439L: linux-wireless@vger.kernel.org
5440W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07005441T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07005442S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05005443F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06005444
Larry Finger3cf0c8a2010-12-16 09:13:21 -06005445RTL8192CE WIRELESS DRIVER
5446M: Larry Finger <Larry.Finger@lwfinger.net>
5447M: Chaoming Li <chaoming_li@realsil.com.cn>
5448L: linux-wireless@vger.kernel.org
5449W: http://linuxwireless.org/
5450T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
5451S: Maintained
5452F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06005453F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02005454
5455S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005456M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005457L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005459F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005460
Linus Torvalds1da177e2005-04-16 15:20:36 -07005461S390
Joe Perches8b58be82009-07-29 15:04:30 -07005462M: Martin Schwidefsky <schwidefsky@de.ibm.com>
5463M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01005465L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005466W: http://www.ibm.com/developerworks/linux/linux390/
5467S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005468F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01005469F: drivers/s390/
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02005470F: fs/partitions/ibm.c
5471F: Documentation/s390/
5472F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08005473
5474S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005475M: Ursula Braun <ursula.braun@de.ibm.com>
5476M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08005477M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01005478L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005479W: http://www.ibm.com/developerworks/linux/linux390/
5480S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005481F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08005482
Felix Beckfeed9b62009-03-26 15:24:23 +01005483S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01005484M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01005485M: linux390@de.ibm.com
5486L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01005487W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01005488S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005489F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01005490
Heiko Carstens5238da42006-02-11 17:56:01 -08005491S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01005492M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08005493M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01005494L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005495W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005497F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005498
Ursula Braundd96df22007-09-19 13:09:02 +02005499S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005500M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02005501M: linux390@de.ibm.com
5502L: linux-s390@vger.kernel.org
5503W: http://www.ibm.com/developerworks/linux/linux390/
5504S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005505F: drivers/s390/net/*iucv*
5506F: include/net/iucv/
5507F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02005508
Ben Dooks4dde7f72008-06-30 22:40:38 +01005509S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07005510M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005511L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01005512S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005513F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01005514
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005516M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005517L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005518T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005519W: http://www.mihu.de/linux/saa7146
5520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005521F: drivers/media/common/saa7146*
5522F: drivers/media/video/*7146*
5523F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005524
Mark Brown4a109cc2010-09-24 10:50:46 +01005525SAMSUNG AUDIO (ASoC) DRIVERS
Jassi Brarb9cbfcb2011-04-08 11:29:42 +05305526M: Jassi Brar <jassisinghbrar@gmail.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01005527L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5528S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00005529F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01005530
Alan Coxca749e22011-03-18 13:56:14 +00005531SERIAL DRIVERS
5532M: Alan Cox <alan@linux.intel.com>
5533L: linux-serial@vger.kernel.org
5534S: Maintained
5535F: drivers/tty/serial
5536
Viresh Kumaraecb7b62011-05-24 14:04:09 +05305537SYNOPSYS DESIGNWARE DMAC DRIVER
5538M: Viresh Kumar <viresh.kumar@st.com>
5539S: Maintained
5540F: include/linux/dw_dmac.h
5541F: drivers/dma/dw_dmac_regs.h
5542F: drivers/dma/dw_dmac.c
5543
Thomas Gleixner88606e82010-12-14 21:37:13 +01005544TIMEKEEPING, NTP
5545M: John Stultz <johnstul@us.ibm.com>
5546M: Thomas Gleixner <tglx@linutronix.de>
5547S: Supported
5548F: include/linux/clocksource.h
5549F: include/linux/time.h
5550F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01005551F: kernel/time/clocksource.c
5552F: kernel/time/time*.c
5553F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02005554F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01005555
Huang Shijie5b3f03f2010-02-02 04:07:47 -03005556TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03005557M: Huang Shijie <shijie8@gmail.com>
5558M: Kang Yong <kangyong@telegent.com>
5559M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03005560S: Supported
5561F: drivers/media/video/tlg2300
5562
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005564M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005566F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005567
5568SCHEDULER
Joe Perches8b58be82009-07-29 15:04:30 -07005569M: Ingo Molnar <mingo@elte.hu>
5570M: Peter Zijlstra <peterz@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005572F: kernel/sched*
5573F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005574
Chen Liqin6bcf6732009-06-13 15:24:33 +08005575SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07005576M: Chen Liqin <liqin.chen@sunplusct.com>
5577M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08005578W: http://www.sunplusct.com
5579S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07005580F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08005581
Linus Torvalds1da177e2005-04-16 15:20:36 -07005582SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005583M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584L: linux-scsi@vger.kernel.org
5585W: http://www.kernel.dk
5586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005587F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588
Roland Dreierfb50a832010-10-07 09:54:53 -07005589SCSI RDMA PROTOCOL (SRP) INITIATOR
5590M: David Dillow <dillowda@ornl.gov>
5591L: linux-rdma@vger.kernel.org
5592S: Supported
5593W: http://www.openfabrics.org
5594Q: http://patchwork.kernel.org/project/linux-rdma/list/
5595T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
5596F: drivers/infiniband/ulp/srp/
5597F: include/scsi/srp.h
5598
Linus Torvalds1da177e2005-04-16 15:20:36 -07005599SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005600M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601L: linux-scsi@vger.kernel.org
5602W: http://www.torque.net/sg
5603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005604F: drivers/scsi/sg.c
5605F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606
5607SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05005608M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005610T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
5611T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
5612T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005614F: drivers/scsi/
5615F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005616
5617SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005618M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005619L: linux-scsi@vger.kernel.org
5620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005621F: Documentation/scsi/st.txt
5622F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623
5624SCTP PROTOCOL
Joe Perches8b58be82009-07-29 15:04:30 -07005625M: Vlad Yasevich <vladislav.yasevich@hp.com>
5626M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07005627L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005628W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01005629S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005630F: Documentation/networking/sctp.txt
5631F: include/linux/sctp.h
5632F: include/net/sctp/
5633F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005634
5635SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005636M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005637S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005638F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07005639F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07005640F: drivers/watchdog/scx200_wdt.c
5641F: drivers/i2c/busses/scx200*
5642F: drivers/mtd/maps/scx200_docflash.c
5643F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07005644
5645SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005646M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005648F: drivers/char/scx200_gpio.c
5649F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07005650
5651SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005652M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005654F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655
Sascha Sommer6a369132008-07-15 14:21:29 +02005656SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005657M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02005658L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
5659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005660F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02005661
Randy Dunlape7839f22008-10-12 16:11:45 -07005662SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04005663M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07005664L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005665T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5666S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07005667F: drivers/mmc/host/sdhci.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005668
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005669SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07005670M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005671L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07005672L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005673S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07005674F: drivers/mmc/host/sdhci-of.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005675
Ben Dooks0d1bb412009-06-14 13:52:37 +01005676SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005677M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07005678L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01005679S: Maintained
5680F: drivers/mmc/host/sdhci-s3c.c
5681
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07005682SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
5683M: Viresh Kumar <viresh.kumar@st.com>
5684L: linux-mmc@vger.kernel.org
5685S: Maintained
5686F: drivers/mmc/host/sdhci-spear.c
5687
James Morris8711cca2008-12-04 03:19:45 +11005688SECURITY SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005689M: James Morris <jmorris@namei.org>
James Morris8711cca2008-12-04 03:19:45 +11005690L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perchesdf69f0da2009-11-11 14:26:46 -08005691T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11005692W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11005693S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07005694F: security/
James Morris8711cca2008-12-04 03:19:45 +11005695
Linus Torvalds1da177e2005-04-16 15:20:36 -07005696SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07005697M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698S: Supported
5699
5700SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005701M: Stephen Smalley <sds@tycho.nsa.gov>
5702M: James Morris <jmorris@namei.org>
5703M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07005704L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04005705W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04005706T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005708F: include/linux/selinux*
5709F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04005710F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005711
John Johansenc1c124e2010-07-29 14:48:09 -07005712APPARMOR SECURITY MODULE
5713M: John Johansen <john.johansen@canonical.com>
5714L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
5715W: apparmor.wiki.kernel.org
5716T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
5717S: Supported
5718F: security/apparmor/
5719
Jiri Slabycef2cf02007-05-08 00:31:45 -07005720SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07005721M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07005722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005723F: drivers/misc/phantom.c
5724F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07005725
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005726SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005727M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005728L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005729T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005731F: drivers/ata/
5732F: include/linux/ata.h
5733F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005734
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305735SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07005736M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08005737L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07005738W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08005739S: Supported
5740F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305741
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005742SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08005743M: Sathya Perla <sathya.perla@emulex.com>
5744M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
5745M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07005746L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08005747W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07005748S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07005749F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005750
Ben Hutchings8ceee662008-04-27 12:55:59 +01005751SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00005752M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
5753M: Steve Hodgson <shodgson@solarflare.com>
5754M: Ben Hutchings <bhutchings@solarflare.com>
5755L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01005756S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07005757F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01005758
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005759SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005760M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005762F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005763
5764SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005765M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005766L: linux-ia64@vger.kernel.org
5767S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005768F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08005769F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07005770F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005771
Linus Torvalds1da177e2005-04-16 15:20:36 -07005772SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07005773M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774L: linux-visws-devel@lists.sf.net
5775W: http://linux-visws.sf.net
5776S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07005777F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778
Jack Steiner75312612008-08-15 00:40:42 -07005779SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005780M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07005781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005782F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07005783
Len Brown6349d992009-08-14 15:07:14 -04005784SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07005785M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04005786L: sfi-devel@simplefirmware.org
5787W: http://simplefirmware.org/
5788T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005789S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07005790F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04005791F: drivers/sfi/
5792F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005793
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794SIMTEC EB110ATX (Chalice CATS)
5795P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08005796P: Vincent Sanders <vince@simtec.co.uk>
5797M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798W: http://www.simtec.co.uk/products/EB110ATX/
5799S: Supported
5800
5801SIMTEC EB2410ITX (BAST)
5802P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08005803P: Vincent Sanders <vince@simtec.co.uk>
5804M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805W: http://www.simtec.co.uk/products/EB2410ITX/
5806S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08005807F: arch/arm/mach-s3c2410/mach-bast.c
5808F: arch/arm/mach-s3c2410/bast-ide.c
5809F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810
Kevin Hilman4c5adde2009-06-19 12:02:33 -07005811TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08005812M: Sekhar Nori <nsekhar@ti.com>
5813M: Kevin Hilman <khilman@ti.com>
Sekhar Nori4b5dc962010-07-12 18:51:05 +05305814L: davinci-linux-open-source@linux.davincidsp.com (subscribers-only)
Joe Perches8a6e2532010-03-05 13:43:11 -08005815Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07005816S: Supported
5817F: arch/arm/mach-davinci
5818
Francois Romieu92aab3c2005-07-30 13:11:18 +02005819SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005820M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02005821L: netdev@vger.kernel.org
5822S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07005823F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005824
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005826M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005828L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005829S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07005830F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005831
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005832SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005833M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005834L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005836F: Documentation/i2c/busses/i2c-sis96x
5837F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005838
Linus Torvalds1da177e2005-04-16 15:20:36 -07005839SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005840M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005842S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005843F: Documentation/fb/sisfb.txt
5844F: drivers/video/sis/
5845F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846
5847SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005848M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005849W: http://www.winischhofer.at/linuxsisusbvga.shtml
5850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005851F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005852
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005853SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005854M: Stephen Hemminger <shemminger@linux-foundation.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005855L: netdev@vger.kernel.org
5856S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07005857F: drivers/net/ethernet/marvell/sk*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005858
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005859SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07005860M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02005861M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005862M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005863L: linux-mm@kvack.org
5864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005865F: include/linux/sl?b*.h
5866F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005867
Linus Torvalds1da177e2005-04-16 15:20:36 -07005868SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005869M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005870S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07005871F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872
Guenter Roeck920fa1f2010-08-09 17:21:06 -07005873SMM665 HARDWARE MONITOR DRIVER
5874M: Guenter Roeck <linux@roeck-us.net>
5875L: lm-sensors@lm-sensors.org
5876S: Maintained
5877F: Documentation/hwmon/smm665
5878F: drivers/hwmon/smm665.c
5879
Steve Glendinning9df73052010-08-14 21:08:54 +02005880SMSC EMC2103 HARDWARE MONITOR DRIVER
5881M: Steve Glendinning <steve.glendinning@smsc.com>
5882L: lm-sensors@lm-sensors.org
5883S: Supported
5884F: Documentation/hwmon/emc2103
5885F: drivers/hwmon/emc2103.c
5886
Hans de Goedea98d5062011-03-21 17:59:36 +01005887SMSC SCH5627 HARDWARE MONITOR DRIVER
5888M: Hans de Goede <hdegoede@redhat.com>
5889L: lm-sensors@lm-sensors.org
5890S: Supported
5891F: Documentation/hwmon/sch5627
5892F: drivers/hwmon/sch5627.c
5893
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005894SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005895M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005896L: lm-sensors@lm-sensors.org
5897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005898F: Documentation/hwmon/smsc47b397
5899F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005900
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005901SMSC911x ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005902M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005903L: netdev@vger.kernel.org
5904S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005905F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07005906F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005907
Steve Glendinning2cb37722008-12-11 20:54:30 -08005908SMSC9420 PCI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005909M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2cb37722008-12-11 20:54:30 -08005910L: netdev@vger.kernel.org
5911S: Supported
Jeff Kirsherae150432011-05-12 20:21:07 -07005912F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005913
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005914SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07005915M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005916L: linux-altix@sgi.com
5917L: linux-ia64@vger.kernel.org
5918W: http://www.sgi.com/altix
5919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005920F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005921
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005922SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005923M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005924L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005925T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005927F: include/media/v4l2*
5928F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005929
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005930SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005931M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005933F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005934
Linus Torvalds1da177e2005-04-16 15:20:36 -07005935SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005936M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005937L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005938S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005939F: drivers/md/
5940F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005941
Linus Torvalds1da177e2005-04-16 15:20:36 -07005942SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005943M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005944L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005945S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005946F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947
Michael Buesch61e115a2007-09-18 15:12:50 -04005948SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02005949M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04005950L: netdev@vger.kernel.org
5951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005952F: drivers/ssb/
5953F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005954
Rafał Miłecki8369ae32011-05-09 18:56:46 +02005955BROADCOM SPECIFIC AMBA DRIVER (BCMA)
5956M: Rafał Miłecki <zajec5@gmail.com>
5957L: linux-wireless@vger.kernel.org
5958S: Maintained
5959F: drivers/bcma/
5960F: include/linux/bcma/
5961
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005963M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05005964L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01005965W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005967F: Documentation/laptops/sony-laptop.txt
5968F: drivers/char/sonypi.c
5969F: drivers/platform/x86/sony-laptop.c
5970F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971
Alex Dubovbaf85322008-02-09 10:20:54 -08005972SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005973M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08005974W: http://tifmxx.berlios.de/
5975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005976F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005977
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07005979M: Jaroslav Kysela <perex@perex.cz>
5980M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07005981L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07005982W: http://www.alsa-project.org/
5983T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
5984T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005985S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07005986F: Documentation/sound/
5987F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07005988F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989
Mark Brownbd903bd2008-11-19 19:16:05 +00005990SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01005991M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005992M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownbb74a6e2009-05-13 17:23:54 +01005993T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07005994L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005995W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005996S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005997F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01005998F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005999
Sam Ravnborg473321f2009-01-04 15:47:49 -08006000SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07006001M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006003Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches54e58812009-04-07 21:08:10 -07006004T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
6005T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006007F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07006008F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006009
David S. Miller6404fcc2010-03-16 01:00:17 -07006010SPARC SERIAL DRIVERS
6011M: "David S. Miller" <davem@davemloft.net>
6012L: sparclinux@vger.kernel.org
6013T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
6014T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
6015S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006016F: drivers/tty/serial/suncore.c
6017F: drivers/tty/serial/suncore.h
6018F: drivers/tty/serial/sunhv.c
6019F: drivers/tty/serial/sunsab.c
6020F: drivers/tty/serial/sunsab.h
6021F: drivers/tty/serial/sunsu.c
6022F: drivers/tty/serial/sunzilog.c
6023F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07006024
viresh kumarfc0c1952010-04-01 12:31:21 +01006025SPEAR PLATFORM SUPPORT
6026M: Viresh Kumar <viresh.kumar@st.com>
6027W: http://www.st.com/spear
6028S: Maintained
6029F: arch/arm/plat-spear/
6030
6031SPEAR3XX MACHINE SUPPORT
6032M: Viresh Kumar <viresh.kumar@st.com>
6033W: http://www.st.com/spear
6034S: Maintained
6035F: arch/arm/mach-spear3xx/
6036
6037SPEAR6XX MACHINE SUPPORT
6038M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
6039W: http://www.st.com/spear
6040S: Maintained
6041F: arch/arm/mach-spear6xx/
6042
6043SPEAR CLOCK FRAMEWORK SUPPORT
6044M: Viresh Kumar <viresh.kumar@st.com>
6045W: http://www.st.com/spear
6046S: Maintained
6047F: arch/arm/mach-spear*/clock.c
6048F: arch/arm/mach-spear*/include/mach/clkdev.h
6049F: arch/arm/plat-spear/clock.c
Joe Perches83823b72010-08-09 17:20:42 -07006050F: arch/arm/plat-spear/include/plat/clkdev.h
6051F: arch/arm/plat-spear/include/plat/clock.h
viresh kumarfc0c1952010-04-01 12:31:21 +01006052
6053SPEAR PAD MULTIPLEXING SUPPORT
6054M: Viresh Kumar <viresh.kumar@st.com>
6055W: http://www.st.com/spear
6056S: Maintained
6057F: arch/arm/plat-spear/include/plat/padmux.h
6058F: arch/arm/plat-spear/padmux.c
6059F: arch/arm/mach-spear*/spear*xx.c
6060F: arch/arm/mach-spear*/include/mach/generic.h
6061F: arch/arm/mach-spear3xx/spear3*0.c
6062F: arch/arm/mach-spear3xx/spear3*0_evb.c
6063F: arch/arm/mach-spear6xx/spear600.c
6064F: arch/arm/mach-spear6xx/spear600_evb.c
6065
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
Joe Perchesc8974012011-04-14 15:22:05 -07006067S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006068F: Documentation/serial/specialix.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006069F: drivers/staging/tty/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006071SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07006072M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006073L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08006074Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06006075T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006077F: Documentation/spi/
6078F: drivers/spi/
6079F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006080
Jim Lewis2752e402006-09-29 02:01:19 -07006081SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07006082M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
6083M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07006084L: netdev@vger.kernel.org
6085S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006086F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006087F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07006088
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006089SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006090M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006091L: linuxppc-dev@lists.ozlabs.org
6092L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006093W: http://www.ibm.com/developerworks/power/cell/
6094S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006095F: Documentation/filesystems/spufs.txt
6096F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006097
Phillip Lougherfc555842009-01-05 08:46:29 +00006098SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01006099M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00006100L: squashfs-devel@lists.sourceforge.net (subscribers-only)
6101W: http://squashfs.org.uk
6102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006103F: Documentation/filesystems/squashfs.txt
6104F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00006105
Linus Torvalds1da177e2005-04-16 15:20:36 -07006106SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07006107M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006109F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006110
Linus Torvalds26e9a392008-10-17 09:50:12 -07006111STABLE BRANCH
Joe Perches8b58be82009-07-29 15:04:30 -07006112M: Greg Kroah-Hartman <greg@kroah.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006113L: stable@kernel.org
6114S: Maintained
6115
Linus Torvalds26e9a392008-10-17 09:50:12 -07006116STAGING SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006117M: Greg Kroah-Hartman <gregkh@suse.de>
Greg Kroah-Hartman97b55192010-11-09 09:13:39 -08006118T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging-2.6.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07006119L: devel@driverdev.osuosl.org
Linus Torvalds26e9a392008-10-17 09:50:12 -07006120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006121F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07006122
Joe Perchesc8c8b102011-07-05 09:42:12 -07006123STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
6124M: Henk de Groot <pe1dnn@amsat.org>
6125S: Odd Fixes
6126F: drivers/staging/wlags49_h2/
6127F: drivers/staging/wlags49_h25/
6128
Joe Perchesc9555152011-07-05 09:42:01 -07006129STAGING - ASUS OLED
6130M: Jakub Schmidtke <sjakub@gmail.com>
6131S: Odd Fixes
6132F: drivers/staging/asus_oled/
6133
Joe Perchesa0138162011-07-05 15:21:34 -07006134STAGING - ATHEROS ATH6KL WIRELESS DRIVER
6135M: Luis R. Rodriguez <mcgrof@gmail.com>
6136M: Naveen Singh <nsingh@atheros.com>
6137S: Odd Fixes
6138F: drivers/staging/ath6kl/
6139
Joe Perchesebd3d012011-07-05 09:42:02 -07006140STAGING - COMEDI
6141M: Ian Abbott <abbotti@mev.co.uk>
6142M: Mori Hess <fmhess@users.sourceforge.net>
6143S: Odd Fixes
6144F: drivers/staging/comedi/
6145
Joe Perches8ca572c2011-07-05 09:42:03 -07006146STAGING - CRYSTAL HD VIDEO DECODER
6147M: Naren Sankar <nsankar@broadcom.com>
6148M: Jarod Wilson <jarod@wilsonet.com>
6149M: Scott Davilla <davilla@4pi.com>
6150M: Manu Abraham <abraham.manu@gmail.com>
6151S: Odd Fixes
6152F: drivers/staging/crystalhd/
6153
Joe Perchesa0138162011-07-05 15:21:34 -07006154STAGING - CYPRESS WESTBRIDGE SUPPORT
6155M: David Cross <david.cross@cypress.com>
6156S: Odd Fixes
6157F: drivers/staging/westbridge/
6158
Joe Perches0f16ffc2011-07-05 09:42:04 -07006159STAGING - ECHO CANCELLER
6160M: Steve Underwood <steveu@coppice.org>
6161M: David Rowe <david@rowetel.com>
6162S: Odd Fixes
6163F: drivers/staging/echo/
6164
Joe Perchesa0138162011-07-05 15:21:34 -07006165STAGING - FLARION FT1000 DRIVERS
6166M: Marek Belisko <marek.belisko@gmail.com>
6167S: Odd Fixes
6168F: drivers/staging/ft1000/
6169
Joe Perchesec3fab92011-07-05 09:42:05 -07006170STAGING - FRONTIER TRANZPORT AND ALPHATRACK
6171M: David Täht <d@teklibre.com>
6172S: Odd Fixes
6173F: drivers/staging/frontier/
6174
Joe Perches45f11392011-07-05 09:42:06 -07006175STAGING - HYPER-V (MICROSOFT)
6176M: Hank Janssen <hjanssen@microsoft.com>
6177M: Haiyang Zhang <haiyangz@microsoft.com>
6178S: Odd Fixes
6179F: drivers/staging/hv/
6180
Joe Perches6c1bb422011-07-05 09:42:07 -07006181STAGING - INDUSTRIAL IO
6182M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07006183L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07006184S: Odd Fixes
6185F: drivers/staging/iio/
6186
Joe Perchesa0138162011-07-05 15:21:34 -07006187STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
6188M: Jarod Wilson <jarod@wilsonet.com>
6189W: http://www.lirc.org/
6190S: Odd Fixes
6191F: drivers/staging/lirc/
6192
6193STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
6194M: Andres Salomon <dilinger@queued.net>
6195M: Chris Ball <cjb@laptop.org>
6196M: Jon Nettleton <jon.nettleton@gmail.com>
6197W: http://wiki.laptop.org/go/DCON
6198S: Odd Fixes
6199F: drivers/staging/olpc_dcon/
6200
6201STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07006202M: Willy Tarreau <willy@meta-x.org>
6203S: Odd Fixes
6204F: drivers/staging/panel/
6205
Joe Perchesa0138162011-07-05 15:21:34 -07006206STAGING - REALTEK RTL8712U DRIVERS
6207M: Larry Finger <Larry.Finger@lwfinger.net>
6208M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
6209S: Odd Fixes
6210F: drivers/staging/rtl8712/
6211
Joe Perches9629fa82011-07-05 09:42:09 -07006212STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
6213M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
6214S: Odd Fixes
6215F: drivers/staging/sm7xx/
6216
Joe Perchesa0138162011-07-05 15:21:34 -07006217STAGING - SOFTLOGIC 6x10 MPEG CODEC
6218M: Ben Collins <bcollins@bluecherry.net>
6219S: Odd Fixes
6220F: drivers/staging/solo6x10/
6221
6222STAGING - SPEAKUP CONSOLE SPEECH DRIVER
6223M: William Hubbs <w.d.hubbs@gmail.com>
6224M: Chris Brannon <chris@the-brannons.com>
6225M: Kirk Reiser <kirk@braille.uwo.ca>
6226M: Samuel Thibault <samuel.thibault@ens-lyon.org>
6227L: speakup@braille.uwo.ca
6228W: http://www.linux-speakup.org/
6229S: Odd Fixes
6230F: drivers/staging/speakup/
6231
6232STAGING - TI DSP BRIDGE DRIVERS
6233M: Omar Ramirez Luna <omar.ramirez@ti.com>
6234S: Odd Fixes
6235F: drivers/staging/tidspbridge/
6236
6237STAGING - TRIDENT TVMASTER TMxxxx USB VIDEO CAPTURE DRIVERS
6238L: linux-media@vger.kernel.org
6239S: Odd Fixes
6240F: drivers/staging/tm6000/
6241
6242STAGING - USB ENE SM/MS CARD READER DRIVER
6243M: Al Cho <acho@novell.com>
6244S: Odd Fixes
6245F: drivers/staging/keucr/
6246
Joe Perchesb3e871c2011-07-05 09:42:10 -07006247STAGING - VIA VT665X DRIVERS
6248M: Forest Bond <forest@alittletooquiet.net>
6249S: Odd Fixes
6250F: drivers/staging/vt665?/
6251
Joe Perches81a9a522011-07-05 09:42:11 -07006252STAGING - WINBOND IS89C35 WLAN USB DRIVER
6253M: Pavel Machek <pavel@ucw.cz>
6254S: Odd Fixes
6255F: drivers/staging/winbond/
6256
Joe Perches709bcb02011-07-05 09:42:13 -07006257STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
6258M: Arnaud Patard <apatard@mandriva.com>
6259S: Odd Fixes
6260F: drivers/staging/xgifb/
6261
Linus Torvalds1da177e2005-04-16 15:20:36 -07006262STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006263M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07006264S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006265F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006266
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006267SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07006268M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006269W: http://sammy.net/sun3/
6270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006271F: arch/m68k/kernel/*sun3*
6272F: arch/m68k/sun3*/
6273F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07006274F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006275
Paul Mundt2cbb12a2007-11-19 13:08:37 +09006276SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07006277M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09006278L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006279W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006280Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtbea27822010-11-10 18:07:43 +09006281T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09006282S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09006283F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07006284F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09006285F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006287SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07006288M: Len Brown <len.brown@intel.com>
6289M: Pavel Machek <pavel@ucw.cz>
6290M: "Rafael J. Wysocki" <rjw@sisk.pl>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006291L: linux-pm@lists.linux-foundation.org
6292S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006293F: Documentation/power/
6294F: arch/x86/kernel/acpi/
6295F: drivers/base/power/
6296F: kernel/power/
6297F: include/linux/suspend.h
6298F: include/linux/freezer.h
6299F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006300
6301SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006302M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303L: linux-video@atrey.karlin.mff.cuni.cz
6304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006305F: Documentation/svga.txt
6306F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307
6308SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006309M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006311F: Documentation/filesystems/sysv-fs.txt
6312F: fs/sysv/
6313F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006314
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07006315TARGET SUBSYSTEM
6316M: Nicholas A. Bellinger <nab@linux-iscsi.org>
6317L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00006318L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07006319L: http://groups.google.com/group/linux-iscsi-target-dev
6320W: http://www.linux-iscsi.org
6321T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6322S: Supported
6323F: drivers/target/
6324F: include/target/
6325F: Documentation/target/
6326
Alan Cox4e688522008-04-30 00:52:11 -07006327TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07006328M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07006329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006330F: Documentation/accounting/taskstats*
6331F: include/linux/taskstats*
6332F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07006333
Stephen Hemminger781b456a2006-07-10 20:25:29 -07006334TC CLASSIFIER
Joe Perches8b58be82009-07-29 15:04:30 -07006335M: Jamal Hadi Salim <hadi@cyberus.ca>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07006336L: netdev@vger.kernel.org
6337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006338F: include/linux/pkt_cls.h
6339F: include/net/pkt_cls.h
6340F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07006341
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07006342TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006343M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
6344M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07006345W: http://tcp-lp-mod.sourceforge.net/
6346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006347F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07006348
Erik Gilling84b94142010-06-09 15:35:53 -07006349TEGRA SUPPORT
6350M: Colin Cross <ccross@android.com>
6351M: Erik Gilling <konkers@android.com>
6352M: Olof Johansson <olof@lixom.net>
6353L: linux-tegra@vger.kernel.org
6354T: git git://android.git.kernel.org/kernel/tegra.git
6355S: Supported
6356F: arch/arm/mach-tegra
6357
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07006358TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006359M: Alexander Indenbaum <baum@tehutinetworks.net>
6360M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07006361L: netdev@vger.kernel.org
6362S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07006363F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07006364
Alan Cox4e688522008-04-30 00:52:11 -07006365Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07006366M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07006367S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006368F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07006369
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006370TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07006371M: Chris Zankel <chris@zankel.net>
Alan Cox4e688522008-04-30 00:52:11 -07006372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006373F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07006374
6375THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006376M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07006377L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05006378L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006379W: http://ibm-acpi.sourceforge.net
6380W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07006381T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07006382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006383F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07006384
Alex Dubov4020f2d2006-10-04 02:15:37 -07006385TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006386M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006388F: drivers/misc/tifm*
6389F: drivers/mmc/host/tifm_sd.c
6390F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07006391
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03006392TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03006393M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03006394L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6395S: Maintained
6396F: sound/soc/codecs/twl4030*
6397
Per Lidene86eaa32006-01-12 16:45:18 +01006398TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006399M: Jon Maloy <jon.maloy@ericsson.com>
6400M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05006401L: netdev@vger.kernel.org (core kernel code)
6402L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01006403W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01006404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006405F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07006406F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01006407
Chris Metcalf867e3592010-05-28 23:09:12 -04006408TILE ARCHITECTURE
6409M: Chris Metcalf <cmetcalf@tilera.com>
6410W: http://www.tilera.com/scm/
6411S: Supported
6412F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08006413F: drivers/tty/hvc/hvc_tile.c
Chris Metcalfe5a06932010-11-01 17:00:37 -04006414F: drivers/net/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05006415F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04006416
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006418M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08006419L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006420W: http://sourceforge.net/projects/tlan/
6421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006422F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07006423F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424
Kentaro Takedad74db3b2009-02-05 17:18:18 +09006425TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006426M: Kentaro Takeda <takedakn@nttdata.co.jp>
6427M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09006428L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
6429L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09006430L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
6431L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
6432W: http://tomoyo.sourceforge.jp/
Tetsuo Handa3a6297a2011-06-29 14:17:31 +09006433T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.4.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09006434S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006435F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09006436
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03006437TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006438M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05006439L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03006440S: Maintained
6441F: drivers/platform/x86/topstar-laptop.c
6442
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05006444L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02006445S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006446F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006447
6448TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006449M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006450L: tlinux-users@tce.toshiba-dme.co.jp
6451W: http://www.buzzard.org.uk/toshiba/
6452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006453F: drivers/char/toshiba.c
6454F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455
Pierre Ossmand719f902009-03-24 21:06:09 +01006456TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02006457M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07006458M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02006459L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01006460S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02006461F: drivers/mmc/host/tmio_mmc*
6462F: drivers/mmc/host/sh_mobile_sdhi.c
6463F: include/linux/mmc/tmio.h
6464F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01006465
Hugh Dickins98f32602009-05-21 20:33:58 +01006466TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07006467M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01006468L: linux-mm@kvack.org
6469S: Maintained
6470F: include/linux/shmem_fs.h
6471F: mm/shmem.c
6472
Alan Cox4e688522008-04-30 00:52:11 -07006473TPM DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006474M: Debora Velarde <debora@linux.vnet.ibm.com>
6475M: Rajiv Andrade <srajiv@linux.vnet.ibm.com>
Alan Cox4e688522008-04-30 00:52:11 -07006476W: http://tpmdd.sourceforge.net
Joe Perches8b58be82009-07-29 15:04:30 -07006477M: Marcel Selhorst <m.selhorst@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08006478W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07006479L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07006480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006481F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07006482
Joe Perchesd6f005a2009-10-26 16:49:40 -07006483TRACING
6484M: Steven Rostedt <rostedt@goodmis.org>
6485M: Frederic Weisbecker <fweisbec@gmail.com>
6486M: Ingo Molnar <mingo@redhat.com>
Frederic Weisbecker86a8c632010-07-15 23:03:38 +02006487T: 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 -07006488S: Maintained
6489F: Documentation/trace/ftrace.txt
6490F: arch/*/*/*/ftrace.h
6491F: arch/*/kernel/ftrace.c
6492F: include/*/ftrace.h
6493F: include/linux/trace*.h
6494F: include/trace/
6495F: kernel/trace/
6496
Linus Torvalds1da177e2005-04-16 15:20:36 -07006497TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07006498M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07006499T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006500S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02006501K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07006502
Alan Cox4e688522008-04-30 00:52:11 -07006503TTY LAYER
Greg Kroah-Hartman57d7f282009-07-31 21:28:16 -07006504M: Greg Kroah-Hartman <gregkh@suse.de>
6505S: Maintained
Greg Kroah-Hartman3da39bc2010-11-09 09:15:40 -08006506T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty-2.6.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006507F: drivers/tty/*
6508F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01006509F: include/linux/serial_core.h
6510F: include/linux/serial.h
6511F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07006512
Grant Grundler740db6d2008-02-17 11:53:49 -07006513TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006514M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07006515L: netdev@vger.kernel.org
6516S: Maintained
Jeff Kirshera88394c2011-05-20 07:15:19 -07006517F: drivers/net/ethernet/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006518
6519TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07006520M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521L: vtun@office.satix.net
6522W: http://vtun.sourceforge.net/tun
6523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006524F: Documentation/networking/tuntap.txt
6525F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006526
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08006527TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006528M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08006529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006530F: drivers/tc/
6531F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08006532
Linus Torvalds1da177e2005-04-16 15:20:36 -07006533U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006534M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006535L: linux-scsi@vger.kernel.org
6536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006537F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006538
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006539UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03006540M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03006541M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006542L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03006543T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006544W: http://www.linux-mtd.infradead.org/doc/ubifs.html
6545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006546F: Documentation/filesystems/ubifs.txt
6547F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006548
Alan Coxcc2020e2008-05-19 14:21:51 +01006549UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07006550M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01006551W: http://www.uclinux.org/
6552L: uclinux-dev@uclinux.org (subscribers-only)
6553S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07006554F: arch/m68k/*/*_no.*
6555F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01006556
Robert P. J. Day14fadca2009-04-21 12:24:47 -07006557UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07006558M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01006559W: http://uclinux-h8.sourceforge.jp/
6560S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07006561F: arch/h8300/
6562F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07006563F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01006564
Linus Torvalds1da177e2005-04-16 15:20:36 -07006565UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006566M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006567W: http://linux-udf.sourceforge.net
6568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006569F: Documentation/filesystems/udf.txt
6570F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006571
Alan Coxcc2020e2008-05-19 14:21:51 +01006572UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006573M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01006574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006575F: Documentation/filesystems/ufs.txt
6576F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01006577
David Vrabel18332a82008-09-17 16:34:44 +01006578ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01006579L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01006580S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00006581F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07006582F: include/linux/uwb.h
6583F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01006584
GuanXuetaob31d8272011-01-16 00:35:49 +08006585UNICORE32 ARCHITECTURE:
6586M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6587W: http://mprc.pku.edu.cn/~guanxuetao/linux
6588S: Maintained
6589T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6590F: arch/unicore32/
6591
Tony Finchd8379ab2009-11-27 15:50:30 +00006592UNIFDEF
6593M: Tony Finch <dot@dotat.at>
6594W: http://dotat.at/prog/unifdef
6595S: Maintained
6596F: scripts/unifdef.c
6597
Linus Torvalds1da177e2005-04-16 15:20:36 -07006598UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006599M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006600W: http://www.kernel.dk
6601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006602F: Documentation/cdrom/
6603F: drivers/cdrom/cdrom.c
6604F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006606UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03006607M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006608W: http://www.linux-mtd.infradead.org/
6609L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03006610T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006611S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006612F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07006613F: include/linux/mtd/ubi.h
6614F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006615
Linus Torvalds1da177e2005-04-16 15:20:36 -07006616USB ACM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006617M: Oliver Neukum <oliver@neukum.name>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07006618L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006620F: Documentation/usb/acm.txt
6621F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006622
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02006623USB ATTACHED SCSI
6624M: Matthew Wilcox <willy@linux.intel.com>
6625M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
6626L: linux-usb@vger.kernel.org
6627L: linux-scsi@vger.kernel.org
6628S: Supported
6629F: drivers/usb/storage/uas.c
6630
Linus Torvalds1da177e2005-04-16 15:20:36 -07006631USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07006632M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006633L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006635F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006636
Linus Torvalds1da177e2005-04-16 15:20:36 -07006637USB CDC ETHERNET DRIVER
Oliver Neukumf0348d42009-12-11 15:01:26 -08006638M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006639L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006641F: drivers/net/usb/cdc_*.c
6642F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006643
Peter Korsgaardb02b3712008-04-27 08:59:44 +02006644USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006645M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02006646L: linux-usb@vger.kernel.org
6647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006648F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02006649
Peter Korsgaardd0374f42007-02-16 17:03:54 +01006650USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006651M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02006652L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01006653W: http://www.linux-usb.org/usbnet
6654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006655F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01006656
Alan Coxcc2020e2008-05-19 14:21:51 +01006657USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006658M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01006659L: rio500-users@lists.sourceforge.net
6660W: http://rio500.sourceforge.net
6661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006662F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01006663
Linus Torvalds1da177e2005-04-16 15:20:36 -07006664USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04006665M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006666L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04006667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006668F: Documentation/usb/ehci.txt
6669F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006670
Luca Risolia7ce08c92006-01-11 02:06:59 +00006671USB ET61X[12]51 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006672M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006673L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006674L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006675T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00006676W: http://www.linux-projects.org
6677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006678F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00006679
David Brownell69ae9e32006-11-14 02:03:31 -08006680USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03006681M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006682L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006683W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03006684T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006686F: drivers/usb/gadget/
6687F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08006688
Jiri Kosina2dea64b2007-07-11 12:12:11 +02006689USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07006690M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006691L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006692T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006693S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07006694F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07006695F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006696
matt mooney857aab32011-06-17 15:50:46 -07006697USB/IP DRIVERS
6698M: Matt Mooney <mfm@muteddisk.com>
6699L: linux-usb@vger.kernel.org
6700S: Maintained
6701F: drivers/staging/usbip/
6702
Olav Kongas959eea22005-11-03 17:38:14 +02006703USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006704M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006705L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02006706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006707F: drivers/usb/host/isp116x*
6708F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02006709
Linus Torvalds1da177e2005-04-16 15:20:36 -07006710USB KAWASAKI LSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006711M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006712L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006714F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006715
6716USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006717M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006718L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08006719L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07006720S: Maintained
6721W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07006722F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006723
Clemens Ladischaf399172011-01-10 16:32:54 +01006724USB MIDI DRIVER
6725M: Clemens Ladisch <clemens@ladisch.de>
6726L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6727T: git git://git.alsa-project.org/alsa-kernel.git
6728S: Maintained
6729F: sound/usb/midi.*
6730
Linus Torvalds1da177e2005-04-16 15:20:36 -07006731USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04006732M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006733L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04006734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006735F: Documentation/usb/ohci.txt
6736F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006737
Matthias Urlichsba460e42005-07-14 00:33:47 -07006738USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006739M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006740L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07006741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006742F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07006743
Linus Torvalds1da177e2005-04-16 15:20:36 -07006744USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006745M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006746L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006747L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006748W: http://pegasus2.sourceforge.net/
6749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006750F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006751
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006752USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07006753M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006754L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006755S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006756F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006757
6758USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006759M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006760L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006761L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006762W: http://pegasus2.sourceforge.net/
6763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006764F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006765
Alan Cox4e688522008-04-30 00:52:11 -07006766USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006767M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006768L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006770F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07006771
6772USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006773M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006774L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006775S: Maintained
6776W: http://geocities.com/i0xox0i
6777W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07006778F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07006779
Linus Torvalds1da177e2005-04-16 15:20:36 -07006780USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006781M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006782W: http://www.reiner-sct.de/support/treiber_cyberjack.php
6783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006784F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006785
6786USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006787M: Peter Berger <pberger@brimson.com>
6788M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006789L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006790S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006791F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006792
6793USB SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006794M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006795L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006796S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006797F: Documentation/usb/usb-serial.txt
6798F: drivers/usb/serial/generic.c
6799F: drivers/usb/serial/usb-serial.c
6800F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006801
Linus Torvalds1da177e2005-04-16 15:20:36 -07006802USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006803M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006804L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006806F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006807
6808USB SERIAL KEYSPAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006809M: Greg Kroah-Hartman <greg@kroah.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006810L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006811W: http://www.kroah.com/linux/
6812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006813F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006814
6815USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006816M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006817L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006818W: http://www.connecttech.com
6819S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006820F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006821
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006822USB SMSC95XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006823M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006824L: netdev@vger.kernel.org
6825S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006826F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006827
Luca Risoliaf423b9a2007-03-26 16:12:04 -03006828USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006829M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006830L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006831L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006832T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006833W: http://www.linux-projects.org
6834S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006835F: Documentation/video4linux/sn9c102.txt
6836F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006837
6838USB SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006839M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006840L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006841W: http://www.linux-usb.org
Greg Kroah-Hartmanc9a7ec82010-11-09 09:11:49 -08006842T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006843S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006844F: Documentation/usb/
6845F: drivers/net/usb/
6846F: drivers/usb/
6847F: include/linux/usb.h
6848F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006849
6850USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006851M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006852L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006853S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006854F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006855
David Brownell69ae9e32006-11-14 02:03:31 -08006856USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02006857M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02006858L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006859W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07006860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006861F: drivers/net/usb/usbnet.c
6862F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006863
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006864USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07006865M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Jiri Slabya67534a2008-12-10 09:09:27 -03006866L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006867L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006868T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03006869W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006871F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006872
Linus Torvalds1da177e2005-04-16 15:20:36 -07006873USB W996[87]CF DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006874M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006875L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006876L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006877T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006878W: http://www.linux-projects.org
6879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006880F: Documentation/video4linux/w9968cf.txt
6881F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006882
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006883USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07006884M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006885L: linux-wireless@vger.kernel.org
6886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006887F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006888
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006889USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08006890M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006891L: linux-usb@vger.kernel.org
6892S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08006893F: drivers/usb/host/xhci*
6894F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006895
Linus Torvalds1da177e2005-04-16 15:20:36 -07006896USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04006897L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006898W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04006899S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006900F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006901
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006902USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006903M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006904L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006905L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006906T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006907W: http://royale.zerezo.com/zr364xx/
6908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006909F: Documentation/video4linux/zr364xx.txt
6910F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006911
Randy Dunlape7839f22008-10-12 16:11:45 -07006912USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07006913M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01006914M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006915L: user-mode-linux-devel@lists.sourceforge.net
6916L: user-mode-linux-user@lists.sourceforge.net
6917W: http://user-mode-linux.sourceforge.net
6918S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07006919F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07006920F: arch/um/
6921F: fs/hostfs/
6922F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006923
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006924USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07006925M: "Hans J. Koch" <hjk@hansjkoch.de>
Joe Perches8b58be82009-07-29 15:04:30 -07006926M: Greg Kroah-Hartman <gregkh@suse.de>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006928F: Documentation/DocBook/uio-howto.tmpl
6929F: drivers/uio/
6930F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006931
Karel Zakf899b0a2008-05-23 13:04:21 -07006932UTIL-LINUX-NG PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07006933M: Karel Zak <kzak@redhat.com>
Karel Zakf899b0a2008-05-23 13:04:21 -07006934L: util-linux-ng@vger.kernel.org
6935W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07006936T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07006937S: Maintained
6938
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006939UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006940M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006941L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006942W: http://dev.gentoo.org/~spock/projects/uvesafb/
6943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006944F: Documentation/fb/uvesafb.txt
6945F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006946
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006947VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006948M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006950F: Documentation/filesystems/vfat.txt
6951F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006952
Pawel Osciak9e6f3432011-06-15 15:08:32 -07006953VIDEOBUF2 FRAMEWORK
6954M: Pawel Osciak <pawel@osciak.com>
6955M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03006956M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07006957L: linux-media@vger.kernel.org
6958S: Maintained
6959F: drivers/media/video/videobuf2-*
6960F: include/media/videobuf2-*
6961
Amit Shah9a824462010-03-23 18:23:09 +05306962VIRTIO CONSOLE DRIVER
6963M: Amit Shah <amit.shah@redhat.com>
6964L: virtualization@lists.linux-foundation.org
6965S: Maintained
6966F: drivers/char/virtio_console.c
6967F: include/linux/virtio_console.h
6968
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10306969VIRTIO CORE, NET AND BLOCK DRIVERS
6970M: Rusty Russell <rusty@rustcorp.com.au>
6971M: "Michael S. Tsirkin" <mst@redhat.com>
6972L: virtualization@lists.linux-foundation.org
6973S: Maintained
6974F: drivers/virtio/
6975F: drivers/net/virtio_net.c
6976F: drivers/block/virtio_blk.c
6977F: include/linux/virtio_*.h
6978
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00006979VIRTIO HOST (VHOST)
6980M: "Michael S. Tsirkin" <mst@redhat.com>
6981L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00006982L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00006983L: netdev@vger.kernel.org
6984S: Maintained
6985F: drivers/vhost/
6986F: include/linux/vhost.h
6987
Linus Torvalds1da177e2005-04-16 15:20:36 -07006988VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006989M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006990S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07006991F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006992
Jean Delvare32c0a522005-09-22 21:47:58 +02006993VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006994M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01006995L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02006996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006997F: Documentation/i2c/busses/i2c-viapro
6998F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02006999
Harald Weltef0bf7f62009-06-17 20:22:39 +02007000VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08007001M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07007002M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02007003S: Maintained
7004F: drivers/mmc/host/via-sdmmc.c
7005
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007006VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007007M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007008L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007009S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007010F: include/linux/via-core.h
7011F: include/linux/via-gpio.h
7012F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07007013F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007014
Francois Romieu01f20732007-01-26 00:57:17 -08007015VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007016M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08007017L: netdev@vger.kernel.org
7018S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007019F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007020
Patrick McHardybe7f8272007-10-23 20:26:36 -07007021VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07007022M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07007023L: netdev@vger.kernel.org
7024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007025F: drivers/net/macvlan.c
7026F: include/linux/if_*vlan.h
7027F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07007028
Florian Fainelli55e331c2009-06-16 15:33:53 -07007029VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07007030M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08007031L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07007032S: Maintained
7033F: drivers/vlynq/vlynq.c
7034F: include/linux/vlynq.h
7035
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007036VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08007037M: Shreyas Bhatewara <sbhatewara@vmware.com>
7038M: "VMware, Inc." <pv-drivers@vmware.com>
7039L: netdev@vger.kernel.org
7040S: Maintained
7041F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007042
Alok Kataria851b1642009-10-13 14:51:05 -07007043VMware PVSCSI driver
7044M: Alok Kataria <akataria@vmware.com>
7045M: VMware PV-Drivers <pv-drivers@vmware.com>
7046L: linux-scsi@vger.kernel.org
7047S: Maintained
7048F: drivers/scsi/vmw_pvscsi.c
7049F: drivers/scsi/vmw_pvscsi.h
7050
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007051VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01007052M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007053M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007054W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00007055W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07007056T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007057S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007058F: drivers/regulator/
7059F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007060
Juerg Haefligerab413192006-09-24 20:54:04 +02007061VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007062M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02007063L: lm-sensors@lm-sensors.org
7064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007065F: Documentation/hwmon/vt1211
7066F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02007067
Roger Lucas1de9e372005-11-26 20:20:05 +01007068VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007069M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01007070L: lm-sensors@lm-sensors.org
7071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007072F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01007073
Tony Olech88095e72011-05-14 16:48:13 -04007074VUB300 USB to SDIO/SD/MMC bridge chip
7075M: Tony Olech <tony.olech@elandigitalsystems.com>
7076L: linux-mmc@vger.kernel.org
7077L: linux-usb@vger.kernel.org
7078S: Supported
7079F: drivers/mmc/host/vub300.c
7080
Linus Torvalds1da177e2005-04-16 15:20:36 -07007081W1 DALLAS'S 1-WIRE BUS
Joe Perches8b58be82009-07-29 15:04:30 -07007082M: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007084F: Documentation/w1/
7085F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007086
Charles Spirakis13927072006-07-05 18:05:15 +02007087W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007088M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02007089L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04007090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007091F: Documentation/hwmon/w83791d
7092F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02007093
Rudolf Marek61db0112006-12-12 18:18:30 +01007094W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007095M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01007096L: lm-sensors@lm-sensors.org
7097S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007098F: Documentation/hwmon/w83793
7099F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01007100
Jean Delvaree3760b42010-10-28 20:31:49 +02007101W83795 HARDWARE MONITORING DRIVER
7102M: Jean Delvare <khali@linux-fr.org>
7103L: lm-sensors@lm-sensors.org
7104S: Maintained
7105F: drivers/hwmon/w83795.c
7106
Linus Torvalds1da177e2005-04-16 15:20:36 -07007107W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007108M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007110F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007111
Wim Van Sebroeck35277612006-01-15 21:21:14 +01007112WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007113M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00007114L: linux-watchdog@vger.kernel.org
7115W: http://www.linux-watchdog.org/
Joe Perches54e58812009-04-07 21:08:10 -07007116T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01007117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007118F: Documentation/watchdog/
7119F: drivers/watchdog/
7120F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01007121
Linus Torvalds1da177e2005-04-16 15:20:36 -07007122WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007123M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007124L: linux-scsi@vger.kernel.org
7125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007126F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007127
David Härdemane258b802009-09-21 17:04:53 -07007128WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07007129M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07007130S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07007131F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07007132
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08007133WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07007134M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08007135M: linux-wimax@intel.com
7136L: wimax@linuxwimax.org
7137S: Supported
7138W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07007139F: Documentation/wimax/README.wimax
7140F: include/linux/wimax.h
7141F: include/linux/wimax/debug.h
7142F: include/net/wimax.h
7143F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08007144
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05007145WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007146M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05007147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007148F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05007149
Kalle Valo834da342009-07-21 14:26:08 +03007150WL1251 WIRELESS DRIVER
Luciano Coelhof9ab38b2011-07-17 10:06:34 +03007151M: Luciano Coelho <coelho@ti.com>
Kalle Valo834da342009-07-21 14:26:08 +03007152L: linux-wireless@vger.kernel.org
Luciano Coelhof9ab38b2011-07-17 10:06:34 +03007153W: http://wireless.kernel.org/en/users/Drivers/wl1251
Kalle Valo834da342009-07-21 14:26:08 +03007154T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
7155S: Maintained
Kalle Valocc2858c2010-10-10 11:28:33 +03007156F: drivers/net/wireless/wl1251/*
Luciano Coelho5e68ff62009-08-10 11:15:13 +03007157
7158WL1271 WIRELESS DRIVER
Luciano Coelhoa29091e2011-01-26 21:46:29 +02007159M: Luciano Coelho <coelho@ti.com>
Luciano Coelho5e68ff62009-08-10 11:15:13 +03007160L: linux-wireless@vger.kernel.org
Luciano Coelhoa29091e2011-01-26 21:46:29 +02007161W: http://wireless.kernel.org/en/users/Drivers/wl12xx
Luciano Coelho381bd102010-09-28 09:54:27 +03007162T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
Luciano Coelho5e68ff62009-08-10 11:15:13 +03007163S: Maintained
Luciano Coelhoa29091e2011-01-26 21:46:29 +02007164F: drivers/net/wireless/wl12xx/
Ohad Ben-Cohenc1f9a092010-09-16 13:16:02 +02007165F: include/linux/wl12xx.h
Kalle Valo834da342009-07-21 14:26:08 +03007166
Linus Torvalds1da177e2005-04-16 15:20:36 -07007167WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007168M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07007169L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03007170W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07007171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007172F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007173
Mark Brownfebf1df2008-04-02 00:51:09 -04007174WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007175M: Mark Brown <broonie@opensource.wolfsonmicro.com>
7176M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04007177L: linux-input@vger.kernel.org
7178T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
7179W: http://opensource.wolfsonmicro.com/node/7
7180S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007181F: drivers/input/touchscreen/*wm97*
7182F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04007183
Mark Brown055bcbc2010-08-13 14:18:12 +01007184WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07007185M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Browna532f972010-08-13 14:18:29 +01007186M: Ian Lartey <ian@opensource.wolfsonmicro.com>
Mark Brown645a6592010-10-05 19:27:56 -07007187M: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
Mark Browncf8eda32010-10-05 19:31:40 -07007188T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01007189T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07007190W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01007191S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08007192F: Documentation/hwmon/wm83??
Mark Brownb75ea162009-07-02 16:43:08 +01007193F: drivers/leds/leds-wm83*.c
7194F: drivers/mfd/wm8*.c
7195F: drivers/power/wm83*.c
7196F: drivers/rtc/rtc-wm83*.c
7197F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01007198F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01007199F: drivers/watchdog/wm83*_wdt.c
Mark Brown3860e6c2009-09-09 14:46:43 +01007200F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01007201F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08007202F: include/linux/mfd/wm8400*
Mark Brown055bcbc2010-08-13 14:18:12 +01007203F: include/sound/wm????.h
7204F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01007205
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01007206WORKQUEUE
7207M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01007208T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
7209S: Maintained
7210F: include/linux/workqueue.h
7211F: kernel/workqueue.c
7212F: Documentation/workqueue.txt
7213
Linus Torvalds1da177e2005-04-16 15:20:36 -07007214X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00007215M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007216L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00007217S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007218F: Documentation/networking/x25*
7219F: include/net/x25*
7220F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007221
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007222X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07007223M: Thomas Gleixner <tglx@linutronix.de>
7224M: Ingo Molnar <mingo@redhat.com>
7225M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08007226M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007227T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007229F: Documentation/x86/
7230F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007231
Matthew Garrettd0944852010-02-11 10:40:13 -05007232X86 PLATFORM DRIVERS
7233M: Matthew Garrett <mjg@redhat.com>
7234L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07007235T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05007236S: Maintained
7237F: drivers/platform/x86
7238
Ingo Molnarc1f5c542011-06-18 22:51:13 +02007239X86 MCE INFRASTRUCTURE
7240M: Tony Luck <tony.luck@intel.com>
7241M: Borislav Petkov <bp@amd64.org>
7242L: linux-edac@vger.kernel.org
7243S: Maintained
7244F: arch/x86/kernel/cpu/mcheck/*
7245
Ian Campbellc4468082011-04-27 15:26:46 -07007246XEN HYPERVISOR INTERFACE
7247M: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
7248M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7249L: xen-devel@lists.xensource.com (moderated for non-subscribers)
7250L: virtualization@lists.linux-foundation.org
7251S: Supported
7252F: arch/x86/xen/
7253F: drivers/*/xen-*front.c
7254F: drivers/xen/
7255F: arch/x86/include/asm/xen/
7256F: include/xen/
7257
Ian Campbell9b57e1a2011-04-03 23:12:23 +00007258XEN NETWORK BACKEND DRIVER
7259M: Ian Campbell <ian.campbell@citrix.com>
7260L: xen-devel@lists.xensource.com (moderated for non-subscribers)
7261L: netdev@vger.kernel.org
7262S: Supported
7263F: drivers/net/xen-netback/*
7264
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04007265XEN PCI SUBSYSTEM
7266M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08007267L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02007268S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04007269F: arch/x86/pci/*xen*
7270F: drivers/pci/*xen*
7271
7272XEN SWIOTLB SUBSYSTEM
7273M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08007274L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04007275S: Supported
7276F: arch/x86/xen/*swiotlb*
7277F: drivers/xen/*swiotlb*
7278
Linus Torvalds1da177e2005-04-16 15:20:36 -07007279XFS FILESYSTEM
7280P: Silicon Graphics Inc
Alex Elderf08a59f2009-09-11 09:51:25 -05007281M: Alex Elder <aelder@sgi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007282M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10007283L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07007284W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07007285T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007286S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007287F: Documentation/filesystems/xfs.txt
7288F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007289
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02007290XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007291M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02007292W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02007293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007294F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02007295
Peter Korsgaard238b8722006-12-06 20:35:17 -08007296XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007297M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08007298L: linux-serial@vger.kernel.org
7299S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007300F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08007301
Linus Torvalds1da177e2005-04-16 15:20:36 -07007302YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07007303M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007304L: linux-hams@vger.kernel.org
7305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007306F: drivers/net/hamradio/yam*
7307F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007308
Henkaf64a5e2005-10-12 15:02:56 +02007309YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007310M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02007311L: usbb2k-api-dev@nongnu.org
7312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007313F: Documentation/input/yealink.txt
7314F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02007315
Linus Torvalds1da177e2005-04-16 15:20:36 -07007316Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07007317M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007318W: http://yaina.de/jreuter/
7319W: http://www.qsl.net/dl1bke/
7320L: linux-hams@vger.kernel.org
7321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007322F: Documentation/networking/z8530drv.txt
7323F: drivers/net/hamradio/*scc.c
7324F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007325
Daniel Drake7c0c3af2006-07-16 13:55:17 +01007326ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007327M: Daniel Drake <dsd@gentoo.org>
7328M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01007329W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07007330L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01007331L: zd1211-devs@lists.sourceforge.net (subscribers-only)
7332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007333F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01007334
Linus Torvalds1da177e2005-04-16 15:20:36 -07007335ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07007336L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03007337L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007338W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03007339T: Mercurial http://linuxtv.org/hg/v4l-dvb
7340S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007341F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007342
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07007343ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007344M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07007345S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007346F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07007347
Linus Torvalds1da177e2005-04-16 15:20:36 -07007348THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07007349M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07007350L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007351Q: http://patchwork.kernel.org/project/LKML/list/
Joe Perchescfe81f72009-04-07 21:09:58 -07007352T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007353S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07007354F: *
7355F: */