blob: fe1cd41b660fee715013233c7a799e961e08a628 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2 List of maintainers and how to submit kernel changes
3
4Please try to follow the guidelines below. This will make things
5easier on the maintainers. Not all of these guidelines matter for every
6trivial patch so apply some common sense.
7
81. Always _test_ your changes, however small, on at least 4 or
9 5 people, preferably many more.
10
112. Try to release a few ALPHA test versions to the net. Announce
12 them onto the kernel channel and await results. This is especially
13 important for device drivers, because often that's the only way
14 you will find things like the fact version 3 firmware needs
15 a magic fix you didn't know about, or some clown changed the
16 chips on a board and not its name. (Don't laugh! Look at the
17 SMC etherpower for that.)
18
193. Make sure your changes compile correctly in multiple
20 configurations. In particular check that changes work both as a
21 module and built into the kernel.
22
234. When you are happy with a change make it generally available for
24 testing and await feedback.
25
265. Make a patch available to the relevant maintainer in the list. Use
27 'diff -u' to make the patch easy to merge. Be prepared to get your
28 changes sent back with seemingly silly requests about formatting
29 and variable names. These aren't as silly as they seem. One
30 job the maintainers (and especially Linus) do is to keep things
31 looking the same. Sometimes this means that the clever hack in
32 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070033 generalized kernel feature ready for next time.
34
35 PLEASE check your patch with the automated style checker
36 (scripts/checkpatch.pl) to catch trival style violations.
37 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Joe Perchesf70f8732009-06-16 15:34:08 -070039 PLEASE CC: the maintainers and mailing lists that are generated
40 by scripts/get_maintainer.pl. The results returned by the
41 script will be best if you have git installed and are making
42 your changes in a branch derived from Linus' latest git tree.
43 See Documentation/SubmittingPatches for details.
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 PLEASE try to include any credit lines you want added with the
46 patch. It avoids people being missed off by mistake and makes
47 it easier to know who wants adding and who doesn't.
48
49 PLEASE document known bugs. If it doesn't work for everything
50 or does something very odd once a month document it.
51
Alan Coxc9ee1332006-05-20 15:00:12 -070052 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070053 of the OSDL certificate of contribution and should include a
54 Signed-off-by: line. The current version of this "Developer's
55 Certificate of Origin" (DCO) is listed in the file
56 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070057
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586. Make sure you have the right to send any changes you make. If you
59 do changes at work you may find your employer owns the patch
60 not you.
61
Alan Coxc9ee1332006-05-20 15:00:12 -0700627. When sending security related changes or reports to a maintainer
63 please Cc: security@kernel.org, especially if the maintainer
64 does not respond.
65
668. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Antoine Jacquetb7eee612007-04-27 12:30:59 -030068 -----------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70Maintainers List (try to look for most precise areas first)
71
72Note: For the hard of thinking, this list is meant to remain in alphabetical
73order. If you could add yourselves to it in alphabetical order that would be
74so much easier [Ed]
75
Joe Perches2bed6ee2009-07-29 15:04:32 -070076P: Person (obsolete)
77M: Mail patches to: FullName <address@domain>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078L: Mailing list that is relevant to this area
79W: Web-page with status/info
Alan Coxe960bf72009-06-11 14:04:57 +010080T: SCM tree type and location. Type is one of: git, hg, quilt, stgit.
Randy Dunlap4501a462008-10-13 09:24:58 -070081S: Status, one of the following:
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 Supported: Someone is actually paid to look after this.
84 Maintained: Someone actually looks after it.
85 Odd Fixes: It has a maintainer but they don't have time to do
86 much other than throw the odd patch in. See below..
87 Orphan: No current maintainer [but maybe you could take the
88 role as you write your new code].
89 Obsolete: Old code. Something tagged obsolete generally means
90 it has been replaced by a better system and you
91 should be using that.
92
Joe Perches679655d2009-04-07 20:44:32 -070093F: Files and directories with wildcard patterns.
94 A trailing slash includes all files and subdirectory files.
95 F: drivers/net/ all files in and below drivers/net
96 F: drivers/net/* all files in drivers/net, but not below
97 F: */net/* all files in "any top level directory"/net
98 One pattern per line. Multiple F: lines acceptable.
99X: Files and directories that are NOT maintained, same rules as F:
100 Files exclusions are tested before file matches.
101 Can be useful for excluding a specific subdirectory, for instance:
102 F: net/
103 X: net/ipv6/
104 matches all files in and below net excluding net/ipv6/
105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063C505 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700107M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700108L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700110F: drivers/net/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Steffen Klasserta6d89912007-08-10 14:05:27 -07001123C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700113M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700114L: netdev@vger.kernel.org
115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700116F: Documentation/networking/vortex.txt
117F: drivers/net/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700120M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700121L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700123F: drivers/net/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001253W-9XXX SATA-RAID CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700126M: Adam Radford <linuxraid@amcc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127L: linux-scsi@vger.kernel.org
128W: http://www.amcc.com
129S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700130F: drivers/scsi/3w-9xxx*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001323W-XXXX ATA-RAID CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700133M: Adam Radford <linuxraid@amcc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134L: linux-scsi@vger.kernel.org
135W: http://www.amcc.com
136S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700137F: drivers/scsi/3w-xxxx*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
13953C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700140M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141L: linux-scsi@vger.kernel.org
142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700143F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
1456PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700146M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147L: linux-hams@vger.kernel.org
148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700149F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518169 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700152M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700153L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700155F: drivers/net/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
1578250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158L: linux-serial@vger.kernel.org
159W: http://serial.sourceforge.net
Linus Torvalds90a09c92009-07-30 16:40:37 -0700160S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700161F: drivers/serial/8250*
162F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
1648390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Joe Perches8b58be82009-07-29 15:04:30 -0700165M: Paul Gortmaker <p_gortmaker@yahoo.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700166L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700168F: drivers/net/*8390*
169F: drivers/net/ax88796.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001719P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700172M: Eric Van Hensbergen <ericvh@gmail.com>
173M: Ron Minnich <rminnich@sandia.gov>
174M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100175L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500176W: http://swik.net/v9fs
Joe Perches54e58812009-04-07 21:08:10 -0700177T: git git://git.kernel.org/pub/scm/linux/kernel/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700179F: Documentation/filesystems/9p.txt
180F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182A2232 SERIAL BOARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700183M: Enver Haase <A2232@gmx.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184L: linux-m68k@lists.linux-m68k.org
185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700186F: drivers/char/ser_a2232*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700188AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700189M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700190L: linux-scsi@vger.kernel.org
191W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700193F: Documentation/scsi/aacraid.txt
194F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700196ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700197M: Hans de Goede <j.w.r.degoede@hhs.nl>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200198L: lm-sensors@lm-sensors.org
199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700200F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200201
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700202ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700203M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700204L: lm-sensors@lm-sensors.org
205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700206F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700209M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210L: linux-acenic@sunsite.dk
211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700212F: drivers/net/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Peter Feuerere86435e2009-06-21 18:53:03 +0200214ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700215M: Peter Feuerer <peter@piie.net>
Joe Perches4fc26e32009-07-29 15:04:22 -0700216W: http://piie.net/?section=acerhdf
217S: Maintained
218F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200219
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000220ACER WMI LAPTOP EXTRAS
Joe Perches8b58be82009-07-29 15:04:30 -0700221M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000222L: aceracpi@googlegroups.com (subscribers-only)
223W: http://code.google.com/p/aceracpi
224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700225F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700228M: Len Brown <lenb@kernel.org>
Len Brown6968e502005-12-30 00:32:49 -0500229L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400230W: http://www.lesswatts.org/projects/acpi/
Joe Perches54e58812009-04-07 21:08:10 -0700231T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500232S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700233F: drivers/acpi/
234F: drivers/pnp/pnpacpi/
235F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700236F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500237
238ACPI BATTERY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700239M: Alexey Starikovskiy <astarikovskiy@suse.de>
Len Brown8b59a452007-01-08 19:03:28 -0500240L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300241W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500242S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700243F: drivers/acpi/battery.c
244F: drivers/acpi/*sbs*
Len Brown8b59a452007-01-08 19:03:28 -0500245
246ACPI EC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700247M: Alexey Starikovskiy <astarikovskiy@suse.de>
Len Brown8b59a452007-01-08 19:03:28 -0500248L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300249W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500250S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700251F: drivers/acpi/ec.c
Len Brown8b59a452007-01-08 19:03:28 -0500252
253ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700254M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500255L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300256W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500257S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700258F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Shaohua Li8e0af512009-07-27 18:11:02 -0400260ACPI PROCESSOR AGGREGATOR DRIVER
Linus Torvalds5e5027b2009-10-04 15:03:00 -0700261M: Shaohua Li <shaohua.li@intel.com>
Shaohua Li8e0af512009-07-27 18:11:02 -0400262L: linux-acpi@vger.kernel.org
263W: http://www.lesswatts.org/projects/acpi/
264S: Supported
265F: drivers/acpi/acpi_pad.c
266
Len Brown8b59a452007-01-08 19:03:28 -0500267ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700268M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500269L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300270W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500271S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700272F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700273
Len Brown359acec2007-02-10 01:59:24 -0500274ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700275M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500276L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300277W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500278S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700279F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500280
Carlos Corbachobff431e2008-02-05 02:17:04 +0000281ACPI WMI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700282M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200283L: linux-acpi@vger.kernel.org
284W: http://www.lesswatts.org/projects/acpi/
285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700286F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000287
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100288AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700289M: Kyle McMartin <kyle@mcmartin.ca>
290M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200291W: http://wiki.parisc-linux.org/AD1889
292L: linux-parisc@vger.kernel.org
293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700294F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700297M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200298L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700300F: Documentation/hwmon/adm1025
301F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Corentin Labbecae2caa2007-02-14 21:15:04 +0100303ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700304M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100305L: lm-sensors@lm-sensors.org
306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700307F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100308
Michael Wucc0b88c2007-08-31 01:15:25 -0400309ADM8211 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700310M: Michael Wu <flamingice@sourmilk.net>
Michael Wucc0b88c2007-08-31 01:15:25 -0400311L: linux-wireless@vger.kernel.org
312W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -0700313T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Michael Wucc0b88c2007-08-31 01:15:25 -0400314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700315F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700318M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700320F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400322ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700323M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400324L: linux-scsi@vger.kernel.org
325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700326F: Documentation/scsi/advansys.txt
327F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700330M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700332F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334AFFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700335M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700337F: Documentation/filesystems/affs.txt
338F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700340AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700341M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700342L: linux-afs@lists.infradead.org
343S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700344F: fs/afs/
345F: include/net/af_rxrpc.h
346F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700349M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700350T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700352F: drivers/char/agp/
353F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700356M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357L: linux-scsi@vger.kernel.org
358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700359F: drivers/scsi/aha152x*
360F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Hannes Reinecke64624d42007-10-19 10:32:29 +0200362AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700363M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200364L: linux-scsi@vger.kernel.org
365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700366F: drivers/scsi/aic7xxx/
367F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200368
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700369AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700370M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700371L: linux-aio@kvack.org
372S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700373F: fs/aio.c
374F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700377M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700378L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379W: http://www.linux-usb.org/SpeedTouch/
380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700381F: drivers/usb/atm/speedtch.c
382F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Pierre Ossman272f1332007-05-14 21:25:26 +0200384ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700385M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700387F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200388
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000389ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700390M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100391L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700393F: Documentation/i2c/busses/i2c-ali1563
394F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700397M: Richard Henderson <rth@twiddle.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398S: Odd Fixes for 2.4; Maintained for 2.6.
Joe Perches8b58be82009-07-29 15:04:30 -0700399M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400S: Maintained for 2.4; PCI support for 2.6.
Cheng Renquana9406692009-03-31 15:23:35 -0700401L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700402F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700404AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700405M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700406L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700407S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700408F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700409
Jordan Crousef90b8112006-01-06 00:12:14 -0800410AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100411P: Jordan Crouse
Jordan Crouse67d76712008-05-12 14:02:22 -0700412L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800413W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
414S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700415F: arch/x86/kernel/geode_32.c
416F: drivers/char/hw_random/geode-rng.c
417F: drivers/crypto/geode*
418F: drivers/video/geode/
419F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800420
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200421AMD IOMMU (AMD-VI)
Joe Perches8b58be82009-07-29 15:04:30 -0700422M: Joerg Roedel <joerg.roedel@amd.com>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200423L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -0700424T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200425S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700426F: arch/x86/kernel/amd_iommu*.c
427F: arch/x86/include/asm/amd_iommu*.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200428
Peter Orubae7f5b302008-07-28 18:44:11 +0200429AMD MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700430M: Andreas Herrmann <andreas.herrmann3@amd.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700431L: amd64-microcode@amd64.org
432S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700433F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200434
Stelian Pop284f42b2006-12-12 18:18:31 +0100435AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700436M: Stelian Pop <stelian@popies.net>
437M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100438S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700439F: drivers/hwmon/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100440
Tom Tuckerf94b5332006-09-22 15:22:48 -0700441AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700442M: Tom Tucker <tom@opengridcomputing.com>
443M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700444L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700446F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700447
Johannes Berg42269062006-07-25 16:15:50 +0200448AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700449M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg42269062006-07-25 16:15:50 +0200450L: linuxppc-dev@ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700451L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700453F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455APM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700456M: Stephen Rothwell <sfr@canb.auug.org.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457L: linux-laptop@vger.kernel.org
458W: http://www.canb.auug.org.au/~sfr/
459S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700460F: arch/x86/kernel/apm_32.c
461F: include/linux/apm_bios.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700463APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700464M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700465L: linux-input@vger.kernel.org
466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700467F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700468
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700469APPLE SMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700470M: Nicolas Boichat <nicolas@boichat.ch>
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700471L: mactel-linux-devel@lists.sourceforge.net
472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700473F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700476M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700478F: drivers/net/appletalk/
479F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400481APPLETOUCH TOUCHPAD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700482M: Johannes Berg <johannes@sipsolutions.net>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -0400483L: linux-input@vger.kernel.org
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700485F: Documentation/input/appletouch.txt
486F: drivers/input/mouse/appletouch.c
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400487
Jaya Kumar1154ea72005-06-21 17:17:04 -0700488ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700489M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700491F: drivers/video/arcfb.c
492F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700495M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700497F: arch/arm/lib/floppydma.S
498F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Russell Kingd4275352009-04-16 14:05:27 +0100500ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700501M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700502L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100503W: http://www.arm.linux.org.uk/
504S: Maintained
505F: arch/arm/
506
Russell King2761f5c2007-05-24 06:56:08 +0200507ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200508S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700509F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200510
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800511ARM/ADI ROADRUNNER MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700512M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700513L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700515F: arch/arm/mach-ixp23xx/
516F: arch/arm/mach-ixp23xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800517
518ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700519M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700520L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800521S: Maintained
522
Sergey Lapin9c784f92008-08-03 02:29:48 +0100523ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700524M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700525L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100526S: Maintained
527
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800528ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700529M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700530L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800531S: Maintained
532
Andrew Victord4a89c72006-12-04 13:56:21 +0100533ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700534M: Andrew Victor <linux@maxim.org.za>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700535L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200536W: http://maxim.org.za/at91_26.html
537S: Maintained
Andrew Victord4a89c72006-12-04 13:56:21 +0100538
Leo Chen57a473f2009-08-12 22:08:48 +0100539ARM/BCMRING ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100540M: Leo Chen <leochen@broadcom.com>
541M: Scott Branden <sbranden@broadcom.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700542L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800543S: Maintained
Leo Chen57a473f2009-08-12 22:08:48 +0100544F: arch/arm/mach-bcmring
545
546ARM/BCMRING MTD NAND DRIVER
Russell Kingddd559b2009-09-12 12:02:26 +0100547M: Leo Chen <leochen@broadcom.com>
548M: Scott Branden <sbranden@broadcom.com>
Leo Chen57a473f2009-08-12 22:08:48 +0100549L: linux-mtd@lists.infradead.org
550S: Maintained
551F: drivers/mtd/nand/bcm_umi_nand.c
552F: drivers/mtd/nand/bcm_umi_bch.c
553F: drivers/mtd/nand/bcm_umi_hamming.c
554F: drivers/mtd/nand/nand_bcm_umi.h
555
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800556ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100557M: Hartley Sweeten <hsweeten@visionengravers.com>
558M: Ryan Mallon <ryan@bluewatersys.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700559L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800560S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100561F: arch/arm/mach-ep93xx/
562F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800563
564ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700565M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700566L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800567S: Maintained
568
Russell Kingd4275352009-04-16 14:05:27 +0100569ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700570M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700571L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100572F: arch/arm/common/clkdev.c
573F: arch/arm/include/asm/clkdev.h
574
Mike Rapoportd48134e2008-08-20 09:03:26 +0100575ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700576M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700577L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100578S: Maintained
579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700581M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582S: Maintained
583
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200584ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700585M: Paulius Zaleckas <paulius.zaleckas@teltonika.lt>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700586L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -0700587T: git git://gitorious.org/linux-gemini/mainline.git
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200588S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300589F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200590
Russell Kingd4275352009-04-16 14:05:27 +0100591ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700592M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700593L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100594W: http://www.arm.linux.org.uk/
595S: Maintained
596F: arch/arm/mach-ebsa110/
597F: drivers/net/arm/am79c961a.*
598
Russell Kinga9da4f72008-07-12 21:42:04 +0100599ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700600M: Daniel Ribeiro <drwyrm@gmail.com>
601M: Stefan Schmidt <stefan@openezx.org>
602M: Harald Welte <laforge@openezx.org>
Russell Kinga9da4f72008-07-12 21:42:04 +0100603L: openezx-devel@lists.openezx.org (subscribers-only)
604W: http://www.openezx.org/
605S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200606T: topgit git://git.openezx.org/openezx.git
607F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100608
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200609ARM/FARADAY FA526 PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700610M: Paulius Zaleckas <paulius.zaleckas@teltonika.lt>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700611L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200612S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300613F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200614
Russell Kingd4275352009-04-16 14:05:27 +0100615ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700616M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700617L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100618W: http://www.arm.linux.org.uk/
619S: Maintained
620F: arch/arm/include/asm/hardware/dec21285.h
621F: arch/arm/mach-footbridge/
622
Sascha Hauer86183a52008-07-24 23:50:35 +0200623ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700624M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700625L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200626S: Maintained
627
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800628ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700629M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700630L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800631S: Maintained
632
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100633ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700634M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700635L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100636S: Maintained
637
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200638ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700639M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200640S: Maintained
641F: arch/arm/mach-pxa/hx4700.c
642F: arch/arm/mach-pxa/include/mach/hx4700.h
643
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100644ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700645M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200646W: www.jlime.com
647S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700648T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
649F: arch/arm/mach-sa1100/jornada720.c
650F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100651
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800652ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700653M: Lennert Buytenhek <kernel@wantstofly.org>
654M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700655L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700656S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100657
658ARM/INTEL IOP33X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700659M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700660L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700661S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800662
663ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700664M: Lennert Buytenhek <kernel@wantstofly.org>
665M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700666L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700667S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800668
669ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700670M: Lennert Buytenhek <kernel@wantstofly.org>
671M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700672L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700673S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800674
675ARM/INTEL IXP2000 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700676M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700677L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800678S: Maintained
679
680ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700681M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700682L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800683S: Maintained
684
685ARM/INTEL IXP23XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700686M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700687L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800688S: Maintained
689
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200690ARM/INTEL IXP4XX ARM ARCHITECTURE
691M: Imre Kaloz <kaloz@openwrt.org>
692M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100693L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200694S: Maintained
695F: arch/arm/mach-ixp4xx/
696
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800697ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700698M: Lennert Buytenhek <kernel@wantstofly.org>
699M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700700L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700701S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800702
703ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700704M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700705L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800706S: Maintained
707
708ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700709M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700710L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800711S: Maintained
712
Philipp Zabel3b8861712008-07-09 21:27:15 +0100713ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700714M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100715S: Maintained
716
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400717ARM/Marvell Loki/Kirkwood/MV78xx0/Orion SOC support
718M: Lennert Buytenhek <buytenh@marvell.com>
719M: Nicolas Pitre <nico@marvell.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700720L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400721T: git git://git.marvell.com/orion
722S: Maintained
723F: arch/arm/mach-loki/
724F: arch/arm/mach-kirkwood/
725F: arch/arm/mach-mv78xx0/
726F: arch/arm/mach-orion5x/
727F: arch/arm/plat-orion/
728
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200729ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700730M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700731L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200732F: arch/arm/mach-pxa/mioa701.c
733S: Maintained
734
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100735ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700736M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100737S: Maintained
738
Andy Green9d762952009-05-19 06:41:42 -0300739ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700740M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300741L: openmoko-kernel@lists.openmoko.org (subscribers-only)
742W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
743S: Supported
744
Dirk Opfer8459c152005-11-06 14:27:52 +0000745ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700746M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
747M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000748S: Maintained
749
Marek Vasut5d783a22009-07-16 13:26:48 +0200750ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -0700751M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +0200752L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100753W: http://hackndev.com
754S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700755F: arch/arm/mach-pxa/include/mach/palmtx.h
756F: arch/arm/mach-pxa/palmtx.c
757F: arch/arm/mach-pxa/include/mach/palmt5.h
758F: arch/arm/mach-pxa/palmt5.c
759F: arch/arm/mach-pxa/include/mach/palmld.h
760F: arch/arm/mach-pxa/palmld.c
761F: arch/arm/mach-pxa/include/mach/palmte2.h
762F: arch/arm/mach-pxa/palmte2.c
763F: arch/arm/mach-pxa/include/mach/palmtc.h
764F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100765
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200766ARM/PALM TREO 680 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700767M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +0200768L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200769W: http://hackndev.com
770S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700771F: arch/arm/mach-pxa/include/mach/treo680.h
772F: arch/arm/mach-pxa/treo680.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200773
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100774ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700775M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +0200776L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -0700777W: http://hackndev.com
778S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700779F: arch/arm/mach-pxa/include/mach/palmz72.h
780F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700783M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
785S: Maintained
786
787ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700788M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700789L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790W: http://www.arm.linux.org.uk/
791S: Maintained
792
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800793ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700794M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700795L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800796S: Maintained
797
Russell Kingd4275352009-04-16 14:05:27 +0100798ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700799M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700800L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100801W: http://www.arm.linux.org.uk/
802S: Maintained
803F: arch/arm/common/time-acorn.c
804F: arch/arm/include/asm/hardware/entry-macro-iomd.S
805F: arch/arm/include/asm/hardware/ioc.h
806F: arch/arm/include/asm/hardware/iomd.h
807F: arch/arm/include/asm/hardware/memc.h
808F: arch/arm/mach-rpc/
809F: drivers/net/arm/ether*
810F: drivers/scsi/arm/
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700813M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814W: http://www.shark-linux.de/shark.html
815S: Maintained
816
Ben Dooksb21477f2009-06-13 10:46:34 +0100817ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700818M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700819L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100820W: http://www.fluff.org/ben/linux/
821S: Maintained
822F: arch/arm/plat-s3c/
823F: arch/arm/plat-s3c24xx/
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825ARM/S3C2410 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700826M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700827L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828W: http://www.fluff.org/ben/linux/
829S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +0100830F: arch/arm/mach-s3c2410/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832ARM/S3C2440 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700833M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700834L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835W: http://www.fluff.org/ben/linux/
836S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +0100837F: arch/arm/mach-s3c2440/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Ben Dooksb21477f2009-06-13 10:46:34 +0100839ARM/S3C2442 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700840M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700841L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100842W: http://www.fluff.org/ben/linux/
843S: Maintained
844F: arch/arm/mach-s3c2442/
845
846ARM/S3C2443 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700847M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700848L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100849W: http://www.fluff.org/ben/linux/
850S: Maintained
851F: arch/arm/mach-s3c2443/
852
853ARM/S3C6400 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700854M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700855L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100856W: http://www.fluff.org/ben/linux/
857S: Maintained
858F: arch/arm/mach-s3c6400/
859
860ARM/S3C6410 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700861M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700862L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100863W: http://www.fluff.org/ben/linux/
864S: Maintained
865F: arch/arm/mach-s3c6410/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800867ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700868M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700869L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800870S: Maintained
871
872ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700873M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700874L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800875S: Maintained
876
wanzongshun98ad6e32009-02-13 06:04:32 +0100877ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700878M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700879L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -0700880W: http://www.mcuos.com
881S: Maintained
wanzongshun98ad6e32009-02-13 06:04:32 +0100882
Russell Kingd4275352009-04-16 14:05:27 +0100883ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700884M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700885L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100886W: http://www.arm.linux.org.uk/
887S: Maintained
888F: arch/arm/vfp/
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890ASUS ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700891M: Corentin Chary <corentincj@iksaif.net>
892M: Karol Kozimor <sziwan@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +0000894W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700896F: arch/x86/kernel/acpi/boot.c
897F: drivers/platform/x86/asus_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400899ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700900M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400901L: lm-sensors@lm-sensors.org
902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700903F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400904
Corentin Chary85091b72007-01-26 14:04:30 +0100905ASUS LAPTOP EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700906M: Corentin Chary <corentincj@iksaif.net>
Corentin Chary85091b72007-01-26 14:04:30 +0100907L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +0000908W: http://acpi4asus.sf.net
Corentin Chary85091b72007-01-26 14:04:30 +0100909S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700910F: drivers/platform/x86/asus-laptop.c
Corentin Chary85091b72007-01-26 14:04:30 +0100911
Andrew Morton953a6472008-11-06 12:53:28 -0800912ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Joe Perches8b58be82009-07-29 15:04:30 -0700913M: Dan Williams <dan.j.williams@intel.com>
914M: Maciej Sosnowski <maciej.sosnowski@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -0700915W: http://sourceforge.net/projects/xscaleiop
916S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700917F: Documentation/crypto/async-tx-api.txt
918F: crypto/async_tx/
919F: drivers/dma/
920F: include/linux/dmaengine.h
921F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -0700922
Wolfram Sanga1867d32009-09-18 22:45:51 +0200923AT24 EEPROM DRIVER
924M: Wolfram Sang <w.sang@pengutronix.de>
925L: linux-i2c@vger.kernel.org
926S: Maintained
927F: drivers/misc/eeprom/at24.c
928F: include/linux/i2c/at24.h
929
Randy Dunlape7839f22008-10-12 16:11:45 -0700930ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700931M: "Ed L. Cashin" <ecashin@coraid.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932W: http://www.coraid.com/support/linux
933S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700934F: Documentation/aoe/
935F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200937ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700938M: Jiri Slaby <jirislaby@gmail.com>
939M: Nick Kossifidis <mickflemm@gmail.com>
940M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
941M: Bob Copeland <me@bobcopeland.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200942L: linux-wireless@vger.kernel.org
943L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -0700944W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200945S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -0700946F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200947
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700948ATHEROS ATH9K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700949M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
950M: Jouni Malinen <jmalinen@atheros.com>
951M: Sujith Manoharan <Sujith.Manoharan@atheros.com>
952M: Vasanthakumar Thiagarajan <vasanth@atheros.com>
953M: Senthil Balasubramanian <senthilkumar@atheros.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700954L: linux-wireless@vger.kernel.org
955L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -0700956W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700957S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -0700958F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700959
Christian Lamparter75ca88c2009-03-21 23:11:49 +0100960ATHEROS AR9170 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700961M: Christian Lamparter <chunkeey@web.de>
Christian Lamparter75ca88c2009-03-21 23:11:49 +0100962L: linux-wireless@vger.kernel.org
963W: http://wireless.kernel.org/en/users/Drivers/ar9170
964S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -0700965F: drivers/net/wireless/ath/ar9170/
Christian Lamparter75ca88c2009-03-21 23:11:49 +0100966
Luca Tettamanti2c2a6172009-09-15 17:18:10 +0200967ATK0110 HWMON DRIVER
968M: Luca Tettamanti <kronos.it@gmail.com>
969L: lm-sensors@lm-sensors.org
970S: Maintained
971F: drivers/hwmon/asus_atk0110.c
972
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000973ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700974M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700976F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000977
Chris Snook7ae115b2008-09-09 03:26:57 -0400978ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700979M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +0000980M: Chris Snook <chris.snook@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700981M: Jie Yang <jie.yang@atheros.com>
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600982L: atl1-devel@lists.sourceforge.net
983W: http://sourceforge.net/projects/atl1
984W: http://atl1.sourceforge.net
985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700986F: drivers/net/atlx/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988ATM
Joe Perches8b58be82009-07-29 15:04:30 -0700989M: Chas Williams <chas@cmf.nrl.navy.mil>
Roland Dreierf37bf902006-09-13 20:39:33 -0700990L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Jiri Slaby44ae98b2008-11-30 23:27:11 -0800991L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992W: http://linux-atm.sourceforge.net
993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700994F: drivers/atm/
995F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Pierre Ossman272f1332007-05-14 21:25:26 +0200997ATMEL AT91 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700998M: Nicolas Ferre <nicolas.ferre@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700999L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001000W: http://www.atmel.com/products/AT91/
1001W: http://www.at91.com/
1002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001003F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001004
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001005ATMEL AT91 / AT32 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001006M: Nicolas Ferre <nicolas.ferre@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001007S: Maintained
1008F: drivers/mmc/host/atmel-mci.c
1009F: drivers/mmc/host/atmel-mci-regs.h
1010
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001011ATMEL AT91 / AT32 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001012M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001013S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001014F: drivers/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001015
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001016ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001017M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08001018L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001020F: drivers/video/atmel_lcdfb.c
1021F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001022
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001023ATMEL MACB ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001024M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001025S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001026F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001027
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001028ATMEL SPI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001029M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001030S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001031F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001032
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001033ATMEL USBA UDC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001034M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001035L: kernel@avr32linux.org
1036W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1037S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001038F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001041M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001042L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043W: http://www.thekelleys.org.uk/atmel
1044W: http://atmelwlandriver.sourceforge.net/
1045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001046F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Chris Wrighta92b7b82005-07-07 18:12:23 -07001048AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001049M: Al Viro <viro@zeniv.linux.org.uk>
1050M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001051L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001052W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001053T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001055F: include/linux/audit.h
1056F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001057
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001058AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001059M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001060W: http://miguelojeda.es/auxdisplay.htm
1061W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001063F: drivers/auxdisplay/
1064F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001065
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001066AVR32 ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001067M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001068W: http://www.atmel.com/products/AVR32/
1069W: http://avr32linux.org/
1070W: http://avrfreaks.net/
1071S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001072F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001073
1074AVR32/AT32AP MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001075M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001076S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001077F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001080M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001082W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001084F: include/linux/ax25.h
1085F: include/net/ax25.h
1086F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001088B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001089M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001090L: linux-wireless@vger.kernel.org
1091W: http://linuxwireless.org/en/users/Drivers/b43
1092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001093F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001094
1095B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001096M: Larry Finger <Larry.Finger@lwfinger.net>
1097M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001098L: linux-wireless@vger.kernel.org
1099W: http://linuxwireless.org/en/users/Drivers/b43
1100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001101F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001102
Richard Purdie300abeb2007-02-07 22:21:07 +00001103BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001104M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001106F: drivers/video/backlight/
1107F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001108
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001109BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001110M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001111L: linux-hams@vger.kernel.org
1112W: http://www.baycom.org/~tom/ham/ham.html
1113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001114F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001115
1116BEFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001117M: "Sergey S. Kostyliov" <rathamahata@php4.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001119F: Documentation/filesystems/befs.txt
1120F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001121
1122BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001123M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001125F: Documentation/filesystems/bfs.txt
1126F: fs/bfs/
1127F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001128
Bryan Wu1394f032007-05-06 14:50:22 -07001129BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001130M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001131L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001132W: http://blackfin.uclinux.org
1133S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001134F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001135
Bryan Wue190d6b2007-07-17 14:43:44 +08001136BLACKFIN EMAC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001137M: Michael Hennerich <michael.hennerich@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001138L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001139W: http://blackfin.uclinux.org
1140S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001141F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001142
Mike Frysinger566da5b2007-06-11 15:31:30 +08001143BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001144M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001145L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001146W: http://blackfin.uclinux.org
1147S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001148F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001149
Bryan Wu1394f032007-05-06 14:50:22 -07001150BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001151M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001152L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001153W: http://blackfin.uclinux.org
1154S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001155F: drivers/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001156
Bryan Wu1e6d3202007-07-15 02:50:02 +08001157BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001158M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001159L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001160W: http://blackfin.uclinux.org
1161S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001162F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001163
Bryan Wud24ecfc2007-05-01 23:26:32 +02001164BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001165M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001166L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001167W: http://blackfin.uclinux.org/
1168S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001169F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001172M: Jens Axboe <axboe@kernel.dk>
Joe Perches54e58812009-04-07 21:08:10 -07001173T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001175F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Joern Engel2b54aae2008-02-06 01:38:02 -08001177BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001178M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001179L: linux-mtd@lists.infradead.org
1180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001181F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001182
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001183BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001184M: Marcel Holtmann <marcel@holtmann.org>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001185L: linux-bluetooth@vger.kernel.org
1186W: http://www.bluez.org/
1187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001188F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001191M: Marcel Holtmann <marcel@holtmann.org>
Pavel Machek781c2842008-03-20 15:41:02 -07001192L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001193W: http://www.bluez.org/
Joe Perches54e58812009-04-07 21:08:10 -07001194T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001196F: net/bluetooth/
1197F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001200M: Jay Vosburgh <fubar@us.ibm.com>
Jim Cromiece00f852006-11-30 04:49:44 +01001201L: bonding-devel@lists.sourceforge.net
1202W: http://sourceforge.net/projects/bonding/
1203S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001204F: drivers/net/bonding/
1205F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Gary Zambrano39105892006-06-22 17:26:20 -07001207BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001208M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001209L: netdev@vger.kernel.org
1210S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001211F: drivers/net/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001212
Michael Chan948c51e2006-06-04 02:51:39 -07001213BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001214M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001215L: netdev@vger.kernel.org
1216S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001217F: drivers/net/bnx2.*
1218F: drivers/net/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001219
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001220BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001221M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001222L: netdev@vger.kernel.org
1223S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001224F: drivers/net/bnx2x*
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001225
Michael Chan948c51e2006-06-04 02:51:39 -07001226BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001227M: Matt Carlson <mcarlson@broadcom.com>
1228M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001229L: netdev@vger.kernel.org
1230S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001231F: drivers/net/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001232
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001233BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001234M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001235L: linux-scsi@vger.kernel.org
1236S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001237F: block/bsg.c
1238F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001239
Michael Bueschff1d5c22008-07-25 01:46:10 -07001240BT8XXGPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001241M: Michael Buesch <mb@bu3sch.de>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001242W: http://bu3sch.de/btgpio.php
1243S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001244F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001245
Joe Percheseb1eb042009-01-21 10:49:16 -05001246BTRFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001247M: Chris Mason <chris.mason@oracle.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001248L: linux-btrfs@vger.kernel.org
1249W: http://btrfs.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07001250T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001252F: Documentation/filesystems/btrfs.txt
1253F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001256M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001257L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001258W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001259T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001260S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001261F: Documentation/video4linux/bttv/
1262F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
David Howellsa5432f52009-04-20 15:46:45 +01001264CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001265M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001266L: linux-cachefs@redhat.com
1267S: Supported
1268F: Documentation/filesystems/caching/cachefiles.txt
1269F: fs/cachefiles/
1270
Jonathan Corbet77d51402007-03-22 19:44:17 -03001271CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001272M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001273L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001274T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001276F: Documentation/video4linux/cafe_ccic
1277F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001278
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001279CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001280M: Muli Ben-Yehuda <muli@il.ibm.com>
1281M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001282L: discuss@x86-64.org
1283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001284F: arch/x86/kernel/pci-calgary_64.c
1285F: arch/x86/kernel/tce_64.c
1286F: arch/x86/include/asm/calgary.h
1287F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001288
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001289CAN NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001290M: Urs Thuermann <urs.thuermann@volkswagen.de>
1291M: Oliver Hartkopp <oliver.hartkopp@volkswagen.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001292L: socketcan-core@lists.berlios.de (subscribers-only)
1293W: http://developer.berlios.de/projects/socketcan/
1294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001295F: drivers/net/can/
1296F: include/linux/can/
1297F: include/linux/can.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001298
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001299CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001300M: Wolfgang Grandegger <wg@grandegger.com>
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001301L: socketcan-core@lists.berlios.de (subscribers-only)
1302W: http://developer.berlios.de/projects/socketcan/
1303S: Maintained
1304
Arnd Bergmannb8154542008-05-16 11:10:59 +02001305CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001306M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmannb8154542008-05-16 11:10:59 +02001307L: linuxppc-dev@ozlabs.org
1308L: cbe-oss-dev@ozlabs.org
1309W: http://www.ibm.com/developerworks/power/cell/
1310S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001311F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001312F: arch/powerpc/include/asm/spu*.h
1313F: arch/powerpc/oprofile/*cell*
1314F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001315
David Vrabel18332a82008-09-17 16:34:44 +01001316CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
Joe Perches8b58be82009-07-29 15:04:30 -07001317M: David Vrabel <david.vrabel@csr.com>
David Vrabel18332a82008-09-17 16:34:44 +01001318L: linux-usb@vger.kernel.org
1319S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001320F: Documentation/usb/WUSB-Design-overview.txt
1321F: Documentation/usb/wusb-cbaf
1322F: drivers/usb/wusbcore/
1323F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001324
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001325CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001326M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001327W: http://miguelojeda.es/auxdisplay.htm
1328W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001330F: drivers/auxdisplay/cfag12864b.c
1331F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001332
1333CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001334M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001335W: http://miguelojeda.es/auxdisplay.htm
1336W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001338F: drivers/auxdisplay/cfag12864bfb.c
1339F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001340
Johannes Berg704232c2007-04-23 12:20:05 -07001341CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001342M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001343L: linux-wireless@vger.kernel.org
1344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001345F: include/linux/nl80211.h
1346F: include/net/cfg80211.h
1347F: net/wireless/*
1348X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001349
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001350CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001351M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001352S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001353F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001354
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001355CISCO 10G ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001356M: Scott Feldman <scofeldm@cisco.com>
1357M: Joe Eykholt <jeykholt@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001358S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001359F: drivers/net/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001360
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001361CIRRUS LOGIC EP93XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001362M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001363L: netdev@vger.kernel.org
1364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001365F: drivers/net/arm/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001366
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001367CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001368M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001369L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001371F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001372
Timur Tabid9e9d822008-04-24 08:45:26 +10001373CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001374M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001375L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001376S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001377F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001378
Russell Kingd4275352009-04-16 14:05:27 +01001379CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001380M: Russell King <linux@arm.linux.org.uk>
Russell Kingd4275352009-04-16 14:05:27 +01001381F: include/linux/clk.h
1382
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001383CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001384M: Abhijeet Joglekar <abjoglek@cisco.com>
1385M: Joe Eykholt <jeykholt@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001386L: linux-scsi@vger.kernel.org
1387S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001388F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001391M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392M: coda@cs.cmu.edu
1393L: codalist@coda.cs.cmu.edu
1394W: http://www.coda.cs.cmu.edu/
1395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001396F: Documentation/filesystems/coda.txt
1397F: fs/coda/
1398F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001400COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07001401M: Steve French <sfrench@samba.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001402L: linux-cifs-client@lists.samba.org
1403L: samba-technical@lists.samba.org
1404W: http://linux-cifs.samba.org/
Joe Perches54e58812009-04-07 21:08:10 -07001405T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001406S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001407F: Documentation/filesystems/cifs.txt
1408F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001411M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001412L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001414F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
1416COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001417M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001418L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001419S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001420F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
1422COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001423M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001424L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001426F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001428COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001429M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001431F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433COMPUTONE INTELLIPORT MULTIPORT CARD
Joe Perches8b58be82009-07-29 15:04:30 -07001434M: "Michael H. Warfield" <mhw@wittsend.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001437F: Documentation/serial/computone.txt
1438F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Simon Arlott949be0f2007-03-06 02:47:46 -08001440CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001441M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001442L: accessrunner-general@lists.sourceforge.net
1443W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001445F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001446
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001447CONFIGFS
Joe Perches8b58be82009-07-29 15:04:30 -07001448M: Joel Becker <joel.becker@oracle.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001449S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001450F: fs/configfs/
1451F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001452
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001453CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07001454M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001455L: netdev@vger.kernel.org
1456S: Maintained
1457F: drivers/connector/
1458
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001459CONTROL GROUPS (CGROUPS)
Joe Perches8b58be82009-07-29 15:04:30 -07001460M: Paul Menage <menage@google.com>
1461M: Li Zefan <lizf@cn.fujitsu.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001462L: containers@lists.linux-foundation.org
1463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001464F: include/linux/cgroup*
1465F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07001466F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001467
Rudolf Marekbebe4672007-05-08 17:22:02 +02001468CORETEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001469M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marekbebe4672007-05-08 17:22:02 +02001470L: lm-sensors@lm-sensors.org
1471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001472F: Documentation/hwmon/coretemp
1473F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001476M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477W: http://www.fi.muni.cz/~kas/cosa/
1478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001479F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Florian Fainelli4371ee32009-06-01 02:43:17 -07001481CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001482M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07001483L: netdev@vger.kernel.org
1484S: Maintained
1485F: drivers/net/cpmac.c
1486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487CPU FREQUENCY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001488M: Dave Jones <davej@redhat.com>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001489L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001491T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001493F: arch/x86/kernel/cpu/cpufreq/
1494F: drivers/cpufreq/
1495F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001498M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001500F: arch/x86/kernel/cpuid.c
1501F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Paul Jacksoned90fb42005-09-27 21:45:37 -07001503CPUSETS
Joe Perches8b58be82009-07-29 15:04:30 -07001504M: Paul Menage <menage@google.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07001505W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001506W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001507S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001508F: Documentation/cgroups/cpusets.txt
1509F: include/linux/cpuset.h
1510F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001513W: http://sourceforge.net/projects/cramfs/
1514S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001515F: Documentation/filesystems/cramfs.txt
1516F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001519M: Mikael Starvik <starvik@axis.com>
1520M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02001521L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522W: http://developer.axis.com
1523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001524F: arch/cris/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
1526CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07001527M: Herbert Xu <herbert@gondor.apana.org.au>
1528M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001530T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001532F: Documentation/crypto/
1533F: arch/*/crypto/
1534F: crypto/
1535F: drivers/crypto/
1536F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Neil Horman5b07bd52009-02-05 16:03:04 +11001538CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07001539M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11001540L: linux-crypto@vger.kernel.org
1541S: Maintained
1542
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001543CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07001544M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001546F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001547
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001548CX18 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001549M: Hans Verkuil <hverkuil@xs4all.nl>
1550M: Andy Walls <awalls@radix.net>
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001551L: ivtv-devel@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001552L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001553T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001554W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07001555W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001557F: Documentation/video4linux/cx18.txt
1558F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001559
Steve Wisee5ec3782008-05-20 14:06:33 -07001560CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07001561M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07001562L: netdev@vger.kernel.org
1563W: http://www.chelsio.com
1564S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001565F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001566
1567CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07001568M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07001569L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07001570W: http://www.openfabrics.org
1571S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001572F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001573
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001575M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001576L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577W: http://www.arm.linux.org.uk/
1578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001579F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001580
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001582M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001583W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001585F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
1587CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001589S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001590F: drivers/char/cyclades.c
1591F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
1593CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001595S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001596F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001599M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600W: http://yaina.de/jreuter/
1601W: http://www.qsl.net/dl1bke/
1602L: linux-hams@vger.kernel.org
1603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001604F: net/ax25/af_ax25.c
1605F: net/ax25/ax25_dev.c
1606F: net/ax25/ax25_ds_*
1607F: net/ax25/ax25_in.c
1608F: net/ax25/ax25_out.c
1609F: net/ax25/ax25_timer.c
1610F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001612DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001613M: Tobias Ringstrom <tori@unhappy.mine.nu>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001614L: netdev@vger.kernel.org
1615S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001616F: Documentation/networking/dmfe.txt
1617F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001618
1619DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07001620M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001621W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07001622M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001624F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626DC395x SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07001627M: Oliver Neukum <oliver@neukum.name>
1628M: Ali Akcaagac <aliakc@web.de>
1629M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001631L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632L: http://lists.twibble.org/mailman/listinfo/dc395x/
1633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001634F: Documentation/scsi/dc395x.txt
1635F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001637DCCP PROTOCOL
Joe Perches8b58be82009-07-29 15:04:30 -07001638M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001639L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001640W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001642F: include/linux/dccp.h
1643F: include/linux/tfrc.h
1644F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646DECnet NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001647M: Christine Caulfield <christine.caulfield@googlemail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648W: http://linux-decnet.sourceforge.net
1649L: linux-decnet-user@lists.sourceforge.net
1650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001651F: Documentation/networking/decnet.txt
1652F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
1654DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001655M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001657F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001659DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001660M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001662F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001665M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666W: http://www.debian.org/~dz/i8k/
1667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001668F: drivers/char/i8k.c
1669F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Doug Warzecha90563ec2005-09-06 15:17:15 -07001671DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07001672M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07001673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001674F: Documentation/dcdbas.txt
1675F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07001676
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001677DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001678M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001679S: Maintained
1680
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07001682M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684S: Maintained
1685
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001686DEVICE-MAPPER (LVM)
1687P: Alasdair Kergon
1688L: dm-devel@redhat.com
1689W: http://sources.redhat.com/dm
1690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001691F: Documentation/device-mapper/
1692F: drivers/md/dm*
1693F: include/linux/device-mapper.h
1694F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001695
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696DIGI INTL. EPCA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001697M: "Digi International, Inc" <Eng.Linux@digi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698L: Eng.Linux@digi.com
1699W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02001700S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001701F: Documentation/serial/digiepca.txt
1702F: drivers/char/epca*
1703F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Randy Dunlape7839f22008-10-12 16:11:45 -07001705DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07001706M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04001707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001708F: Documentation/filesystems/dnotify.txt
1709F: fs/notify/dnotify/
1710F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
1712DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07001713M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1715W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1716W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1717S: Maintained
1718
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001719DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07001720M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001722F: Documentation/filesystems/quota.txt
1723F: fs/quota/
1724F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Randy Dunlape7839f22008-10-12 16:11:45 -07001726DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07001727M: Christine Caulfield <ccaulfie@redhat.com>
1728M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04001729L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001730W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07001731T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001732S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001733F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001734
Dan Williamsb3e5f262007-08-07 10:26:35 -07001735DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001736M: Maciej Sosnowski <maciej.sosnowski@intel.com>
1737M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001738S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001739F: drivers/dma/
1740F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001741
Juerg Haefligerb8250372007-06-09 10:11:16 -04001742DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001743M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04001744L: lm-sensors@lm-sensors.org
1745S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001746F: Documentation/hwmon/dme1737
1747F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04001748
Martin Waitzba483d52005-06-17 13:20:59 -07001749DOCBOOK FOR DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07001750M: Randy Dunlap <rdunlap@xenotime.net>
Martin Waitzba483d52005-06-17 13:20:59 -07001751S: Maintained
1752
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001753DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001754M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001755L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001756S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001757F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001758
Joe Perches7d2c86b2009-04-07 20:59:01 -07001759DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07001760M: Randy Dunlap <rdunlap@xenotime.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02001761L: linux-doc@vger.kernel.org
1762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001763F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07001764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001766M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767L: blinux-list@redhat.com
1768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001769F: drivers/char/dtlk.c
1770F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001772DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001773M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001774L: linux-scsi@vger.kernel.org
1775W: http://www.adaptec.com/
1776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001777F: drivers/scsi/dpt*
1778F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780DRIVER CORE, KOBJECTS, AND SYSFS
Joe Perches8b58be82009-07-29 15:04:30 -07001781M: Greg Kroah-Hartman <gregkh@suse.de>
Jody McIntyre6fb04252005-11-18 09:31:06 -08001782T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001784F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07001785F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07001786F: fs/sysfs/
1787F: include/linux/kobj*
1788F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
1790DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001791M: David Airlie <airlied@linux.ie>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792L: dri-devel@lists.sourceforge.net
Joe Perches54e58812009-04-07 21:08:10 -07001793T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001795F: drivers/gpu/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
1797DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001798M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08001799L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001801F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001803DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001804M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001806F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001807
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001809M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07001810L: linux-eata@i-connect.net
1811L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001813F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
1815EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001816M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817L: linux-scsi@vger.kernel.org
1818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001819F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
1821EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001822M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07001823L: linux-eata@i-connect.net
1824L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001826F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
1828EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07001829M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830L: ebtables-user@lists.sourceforge.net
1831L: ebtables-devel@lists.sourceforge.net
1832W: http://ebtables.sourceforge.net/
1833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001834F: include/linux/netfilter_bridge/ebt_*.h
1835F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Michael Halcrow237fead2006-10-04 02:16:22 -07001837ECRYPT FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001838M: Tyler Hicks <tyhicks@linux.vnet.ibm.com>
1839M: Dustin Kirkland <kirkland@canonical.com>
Michael Halcrow6dc75162008-12-15 13:54:17 -08001840L: ecryptfs-devel@lists.launchpad.net
1841W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07001842S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001843F: Documentation/filesystems/ecryptfs.txt
1844F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07001845
Alan Coxda9bb1d2006-01-18 17:44:13 -08001846EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001847M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001848L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001849W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001850S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001851F: Documentation/edac.txt
1852F: drivers/edac/edac_*
1853F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08001854
Borislav Petkovc476c232009-05-20 20:31:58 +02001855EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07001856M: Doug Thompson <dougthompson@xmission.com>
1857M: Borislav Petkov <borislav.petkov@amd.com>
Borislav Petkovc476c232009-05-20 20:31:58 +02001858L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
1859W: bluesmoke.sourceforge.net
1860S: Supported
1861F: drivers/edac/amd64_edac*
1862
Dave Peterson0e438e32006-03-26 01:38:55 -08001863EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07001864M: Mark Gross <mark.gross@intel.com>
1865M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001866L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001867W: bluesmoke.sourceforge.net
1868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001869F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08001870
1871EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07001872M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001873L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001874W: bluesmoke.sourceforge.net
1875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001876F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08001877
Douglas Thompson6bc78402007-07-19 01:50:12 -07001878EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07001879M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001880L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07001881W: bluesmoke.sourceforge.net
1882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001883F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07001884
1885EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07001886M: Jason Uhlenkott <juhlenko@akamai.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001887L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07001888W: bluesmoke.sourceforge.net
1889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001890F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07001891
1892EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07001893M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001894L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001895W: bluesmoke.sourceforge.net
1896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001897F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001898
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08001899EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07001900M: Mauro Carvalho Chehab <mchehab@redhat.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001901L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08001902W: bluesmoke.sourceforge.net
1903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001904F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08001905
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001906EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07001907M: Ranganathan Desikan <ravi@jetztechnologies.com>
1908M: "Arvind R." <arvind@jetztechnologies.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001909L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001910W: bluesmoke.sourceforge.net
1911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001912F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001913
1914EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07001915M: Egor Martovetsky <egor@pasemi.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001916L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07001917W: bluesmoke.sourceforge.net
1918S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001919F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07001920
Dave Peterson0e438e32006-03-26 01:38:55 -08001921EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07001922M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001923L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001924W: bluesmoke.sourceforge.net
1925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001926F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08001927
Eric Coopere59f8792008-03-13 12:55:46 +01001928EEEPC LAPTOP EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001929M: Corentin Chary <corentincj@iksaif.net>
Eric Coopere59f8792008-03-13 12:55:46 +01001930L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +00001931W: http://acpi4asus.sf.net
Eric Coopere59f8792008-03-13 12:55:46 +01001932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001933F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01001934
Josh Triplett0bee8d22006-07-30 03:03:58 -07001935EFS FILESYSTEM
1936W: http://aeschi.ch.eu.org/efs/
1937S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001938F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07001939
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001940EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001941M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
1942M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07001943L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07001944S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001945F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07001946
David Woodhouse3e3a7d62008-05-01 04:34:46 -07001947EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07001948M: Paul Gortmaker <paul.gortmaker@windriver.com>
1949M: Matt Mackall <mpm@selenic.com>
1950M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07001951L: linux-embedded@vger.kernel.org
1952S: Maintained
1953
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001954EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001955M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01001956L: linux-scsi@vger.kernel.org
1957W: http://sourceforge.net/projects/lpfcxxxx
1958S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001959F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001960
Michał Mirosław5f5bac82009-05-22 20:33:59 +02001961ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001962M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02001963S: Maintained
1964F: drivers/misc/cb710/
1965F: drivers/mmc/host/cb710-mmc.*
1966F: include/linux/cb710.h
1967
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001969M: Christopher Hoover <ch@murgatroid.com>
1970M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001972F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07001974EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001975M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07001976S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07001977T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07001978F: drivers/video/s1d13xxxfb.c
1979F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07001980
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001982M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07001983L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001985F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987ETHERNET BRIDGE
Joe Perches8b58be82009-07-29 15:04:30 -07001988M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07001989L: bridge@lists.linux-foundation.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07001990W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001992F: include/linux/netfilter_bridge/
1993F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
1995ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001996M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001998F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
2000EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08002001L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002003F: Documentation/filesystems/ext2.txt
2004F: fs/ext2/
2005F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
2007EXT3 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002008M: Andrew Morton <akpm@linux-foundation.org>
2009M: Andreas Dilger <adilger@sun.com>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002010L: linux-ext4@vger.kernel.org
2011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002012F: Documentation/filesystems/ext3.txt
2013F: fs/ext3/
2014F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002015
2016EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002017M: "Theodore Ts'o" <tytso@mit.edu>
2018M: Andreas Dilger <adilger@sun.com>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002019L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002020W: http://ext4.wiki.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002022F: Documentation/filesystems/ext4.txt
2023F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
Jean Delvaree53004e2006-01-09 23:26:14 +01002025F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002026M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002027L: lm-sensors@lm-sensors.org
2028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002029F: Documentation/hwmon/f71805f
2030F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002033M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034W: http://www.farsite.co.uk/
2035S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002036F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
Akinobu Mitac5408b82007-04-23 14:41:20 -07002038FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002039M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07002040S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002041F: Documentation/fault-injection/
2042F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002043
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002044FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07002045M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002046L: linux-fsdevel@vger.kernel.org
2047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002048F: include/linux/fcntl.h
2049F: include/linux/fs.h
2050F: fs/fcntl.c
2051F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002052
2053FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07002054M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002055L: linux-fsdevel@vger.kernel.org
2056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002057F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002058
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002059FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002060M: Riku Voipio <riku.vipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002061L: lm-sensors@lm-sensors.org
2062S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002063F: drivers/hwmon/f75375s.c
2064F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002065
Joe Perches7d2c86b2009-04-07 20:59:01 -07002066FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002067M: Kristian Hoegsberg <krh@redhat.com>
2068M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002069L: linux1394-devel@lists.sourceforge.net
2070W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002071T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002073F: drivers/firewire/
2074F: include/linux/firewire*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002075
2076FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002077S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002078F: Documentation/firmware_class/
2079F: drivers/base/firmware*.c
2080F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002081
2082FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002083M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07002084W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002086F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002087
2088FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Joe Perches8b58be82009-07-29 15:04:30 -07002089M: Mike McLagan <mike.mclagan@linux.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002090L: netdev@vger.kernel.org
2091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002092F: drivers/net/wan/dlci.c
2093F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095FRAMEBUFFER LAYER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002096L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097W: http://linux-fbdev.sourceforge.net/
Andrew Morton36025a82009-06-17 16:25:56 -07002098S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002099F: Documentation/fb/
2100F: drivers/video/fb*
2101F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Zhang Wei173acc72008-03-01 07:42:48 -07002103FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002104M: Li Yang <leoli@freescale.com>
2105M: Zhang Wei <zw@zh-kernel.org>
Li Yang0899d632009-05-22 16:39:59 +08002106L: linuxppc-dev@ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002108F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002109
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002110FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002111M: Jochen Friedrich <jochen@scram.de>
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002112L: linuxppc-dev@ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002113L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002115F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002116
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002117FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002118M: Sascha Hauer <kernel@pengutronix.de>
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002119L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Joe Perchesefc03ec2009-09-21 17:04:27 -07002120L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002122F: arch/arm/plat-mxc/include/mach/imxfb.h
2123F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002124
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002125FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002126M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
2127M: Vitaly Bordug <vbordug@ru.mvista.com>
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002128L: linuxppc-dev@ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002129L: netdev@vger.kernel.org
2130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002131F: drivers/net/fs_enet/
2132F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002133
Timur Tabid9e9d822008-04-24 08:45:26 +10002134FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07002135M: Timur Tabi <timur@freescale.com>
Timur Tabid9e9d822008-04-24 08:45:26 +10002136L: linuxppc-dev@ozlabs.org
2137S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002138F: arch/powerpc/sysdev/qe_lib/
2139F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002140
Li Yang5429c732009-08-11 11:11:11 +08002141FREESCALE USB PERIPHERIAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002142M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002143L: linux-usb@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002144L: linuxppc-dev@ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002145S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08002146F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07002147
Li Yangbeaf53b2007-05-25 13:54:02 +08002148FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002149M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08002150L: netdev@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002151L: linuxppc-dev@ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002153F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002154
Timur Tabid9e9d822008-04-24 08:45:26 +10002155FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002156M: Timur Tabi <timur@freescale.com>
Timur Tabid9e9d822008-04-24 08:45:26 +10002157L: linuxppc-dev@ozlabs.org
2158S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002159F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002160
2161FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002162M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07002163L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10002164L: linuxppc-dev@ozlabs.org
2165S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002166F: sound/soc/fsl/fsl*
2167F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002168
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002170M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002173F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
Pavel Machek71038f52009-01-15 13:51:02 -08002175FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07002176M: Pavel Machek <pavel@ucw.cz>
2177M: "Rafael J. Wysocki" <rjw@sisk.pl>
Pavel Machek71038f52009-01-15 13:51:02 -08002178L: linux-pm@lists.linux-foundation.org
2179S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002180F: Documentation/power/freezing-of-tasks.txt
2181F: include/linux/freezer.h
2182F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002183
David Howellsa5432f52009-04-20 15:46:45 +01002184FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002185M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01002186L: linux-cachefs@redhat.com
2187S: Supported
2188F: Documentation/filesystems/caching/
2189F: fs/fscache/
2190F: include/linux/fscache*.h
2191
Ingo Molnar983f2162009-09-15 12:29:20 +02002192TRACING
Joe Perches8b58be82009-07-29 15:04:30 -07002193M: Steven Rostedt <rostedt@goodmis.org>
Ingo Molnar983f2162009-09-15 12:29:20 +02002194M: Frederic Weisbecker <fweisbec@gmail.com>
2195M: Ingo Molnar <mingo@redhat.com>
2196T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git tracing/core
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002197S: Maintained
Joe Perchesa65fd8e2009-06-18 16:49:23 -07002198F: Documentation/trace/ftrace.txt
Joe Perches679655d2009-04-07 20:44:32 -07002199F: arch/*/*/*/ftrace.h
2200F: arch/*/kernel/ftrace.c
Ingo Molnar983f2162009-09-15 12:29:20 +02002201F: include/*/ftrace.h include/trace/ include/linux/trace*.h
Joe Perches679655d2009-04-07 20:44:32 -07002202F: kernel/trace/
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002203
David Howells5ab7ffe2007-04-10 15:10:45 +01002204FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002205M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002207F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
Jonathan Woithe20b93732008-06-11 10:14:56 +09302209FUJITSU LAPTOP EXTRAS
Joe Perches8b58be82009-07-29 15:04:30 -07002210M: Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
Jonathan Woithe20b93732008-06-11 10:14:56 +09302211L: linux-acpi@vger.kernel.org
2212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002213F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302214
Miklos Szeredi04578f12005-09-09 13:10:22 -07002215FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07002216M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07002217L: fuse-devel@lists.sourceforge.net
2218W: http://fuse.sourceforge.net/
2219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002220F: fs/fuse/
2221F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07002224M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002226S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002227F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
2229GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002230M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231L: linux-scsi@vger.kernel.org
2232W: http://www.icp-vortex.com/
2233S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002234F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002236GENERIC GPIO I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002237M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002238S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002239F: drivers/i2c/busses/i2c-gpio.c
2240F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002241
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002242GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002243M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002246F: drivers/net/wan/c101.c
2247F: drivers/net/wan/hd6457*
2248F: drivers/net/wan/hdlc*
2249F: drivers/net/wan/n2.c
2250F: drivers/net/wan/pc300too.c
2251F: drivers/net/wan/pci200syn.c
2252F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002254GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07002255M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002256L: linux-arch@vger.kernel.org
2257T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
2258S: Maintained
2259F: include/asm-generic
2260
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002261GENERIC UIO DRIVER FOR PCI DEVICES
2262M: Michael S. Tsirkin <mst@redhat.com>
2263L: kvm@vger.kernel.org
2264L: linux-kernel@vger.kernel.org
2265S: Supported
2266F: drivers/uio/uio_pci_generic.c
2267
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002268GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002269M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002270L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002271W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002272T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2273T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002274S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002275F: Documentation/filesystems/gfs2*.txt
2276F: fs/gfs2/
2277F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002278
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002279GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002280M: Hansjoerg Lipp <hjlipp@web.de>
2281M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002282L: gigaset307x-common@lists.sourceforge.net
2283W: http://gigaset307x.sourceforge.net/
2284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002285F: Documentation/isdn/README.gigaset
2286F: drivers/isdn/gigaset/
2287F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002288
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002289HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002290M: Frank Seidel <frank@f-seidel.de>
Frank Seidel211e3e02009-02-17 19:59:54 +01002291L: lm-sensors@lm-sensors.org
2292W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002294F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002295
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002296HYPERVISOR VIRTUAL CONSOLE DRIVER
2297L: linuxppc-dev@ozlabs.org
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002298S: Odd Fixes
2299F: drivers/char/hvc_*
2300
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002301GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002302M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002303L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002304T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002306F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002307
2308GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002309M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002310L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002311T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002313F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002314
2315GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002316M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002317L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002318T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002320F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002321
Brian Johnson261982f2009-07-19 15:58:56 -03002322GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03002323M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03002324L: linux-media@vger.kernel.org
2325T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2326S: Maintained
2327F: drivers/media/video/gspca/sn9c20x.c
2328
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002329GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002330M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002331L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002332T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002334F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002335
2336GSPCA USB WEBCAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002337M: Jean-Francois Moine <moinejf@free.fr>
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002338W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002339L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002340T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002341S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002342F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002343
Jean Delvare5b543962005-08-15 19:51:02 +02002344HARDWARE MONITORING
Jean Delvare5b543962005-08-15 19:51:02 +02002345L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002346W: http://www.lm-sensors.org/
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002347S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002348F: drivers/hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02002349
Michael Buesch844dd052006-06-26 00:24:59 -07002350HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07002351M: Matt Mackall <mpm@selenic.com>
2352M: Herbert Xu <herbert@gondor.apana.org.au>
2353S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07002354F: Documentation/hw_random.txt
2355F: drivers/char/hw_random/
2356F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002357
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358HARMONY SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002359M: Kyle McMartin <kyle@mcmartin.ca>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002360L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002362F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363
2364HAYES ESP SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002365M: "Andrew J. Robinson" <arobinso@nyx.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366W: http://www.nyx.net/~arobinso
2367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002368F: Documentation/serial/hayes-esp.txt
2369F: drivers/char/esp.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002370
2371HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002372M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002373L: iss_storagedev@hp.com
2374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002375F: Documentation/blockdev/cpqarray.txt
2376F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002377
2378HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07002379M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002380L: iss_storagedev@hp.com
2381S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002382F: Documentation/blockdev/cciss.txt
2383F: drivers/block/cciss*
2384F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002385
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386HFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002387M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002389F: Documentation/filesystems/hfs.txt
2390F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
2392HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002393M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394L: linux-nvidia@lists.surfsouth.com
2395W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002397F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002399HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07002400M: Pavel Machek <pavel@ucw.cz>
2401M: "Rafael J. Wysocki" <rjw@sisk.pl>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002402L: linux-pm@lists.linux-foundation.org
2403S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002404F: arch/x86/power/
2405F: drivers/base/power/
2406F: kernel/power/
2407F: include/linux/suspend.h
2408F: include/linux/freezer.h
2409F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002410F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002411
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002412HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002413M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002414L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002415T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002417F: drivers/hid/
2418F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002419
Ingo Molnar38bed542007-02-22 09:09:34 +01002420HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07002421M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar38bed542007-02-22 09:09:34 +01002422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002423F: Documentation/timers/
2424F: kernel/hrtimer.c
2425F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002426
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427HIGH-SPEED SCC DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002428M: Klaus Kudielka <klaus.kudielka@ieee.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429L: linux-hams@vger.kernel.org
2430W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002432F: drivers/net/hamradio/dmascc.c
2433F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002435HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002436M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002437W: http://www.highpoint-tech.com
2438S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002439F: Documentation/scsi/hptiop.txt
2440F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002441
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07002443M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444L: linux-hippi@sunsite.dk
2445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002446F: include/linux/hippidevice.h
2447F: include/linux/if_hippi.h
2448F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
Jouni Malinenff1d2762005-05-12 22:54:16 -04002450HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002451M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07002452L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002453L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002454W: http://hostap.epitest.fi/
2455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002456F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002457
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002458HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002459M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002460S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002461F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002462
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002463HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07002464M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002466F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002467
Joe Perches7d2c86b2009-04-07 20:59:01 -07002468HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07002469M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08002470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002471F: Documentation/timers/hpet.txt
2472F: drivers/char/hpet.c
2473F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002474
2475HPET: i386
Joe Perches8b58be82009-07-29 15:04:30 -07002476M: "Venkatesh Pallipadi (Venki)" <venkatesh.pallipadi@intel.com>
Bob Piccob9b03322005-11-07 00:59:19 -08002477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002478F: arch/x86/kernel/hpet.c
2479F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002480
2481HPET: x86_64
Joe Perches8b58be82009-07-29 15:04:30 -07002482M: Vojtech Pavlik <vojtech@suse.cz>
Bob Piccob9b03322005-11-07 00:59:19 -08002483S: Maintained
2484
Joe Perches7d2c86b2009-04-07 20:59:01 -07002485HPET: ACPI
Joe Perches8b58be82009-07-29 15:04:30 -07002486M: Bob Picco <bob.picco@hp.com>
Bob Piccob9b03322005-11-07 00:59:19 -08002487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002488F: drivers/char/hpet.c
Bob Piccob9b03322005-11-07 00:59:19 -08002489
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002491M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002494F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
Joe Perches7d2c86b2009-04-07 20:59:01 -07002496HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002497M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002498W: http://www.pharscape.org
2499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002500F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002501
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002502HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002503M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002504L: linux-input@vger.kernel.org
2505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002506F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002507
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002509M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002511F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002513I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002514M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01002515L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002517F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002518
Jean Delvare5b543962005-08-15 19:51:02 +02002519I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002520M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
2521M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01002522L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002523W: http://i2c.wiki.kernel.org/
2524T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002526F: Documentation/i2c/
2527F: drivers/i2c/
2528F: include/linux/i2c.h
2529F: include/linux/i2c-dev.h
2530F: include/linux/i2c-id.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
Till Harbaume8c76ee2007-05-01 23:26:35 +02002532I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002533M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01002534L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002535W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002537F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002538
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07002540M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002542F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543
2544i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07002545M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07002546T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547S: Maintained
2548
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07002550M: Tony Luck <tony.luck@intel.com>
2551M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552L: linux-ia64@vger.kernel.org
2553W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002554T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002556F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558IBM MCA SCSI SUBSYSTEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002559M: Michael Lang <langa2@kph.uni-mainz.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560W: http://www.uni-mainz.de/~langm000/linux.html
2561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002562F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
2564IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07002565M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002567F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568
2569IBM ServeRAID RAID DRIVER
2570P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07002571M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002573S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002574F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002576IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002577M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578L: linux-ide@vger.kernel.org
David S. Miller920d44e2009-06-21 16:11:33 -07002579T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002581F: Documentation/ide/
2582F: drivers/ide/
2583F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002585IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002586M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002587L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002589F: Documentation/cdrom/ide-cd
2590F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
Andy Henroid27471fd2008-10-09 11:45:22 -07002592IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07002593M: Andy Henroid <andrew.d.henroid@intel.com>
Andy Henroid27471fd2008-10-09 11:45:22 -07002594L: linux-pm@lists.linux-foundation.org
2595S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002596F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002597
Joe Perches7d2c86b2009-04-07 20:59:01 -07002598IEEE 1394 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002599M: Ben Collins <ben.collins@ubuntu.com>
2600M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601L: linux1394-devel@lists.sourceforge.net
2602W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002603T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002605F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
Joe Perches7d2c86b2009-04-07 20:59:01 -07002607IEEE 1394 RAW I/O DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002608M: Dan Dennedy <dan@dennedy.org>
2609M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07002611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002612F: drivers/ieee1394/raw1394*
Jody McIntyre105d7b32005-09-30 11:59:04 -07002613
Sergey Lapin02cf2282009-06-08 12:18:50 +00002614IEEE 802.15.4 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002615M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2616M: Sergey Lapin <slapin@ossfans.org>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04002617L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00002618W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00002619T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00002620S: Maintained
2621F: net/ieee802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07002622F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00002623
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002624INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07002625M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002626S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002627F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002628
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002630L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Paul Mundt843393d2007-11-19 13:11:04 +09002631S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002632F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
2634INFINIBAND SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002635M: Roland Dreier <rolandd@cisco.com>
2636M: Sean Hefty <sean.hefty@intel.com>
2637M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002638L: linux-rdma@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639W: http://www.openib.org/
Joe Perches54e58812009-04-07 21:08:10 -07002640T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002642F: Documentation/infiniband/
2643F: drivers/infiniband/
2644F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
Robert Lovec9f04f52005-07-15 12:21:07 -04002646INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07002647M: John McCutchan <john@johnmccutchan.com>
2648M: Robert Love <rlove@rlove.org>
2649M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04002650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002651F: Documentation/filesystems/inotify.txt
2652F: fs/notify/inotify/
2653F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04002654
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002655INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002656M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
2657M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002658L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002659T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002661F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002662
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002663INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Joe Perches8b58be82009-07-29 15:04:30 -07002664M: Sylvain Meyer <sylvain.meyer@worldonline.fr>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002665L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002667F: Documentation/fb/intelfb.txt
2668F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002669
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002671M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002672L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002674F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302676INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002677M: Sujith Thomas <sujith.thomas@intel.com>
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302678L: linux-acpi@vger.kernel.org
2679W: http://www.lesswatts.org/projects/acpi/
2680S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002681F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302682
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002684M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002686F: arch/x86/kernel/microcode_core.c
2687F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002689INTEL I/OAT DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002690M: Maciej Sosnowski <maciej.sosnowski@intel.com>
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002691S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002692F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002693
David Woodhouse6c8909b2008-10-18 16:12:17 +01002694INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07002695M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01002696L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07002697T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01002698S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002699F: drivers/pci/intel-iommu.c
2700F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01002701
Dan Williamsb3e5f262007-08-07 10:26:35 -07002702INTEL IOP-ADMA DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002703M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsf00f5102009-08-18 15:21:50 -07002704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002705F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07002706
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002707INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002708M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002710F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
2711F: arch/arm/mach-ixp4xx/include/mach/npe.h
2712F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
2713F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
2714F: drivers/net/arm/ixp4xx_eth.c
2715F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002716
Michael Buesch844dd052006-06-26 00:24:59 -07002717INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002718M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07002719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002720F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07002721
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002722INTEL IXP2000 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002723M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002724L: netdev@vger.kernel.org
2725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002726F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002727
Auke Kokd94e6fe2008-03-03 14:37:47 -08002728INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe)
Joe Perches8b58be82009-07-29 15:04:30 -07002729M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2730M: Jesse Brandeburg <jesse.brandeburg@intel.com>
2731M: Bruce Allan <bruce.w.allan@intel.com>
2732M: PJ Waskiewicz <peter.p.waskiewicz.jr@intel.com>
2733M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08002734L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08002735W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002737F: drivers/net/e100.c
2738F: drivers/net/e1000/
2739F: drivers/net/e1000e/
2740F: drivers/net/igb/
2741F: drivers/net/ixgb/
2742F: drivers/net/ixgbe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743
James Ketrenos826d2ab2005-11-07 18:56:59 -06002744INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002745M: Zhu Yi <yi.zhu@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002746M: Reinette Chatre <reinette.chatre@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07002747M: Intel Linux Wireless <ilw@linux.intel.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07002748L: linux-wireless@vger.kernel.org
James Ketrenos826d2ab2005-11-07 18:56:59 -06002749W: http://ipw2100.sourceforge.net
Reinette Chatrea0bf7972009-08-21 14:03:51 -07002750S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002751F: Documentation/networking/README.ipw2100
2752F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06002753
2754INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002755M: Zhu Yi <yi.zhu@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002756M: Reinette Chatre <reinette.chatre@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07002757M: Intel Linux Wireless <ilw@linux.intel.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07002758L: linux-wireless@vger.kernel.org
James Ketrenos826d2ab2005-11-07 18:56:59 -06002759W: http://ipw2200.sourceforge.net
Reinette Chatrea0bf7972009-08-21 14:03:51 -07002760S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002761F: Documentation/networking/README.ipw2200
2762F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06002763
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08002764INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07002765M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08002766M: linux-wimax@intel.com
2767L: wimax@linuxwimax.org
2768S: Supported
2769W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07002770F: Documentation/wimax/README.i2400m
2771F: drivers/net/wimax/i2400m/
2772F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08002773
Zhu Yib481de92007-09-25 17:54:57 -07002774INTEL WIRELESS WIFI LINK (iwlwifi)
Joe Perches8b58be82009-07-29 15:04:30 -07002775M: Zhu Yi <yi.zhu@intel.com>
2776M: Reinette Chatre <reinette.chatre@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07002777M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07002778L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07002779W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07002780T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07002781S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002782F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07002783
Ralf Baechlecb109a02007-08-30 23:56:30 -07002784IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002785M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786L: linux-mips@linux-mips.org
2787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002788F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
Ralf Baechlecb109a02007-08-30 23:56:30 -07002790IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002791M: Pat Gefre <pfg@sgi.com>
Joe Perches6650e0a2007-12-10 15:49:32 -08002792L: linux-mips@linux-mips.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07002793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002794F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07002795
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002796IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07002797M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002799F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800
Francois Romieu1202d6f2007-09-17 17:13:55 -07002801IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002802M: Francois Romieu <romieu@fr.zoreil.com>
2803M: Sorbica Shieh <sorbica@icplus.com.tw>
2804M: Jesse Huang <jesse@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07002805L: netdev@vger.kernel.org
2806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002807F: drivers/net/ipg.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07002808
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002809IPATH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002810M: Ralph Campbell <infinipath@qlogic.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002811L: linux-rdma@vger.kernel.org
Arthur Jonesf42b6472007-07-09 20:12:26 -07002812T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08002813S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002814F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08002815
Corey Minyard4409ebe2006-04-20 02:43:12 -07002816IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002817M: Corey Minyard <minyard@acm.org>
Corey Minyard4409ebe2006-04-20 02:43:12 -07002818L: openipmi-developer@lists.sourceforge.net
2819W: http://openipmi.sourceforge.net/
2820S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002821F: Documentation/IPMI.txt
2822F: drivers/char/ipmi/
2823F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07002824
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002825IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002826M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002827L: linux-scsi@vger.kernel.org
2828W: http://www.adaptec.com/
2829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002830F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002831
2832IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07002833M: Wensong Zhang <wensong@linux-vs.org>
2834M: Simon Horman <horms@verge.net.au>
2835M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002836L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002837L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002839F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a72009-09-21 17:04:12 -07002840F: include/net/ip_vs.h
2841F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07002842F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843
Randy Dunlape7839f22008-10-12 16:11:45 -07002844IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002845M: Jiri Kosina <jkosina@suse.cz>
2846M: David Sterba <dsterba@suse.cz>
David Sterba099dc4f2008-02-07 10:57:12 +01002847S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07002848T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07002849F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01002850
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002851IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002852M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002853L: netdev@vger.kernel.org
2854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002855F: include/linux/ipx.h
2856F: include/net/ipx.h
2857F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002858
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002860M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07002861L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07002863S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02002864T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07002865F: Documentation/networking/irda.txt
2866F: drivers/net/irda/
2867F: include/net/irda/
2868F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002870ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07002871M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002873F: Documentation/isapnp.txt
2874F: drivers/pnp/isapnp/
2875F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002876
Mike Christie14816b12007-11-28 16:22:06 -08002877ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07002878M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b12007-11-28 16:22:06 -08002879L: open-iscsi@googlegroups.com
2880W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07002881T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08002882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002883F: drivers/scsi/*iscsi*
2884F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08002885
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002887M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07002888L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07002890T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002892F: Documentation/isdn/
2893F: drivers/isdn/
2894F: include/linux/isdn.h
2895F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
2897ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07002898M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07002899L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900W: http://www.melware.de
2901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002902F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
Hans Verkuil91821ff2007-12-02 09:35:33 -03002904IVTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002905M: Hans Verkuil <hverkuil@xs4all.nl>
Hans Verkuil91821ff2007-12-02 09:35:33 -03002906L: ivtv-devel@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002907L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002908T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03002909W: http://www.ivtvdriver.org
2910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002911F: Documentation/video4linux/*.ivtv
2912F: drivers/media/video/ivtv/
2913F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03002914
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002915JFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002916M: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002917L: jfs-discussion@lists.sourceforge.net
2918W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07002919T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05002920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002921F: Documentation/filesystems/jfs.txt
2922F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002923
Guo-Fu Tseng95252232008-09-16 01:00:11 +08002924JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002925M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08002926L: netdev@vger.kernel.org
2927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002928F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08002929
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07002931M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04002932L: linux-mtd@lists.infradead.org
2933W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002935F: fs/jffs2/
2936F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937
Josh Triplettde456d32006-07-30 03:04:00 -07002938JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07002939M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02002940M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002941L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07002942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002943F: fs/jbd*/
2944F: include/linux/ext*jbd*.h
2945F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07002946
Rudolf Marek4660cb32006-10-08 22:01:26 +02002947K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002948M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02002949L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002951F: Documentation/hwmon/k8temp
2952F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953
2954KCONFIG
Joe Perches8b58be82009-07-29 15:04:30 -07002955M: Roman Zippel <zippel@linux-m68k.org>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02002956L: linux-kbuild@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002958F: Documentation/kbuild/kconfig-language.txt
2959F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
Vivek Goyalea6c2082006-05-20 14:59:55 -07002961KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07002962M: Vivek Goyal <vgoyal@redhat.com>
2963M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07002964L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07002965W: http://lse.sourceforge.net/kdump/
2966S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07002967F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07002968
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969KERNEL AUTOMOUNTER (AUTOFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002970M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971L: autofs@linux.kernel.org
2972S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002973F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974
2975KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07002976M: Ian Kent <raven@themaw.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977L: autofs@linux.kernel.org
2978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002979F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
Joe Perches7d2c86b2009-04-07 20:59:01 -07002981KERNEL BUILD
Joe Perches8b58be82009-07-29 15:04:30 -07002982M: Sam Ravnborg <sam@ravnborg.org>
Joe Perches54e58812009-04-07 21:08:10 -07002983T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git
2984T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
Sam Ravnborg347d12d2007-10-18 13:23:33 +02002985L: linux-kbuild@vger.kernel.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002987F: Documentation/kbuild/
2988F: Makefile
2989F: scripts/Makefile.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
2991KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07002992L: kernel-janitors@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993W: http://www.kerneljanitors.org/
Markus Heidelbergcf830112009-06-12 01:00:28 +02002994S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04002996KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002997M: "J. Bruce Fields" <bfields@fieldses.org>
2998M: Neil Brown <neilb@suse.de>
Neil Brown16141c02007-12-11 16:16:12 -08002999L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003001S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003002F: fs/nfsd/
3003F: include/linux/nfsd/
3004F: fs/lockd/
3005F: fs/nfs_common/
3006F: net/sunrpc/
3007F: include/linux/lockd/
3008F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
Avi Kivity426d62e2006-12-13 00:34:03 -08003010KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07003011M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03003012M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003013L: kvm@vger.kernel.org
3014W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003015S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003016F: Documentation/*/kvm.txt
3017F: arch/*/kvm/
3018F: arch/*/include/asm/kvm*
3019F: include/linux/kvm*
3020F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003021
Joerg Roedelad8003d2008-09-10 20:01:07 +02003022KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07003023M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003024L: kvm@vger.kernel.org
3025W: http://kvm.qumranet.com
3026S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003027F: arch/x86/include/asm/svm.h
3028F: arch/x86/kvm/kvm_svm.h
3029F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003030
Hollis Blanchard513014b2008-04-16 23:28:08 -05003031KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Joe Perches8b58be82009-07-29 15:04:30 -07003032M: Hollis Blanchard <hollisb@us.ibm.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003033L: kvm-ppc@vger.kernel.org
3034W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003035S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003036F: arch/powerpc/include/asm/kvm*
3037F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003038
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003039KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07003040M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003041L: kvm-ia64@vger.kernel.org
3042W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003043S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003044F: Documentation/ia64/kvm.txt
3045F: arch/ia64/include/asm/kvm*
3046F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003047
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003048KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07003049M: Carsten Otte <cotte@de.ibm.com>
3050M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003051M: linux390@de.ibm.com
3052L: linux-s390@vger.kernel.org
3053W: http://www.ibm.com/developerworks/linux/linux390/
3054S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003055F: Documentation/s390/kvm.txt
3056F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003057F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003058
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003059KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07003060M: Eric Biederman <ebiederm@xmission.com>
Signed-off-by@vergenet.net":Simonb7c698f2007-10-18 03:04:33 -07003061W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
Simon Horman34633992007-05-08 00:31:40 -07003062L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003064F: include/linux/kexec.h
3065F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003066
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003067KGDB
Joe Perches8b58be82009-07-29 15:04:30 -07003068M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003069L: kgdb-bugreport@lists.sourceforge.net
3070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003071F: Documentation/DocBook/kgdb.tmpl
3072F: drivers/misc/kgdbts.c
3073F: drivers/serial/kgdboc.c
3074F: include/linux/kgdb.h
3075F: kernel/kgdb.c
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003076
Pekka Enberg456db8c2008-04-28 22:47:29 +03003077KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07003078M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg456db8c2008-04-28 22:47:29 +03003079P Pekka Enberg
3080M: penberg@cs.helsinki.fi
Pekka Enberg456db8c2008-04-28 22:47:29 +03003081S: Maintained
3082
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003083KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07003084M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003085S: Maintained
3086F: Documentation/kmemleak.txt
3087F: include/linux/kmemleak.h
3088F: mm/kmemleak.c
3089F: mm/kmemleak-test.c
3090
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003091KMEMTRACE
Joe Perches8b58be82009-07-29 15:04:30 -07003092M: Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003093S: Maintained
Joe Perchesdc8c7f82009-04-21 12:24:45 -07003094F: Documentation/trace/kmemtrace.txt
Joe Perches898f96f2009-06-18 16:49:25 -07003095F: include/linux/kmemtrace.h
Joe Perches679655d2009-04-07 20:44:32 -07003096F: kernel/trace/kmemtrace.c
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003097
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003098KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07003099M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
3100M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
3101M: "David S. Miller" <davem@davemloft.net>
3102M: Masami Hiramatsu <mhiramat@redhat.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003104F: Documentation/kprobes.txt
3105F: include/linux/kprobes.h
3106F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003107
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003108KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003109M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07003110W: http://miguelojeda.es/auxdisplay.htm
3111W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003113F: Documentation/auxdisplay/ks0108
3114F: drivers/auxdisplay/ks0108.c
3115F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003116
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003119S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003120F: Documentation/networking/lapb-module.txt
3121F: include/*/lapb.h
3122F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
3124LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07003125M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126L: linux-scsi@vger.kernel.org
3127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003128F: Documentation/scsi/53c700.txt
3129F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130
Richard Purdie263de9b2006-05-15 09:44:16 -07003131LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003132M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie263de9b2006-05-15 09:44:16 -07003133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003134F: drivers/leds/
3135F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003136
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07003138M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139L: legousb-devel@lists.sourceforge.net
3140W: http://legousb.sourceforge.net/
3141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003142F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143
Rusty Russell568a17f2007-10-25 14:12:24 +10003144LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07003145M: Rusty Russell <rusty@rustcorp.com.au>
Rusty Russell568a17f2007-10-25 14:12:24 +10003146L: lguest@ozlabs.org
3147W: http://lguest.ozlabs.org/
3148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003149F: Documentation/lguest/
3150F: arch/x86/lguest/
3151F: drivers/lguest/
3152F: include/linux/lguest*.h
3153F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003154
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07003156M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157W: http://www.ibm.com/linux/ltc/projects/ppc
3158S: Supported
3159
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003160LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07003161M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
3162M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163W: http://www.penguinppc.org/
3164L: linuxppc-dev@ozlabs.org
Joe Perches54e58812009-04-07 21:08:10 -07003165T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166S: Supported
3167
3168LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07003169M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170W: http://www.penguinppc.org/
3171L: linuxppc-dev@ozlabs.org
3172S: Maintained
3173
Grant Likely77a76362008-07-12 12:11:43 -06003174LINUX FOR POWERPC EMBEDDED MPC5XXX
Joe Perches8b58be82009-07-29 15:04:30 -07003175M: Grant Likely <grant.likely@secretlab.ca>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003177T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178S: Maintained
3179
3180LINUX FOR POWERPC EMBEDDED PPC4XX
Joe Perches8b58be82009-07-29 15:04:30 -07003181M: Josh Boyer <jwboyer@linux.vnet.ibm.com>
3182M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003184L: linuxppc-dev@ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003185T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186S: Maintained
3187
Grant Likely260c02a2007-10-02 12:15:34 +10003188LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07003189M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06003190W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Grant Likely260c02a2007-10-02 12:15:34 +10003191L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003192T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193S: Maintained
3194
Tom Rinie93adf12005-07-26 12:49:53 -07003195LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07003196M: Vitaly Bordug <vitb@kernel.crashing.org>
3197M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07003198W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003199L: linuxppc-dev@ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003200S: Maintained
3201
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07003203M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01003204W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003205L: linuxppc-dev@ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003206S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
Olof Johanssonab06ff32006-09-06 14:44:54 -05003208LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07003209M: Olof Johansson <olof@lixom.net>
Olof Johanssonab06ff32006-09-06 14:44:54 -05003210W: http://www.pasemi.com/
3211L: linuxppc-dev@ozlabs.org
3212S: Supported
3213
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07003215M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08003216L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003217T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218S: Supported
3219
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003220LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07003221M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003223F: include/linux/llc.h
3224F: include/net/llc*
3225F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003226
Pavel Machek455fbdd2008-11-12 13:27:02 -08003227LIS3LV02D ACCELEROMETER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003228M: Eric Piel <eric.piel@tremplin-utc.net>
Pavel Machek455fbdd2008-11-12 13:27:02 -08003229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003230F: Documentation/hwmon/lis3lv02d
3231F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003232
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003234M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003235L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003237F: Documentation/hwmon/lm83
3238F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239
3240LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003241M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003242L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003244F: Documentation/hwmon/lm90
3245F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003247LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07003248M: Peter Zijlstra <peterz@infradead.org>
3249M: Ingo Molnar <mingo@redhat.com>
Joe Perches54e58812009-04-07 21:08:10 -07003250T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003252F: Documentation/lockdep*.txt
3253F: Documentation/lockstat.txt
3254F: include/linux/lockdep.h
3255F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003256
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003257LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07003258M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003259L: linux-ntfs-dev@lists.sourceforge.net
3260W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003262F: Documentation/ldm.txt
3263F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003265LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07003266M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08003267M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003268L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003269L: linux-scsi@vger.kernel.org
3270W: http://www.lsilogic.com/support
3271S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003272F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003273
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07003275M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276L: linux-scsi@vger.kernel.org
3277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003278F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279
Mike Frysinger81365c32008-10-29 14:01:12 -07003280LTP (Linux Test Project)
Joe Perches8b58be82009-07-29 15:04:30 -07003281M: Subrata Modak <subrata@linux.vnet.ibm.com>
3282M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger81365c32008-10-29 14:01:12 -07003283L: ltp-list@lists.sourceforge.net (subscribers-only)
3284W: http://ltp.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003285T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07003286S: Maintained
3287
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003288M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003289M: Hirokazu Takata <takata@linux-m32r.org>
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003290L: linux-m32r@ml.linux-m32r.org
3291L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3292W: http://www.linux-m32r.org/
3293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003294F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003295
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003297M: Geert Uytterhoeven <geert@linux-m68k.org>
3298M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299L: linux-m68k@lists.linux-m68k.org
3300W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003301T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003303F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003304F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305
3306M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07003307M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003309L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003311F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312
3313M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07003314M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315W: http://www.tazenda.demon.co.uk/phil/linux-hp
3316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003317F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318
Jiri Benc64a327a2007-05-05 11:47:08 -07003319MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07003320M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07003321L: linux-wireless@vger.kernel.org
3322W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003323T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003325F: Documentation/networking/mac80211-injection.txt
3326F: include/net/mac80211.h
3327F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003328
Stefano Brivio1036d862007-12-23 04:46:27 +01003329MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07003330M: Stefano Brivio <stefano.brivio@polimi.it>
3331M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01003332L: linux-wireless@vger.kernel.org
3333W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003334T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003336F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003337
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003338MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003339M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003340L: netdev@vger.kernel.org
3341S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003342F: drivers/net/macvlan.c
3343F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003344
Michael Kerriskfaf16682005-07-31 22:34:47 -07003345MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07003346M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003347W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003348L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003349S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003350
Stefano Brivio74cda162007-11-19 20:27:46 +01003351MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003352M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01003353L: libertas-dev@lists.infradead.org
3354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003355F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003356
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003357MARVELL MV643XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003358M: Lennert Buytenhek <buytenh@marvell.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003359L: netdev@vger.kernel.org
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003360S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003361F: drivers/net/mv643xx_eth.*
3362F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02003364MARVELL MWL8K WIRELESS DRIVER
3365M: Lennert Buytenhek <buytenh@marvell.com>
3366L: linux-wireless@vger.kernel.org
3367S: Supported
3368F: drivers/net/wireless/mwl8k.c
3369
Pierre Ossman2a695672009-03-16 19:52:26 +01003370MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04003371M: Nicolas Pitre <nico@fluxnic.net>
Pierre Ossman2a695672009-03-16 19:52:26 +01003372S: Maintained
3373
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003374MARVELL YUKON / SYSKONNECT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003375M: Mirko Lindner <mlindner@syskonnect.de>
3376M: Ralph Roesler <rroesler@syskonnect.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003377W: http://www.syskonnect.com
3378S: Supported
3379
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380MATROX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003381M: Petr Vandrovec <vandrove@vc.cvut.cz>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003382L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003384F: drivers/video/matrox/matroxfb_*
3385F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003387MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003388M: "Hans J. Koch" <hjk@linutronix.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003389L: lm-sensors@lm-sensors.org
3390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003391F: Documentation/hwmon/max6650
3392F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003393
Joe Perches127c49a2009-04-08 08:34:04 -07003394MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07003395M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07003396P: LinuxTV.org Project
3397L: linux-media@vger.kernel.org
3398W: http://linuxtv.org
3399T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3400S: Maintained
3401F: Documentation/dvb/
3402F: Documentation/video4linux/
3403F: drivers/media/
3404F: include/media/
3405F: include/linux/dvb/
3406F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003407
3408MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003409M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003410L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003411W: http://megaraid.lsilogic.com
3412S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003413F: Documentation/scsi/megaraid.txt
3414F: drivers/scsi/megaraid.*
3415F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003416
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003417MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419W: http://www.linux-mm.org
3420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003421F: include/linux/mm.h
3422F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003423
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003424MEMORY RESOURCE CONTROLLER
Joe Perches8b58be82009-07-29 15:04:30 -07003425M: Balbir Singh <balbir@linux.vnet.ibm.com>
3426M: Pavel Emelyanov <xemul@openvz.org>
3427M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003428L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003430F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003431
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07003433M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434W: http://www.linux-mtd.infradead.org/
3435L: linux-mtd@lists.infradead.org
Josh Boyer2c560ac2005-11-23 15:43:57 -08003436T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003438F: drivers/mtd/
3439F: include/linux/mtd/
3440F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441
Michal Simekc6375b02009-03-27 14:25:52 +01003442MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003443M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01003444L: microblaze-uclinux@itee.uq.edu.au
3445W: http://www.monstr.eu/fdt/
3446T: git git://git.monstr.eu/linux-2.6-microblaze.git
3447S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02003448F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449
3450MICROTEK X6 SCANNER
Joe Perches8b58be82009-07-29 15:04:30 -07003451M: Oliver Neukum <oliver@neukum.name>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003453F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454
3455MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07003456M: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003457W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003459T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003460S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003461F: Documentation/mips/
3462F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463
3464MISCELLANEOUS MCA-SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003465M: James Bottomley <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003467F: Documentation/ia64/mca.txt
3468F: Documentation/mca.txt
3469F: drivers/mca/
3470F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471
3472MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003473M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003475F: include/linux/module.h
3476F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477
3478MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003479M: Stelian Pop <stelian@popies.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480W: http://popies.net/meye/
3481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003482F: Documentation/video4linux/meye.txt
3483F: drivers/media/video/meye.*
3484F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485
Pavel Pisac58ff042007-05-16 01:10:41 +02003486MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003487M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07003488L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02003489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003490F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003491
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492MOUSE AND MISC DEVICES [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07003493M: Alessandro Rubini <rubini@ipvvis.unipv.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003495F: drivers/input/mouse/
3496F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497
Jiri Slabyb9705b62008-04-30 00:53:48 -07003498MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07003499M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08003500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003501F: Documentation/serial/moxa-smartio
3502F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003503
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003504MSI LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003505M: Lennart Poettering <mzxreary@0pointer.de>
Joe Perches04bdfb92007-12-22 14:03:27 -08003506W: https://tango.0pointer.de/mailman/listinfo/s270-linux
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003507W: http://0pointer.de/lennart/tchibo.html
3508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003509F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003510
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003511MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07003512M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07003513T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003515F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003516
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003517MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Pierre Ossman3822a0e32009-07-31 12:27:28 +02003518S: Orphan
Andrew Mortonb2503a92009-08-18 14:11:12 -07003519L: linux-mmc@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -07003520F: drivers/mmc/
3521F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01003522
David Brownell15a05802007-08-08 09:12:54 -07003523MULTIMEDIA CARD (MMC) ETC. OVER SPI
Joe Perches8b58be82009-07-29 15:04:30 -07003524M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003525S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003526F: drivers/mmc/host/mmc_spi.c
3527F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07003528
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003530M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003532F: Documentation/sound/oss/MultiSound
3533F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534
Jiri Slabyd7354102006-12-08 02:38:35 -08003535MULTITECH MULTIPORT CARD (ISICOM)
Joe Perches8b58be82009-07-29 15:04:30 -07003536M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08003537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003538F: drivers/char/isicom.c
3539F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08003540
Felipe Balbi550a7372008-07-24 12:27:36 +03003541MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Joe Perches8b58be82009-07-29 15:04:30 -07003542M: Felipe Balbi <felipe.balbi@nokia.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003543L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003544T: git git://gitorious.org/musb/mainline.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02003545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003546F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03003547
Brice Goglin2d3cf582008-05-17 12:45:36 +02003548MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07003549M: Andrew Gallatin <gallatin@myri.com>
3550M: Brice Goglin <brice@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02003551L: netdev@vger.kernel.org
3552W: http://www.myri.com/scs/download-Myri10GE.html
3553S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003554F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02003555
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556NATSEMI ETHERNET DRIVER (DP8381x)
Joe Perches8b58be82009-07-29 15:04:30 -07003557M: Tim Hockin <thockin@hockin.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003559F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560
3561NCP FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003562M: Petr Vandrovec <vandrove@vc.cvut.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003564F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565
3566NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07003567M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568L: linux-scsi@vger.kernel.org
3569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003570F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003572NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07003573M: Faisal Latif <faisal.latif@intel.com>
3574M: Chien Tung <chien.tin.tung@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003575L: linux-rdma@vger.kernel.org
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003576W: http://www.neteffect.com
3577S: Supported
3578F: drivers/infiniband/hw/nes/
3579
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003580NETEM NETWORK EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003581M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07003582L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003584F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003585
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003586NETERION (S2IO) 10GbE DRIVER (xframe/vxge)
Joe Perches8b58be82009-07-29 15:04:30 -07003587M: Ramkrishna Vepa <ram.vepa@neterion.com>
3588M: Rastapur Santosh <santosh.rastapur@neterion.com>
3589M: Sivakumar Subramani <sivakumar.subramani@neterion.com>
3590M: Sreenivasa Honnur <sreenivasa.honnur@neterion.com>
3591M: Anil Murthy <anil.murthy@neterion.com>
Jiri Slaby4a584482007-08-30 23:56:39 -07003592L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003593W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
3594W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07003595S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003596F: Documentation/networking/s2io.txt
3597F: drivers/net/s2io*
Jiri Slaby4a584482007-08-30 23:56:39 -07003598
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599NETFILTER/IPTABLES/IPCHAINS
3600P: Rusty Russell
3601P: Marc Boucher
3602P: James Morris
3603P: Harald Welte
3604P: Jozsef Kadlecsik
Joe Perches8b58be82009-07-29 15:04:30 -07003605M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07003606L: netfilter-devel@vger.kernel.org
3607L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07003608L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609W: http://www.netfilter.org/
3610W: http://www.iptables.org/
Joe Perches3f1f7cf2009-07-01 11:32:10 +02003611T: git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003613F: include/linux/netfilter*
3614F: include/linux/netfilter/
3615F: include/net/netfilter/
3616F: net/*/netfilter.c
3617F: net/*/netfilter/
3618F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619
Paul Moore4cc67732006-09-25 15:57:13 -07003620NETLABEL
Joe Perches8b58be82009-07-29 15:04:30 -07003621M: Paul Moore <paul.moore@hp.com>
Paul Moore4cc67732006-09-25 15:57:13 -07003622W: http://netlabel.sf.net
3623L: netdev@vger.kernel.org
3624S: Supported
Joe Perches80811492009-04-08 20:20:27 -07003625F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07003626F: include/net/netlabel.h
3627F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07003628
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003630M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02003632W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003634F: include/linux/netrom.h
3635F: include/net/netrom.h
3636F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637
Pavel Machek5ddb88c2006-09-29 02:01:29 -07003638NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07003639M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003641F: Documentation/blockdev/nbd.txt
3642F: drivers/block/nbd.c
3643F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644
Neil Horman6e436502009-10-05 03:56:55 +00003645NETWORK DROP MONITOR
3646M: Neil Horman <nhorman@tuxdriver.com>
3647L: netdev@vger.kernel.org
3648S: Maintained
3649W: https://fedorahosted.org/dropwatch/
3650F: net/core/drop_monitor.c
3651
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07003653M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003654L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00003655W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00003656W: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perchesb1e8fd52009-04-16 09:38:46 +00003657T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Joe Perchesdffc1432009-11-04 09:38:58 -08003658T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003660F: net/
3661F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00003662F: include/linux/in.h
3663F: include/linux/net.h
3664F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665
3666NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07003667M: "David S. Miller" <davem@davemloft.net>
3668M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
3669M: "Pekka Savola (ipv6)" <pekkas@netcore.fi>
3670M: James Morris <jmorris@namei.org>
3671M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
3672M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003673L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003674T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003676F: net/ipv4/
3677F: net/ipv6/
3678F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679
James Morris10e2ff12007-08-25 14:41:28 -07003680NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Joe Perches8b58be82009-07-29 15:04:30 -07003681M: Paul Moore <paul.moore@hp.com>
James Morris10e2ff12007-08-25 14:41:28 -07003682L: netdev@vger.kernel.org
3683S: Maintained
3684
John W. Linville29f8f632006-01-18 14:52:48 -08003685NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07003686M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08003687L: linux-wireless@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003688T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08003689S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07003690F: net/mac80211/
3691F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07003692F: net/wireless/
3693F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07003694F: include/linux/wireless.h
Joe Perches34b921c2009-08-07 13:16:15 -07003695F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08003696
Joe Perches788873a2009-04-16 09:38:45 +00003697NETWORKING DRIVERS
3698L: netdev@vger.kernel.org
3699W: http://www.linuxfoundation.org/en/Net
3700T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
3701S: Odd Fixes
3702F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00003703F: include/linux/if_*
3704F: include/linux/*device.h
Joe Perches788873a2009-04-16 09:38:45 +00003705
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003706NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00003707M: Amit Kumar Salecha <amit.salecha@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003708L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00003709W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003710S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003711F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003712
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003713NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07003714M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05003715L: linux-nfs@vger.kernel.org
3716W: http://client.linux-nfs.org
3717T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003719F: fs/lockd/
3720F: fs/nfs/
3721F: fs/nfs_common/
3722F: net/sunrpc/
3723F: include/linux/lockd/
3724F: include/linux/nfs*
3725F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726
3727NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003728M: Jan-Pascal van Best <janpascal@vanbest.org>
3729M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003730L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003732F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07003734NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003735M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07003736L: users@nilfs.org
3737W: http://www.nilfs.org/en/
3738S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003739F: Documentation/filesystems/nilfs2.txt
3740F: fs/nilfs2/
3741F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07003742
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003744M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
3746S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003747F: Documentation/scsi/NinjaSCSI.txt
3748F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749
3750NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003751M: GOTO Masanori <gotom@debian.or.jp>
3752M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
3754S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003755F: Documentation/scsi/NinjaSCSI.txt
3756F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758NTFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003759M: Anton Altaparmakov <aia21@cantab.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07003761W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07003762T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003764F: Documentation/filesystems/ntfs.txt
3765F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003767NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003768M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003769L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01003770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003771F: drivers/video/riva/
3772F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773
Tony Lindgrenf5525782009-05-28 13:23:53 -07003774OMAP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003775M: "Tony Lindgren <tony@atomide.com>" <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003776L: linux-omap@vger.kernel.org
3777W: http://www.muru.com/linux/omap/
3778W: http://linux.omap.com/
3779T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
3780S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07003781F: arch/arm/*omap*/
Tony Lindgrenf5525782009-05-28 13:23:53 -07003782
3783OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003784M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003785L: linux-omap@vger.kernel.org
3786S: Maintained
3787F: arch/arm/*omap*/*clock*
3788
3789OMAP POWER MANAGEMENT SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003790M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003791L: linux-omap@vger.kernel.org
3792S: Maintained
3793F: arch/arm/*omap*/*pm*
3794
3795OMAP AUDIO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003796M: Jarkko Nikula <jhnikula@gmail.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003797L: alsa-devel@alsa-project.org (subscribers-only)
3798L: linux-omap@vger.kernel.org
3799S: Maintained
3800F: sound/soc/omap/
3801
3802OMAP FRAMEBUFFER SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003803M: Imre Deak <imre.deak@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003804L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
3805L: linux-omap@vger.kernel.org
3806S: Maintained
3807F: drivers/video/omap/
3808
3809OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003810M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003811L: linux-omap@vger.kernel.org
3812S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07003813F: drivers/mmc/host/omap.c
3814
3815OMAP HS MMC SUPPORT
3816M: Madhusudhan Chikkature <madhu.cr@ti.com>
3817L: linux-omap@vger.kernel.org
3818S: Maintained
3819F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07003820
3821OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003822M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003823S: Maintained
3824F: drivers/char/hw_random/omap-rng.c
3825
3826OMAP USB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003827M: Felipe Balbi <felipe.balbi@nokia.com>
3828M: David Brownell <dbrownell@users.sourceforge.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003829L: linux-usb@vger.kernel.org
3830L: linux-omap@vger.kernel.org
3831S: Maintained
3832
Bob Copeland0ad122d2008-07-25 19:45:18 -07003833OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003834M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07003835L: linux-karma-devel@lists.sourceforge.net
3836S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003837F: Documentation/filesystems/omfs.txt
3838F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07003839
Harald Weltec1986ee2005-11-13 16:06:29 -08003840OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003841M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08003842S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003843F: drivers/char/pcmcia/cm4000_cs.c
3844F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08003845
Harald Welte77c44ab2005-11-13 16:06:26 -08003846OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003847M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08003848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003849F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08003850
Jonathan Corbet77d51402007-03-22 19:44:17 -03003851OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003852M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003853L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003854T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03003855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003856F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03003857
Thomas Gleixner431bca72007-05-02 09:31:35 +02003858ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003859M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02003860L: linux-mtd@lists.infradead.org
3861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003862F: drivers/mtd/onenand/
3863F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02003864
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003866M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867L: osst-users@lists.sourceforge.net
3868L: linux-scsi@vger.kernel.org
3869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003870F: drivers/scsi/osst*
3871F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003873OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003874M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01003875L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003877F: Documentation/i2c/busses/i2c-ocores
3878F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003879
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07003881M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882L: oprofile-list@lists.sf.net
3883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003884F: arch/*/oprofile/
3885F: drivers/oprofile/
3886F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003888ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07003889M: Mark Fasheh <mfasheh@suse.com>
3890M: Joel Becker <joel.becker@oracle.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003891L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
3892W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07003893T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003894S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003895F: Documentation/filesystems/ocfs2.txt
3896F: Documentation/filesystems/dlmfs.txt
3897F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003898
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899ORINOCO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003900M: Pavel Roskin <proski@gnu.org>
3901M: David Gibson <hermes@gibson.dropbear.id.au>
Johannes Berg724c6b32007-04-23 12:18:20 -07003902L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07003903L: orinoco-users@lists.sourceforge.net
3904L: orinoco-devel@lists.sourceforge.net
3905W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003907F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03003909OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003910M: Boaz Harrosh <bharrosh@panasas.com>
3911M: Benny Halevy <bhalevy@panasas.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02003912L: osd-dev@open-osd.org
3913W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07003914T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02003915S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03003916F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07003917F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03003918F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02003919
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003920P54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003921M: Michael Wu <flamingice@sourmilk.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003922L: linux-wireless@vger.kernel.org
3923W: http://prism54.org
Joe Perches54e58812009-04-07 21:08:10 -07003924T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003926F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003927
Olof Johanssonf5cd7872007-01-31 21:43:54 -06003928PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003929M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06003930L: netdev@vger.kernel.org
3931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003932F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06003933
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01003934PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003935M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01003936L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01003937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003938F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01003939
Harald Welte709ee532008-09-23 17:46:57 +02003940PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003941M: Harald Welte <laforge@gnumonks.org>
Harald Welte709ee532008-09-23 17:46:57 +02003942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003943F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02003944
David Howells4fa97182008-10-13 10:42:44 +01003945PANASONIC MN10300/AM33 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003946M: David Howells <dhowells@redhat.com>
3947M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01003948L: linux-am33-list@redhat.com (moderated for non-subscribers)
3949W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
3950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003951F: Documentation/mn10300/
3952F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01003953
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07003955L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08003956S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003957F: drivers/parport/
3958F: include/linux/parport*.h
3959F: drivers/char/ppdev.c
3960F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003962PARAVIRT_OPS INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07003963M: Jeremy Fitzhardinge <jeremy@xensource.com>
3964M: Chris Wright <chrisw@sous-sol.org>
3965M: Alok Kataria <akataria@vmware.com>
3966M: Rusty Russell <rusty@rustcorp.com.au>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003967L: virtualization@lists.osdl.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003968S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003969F: Documentation/ia64/paravirt_ops.txt
3970F: arch/*/kernel/paravirt*
3971F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003972
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07003974M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07003975L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976W: http://www.torque.net/linux-pp.html
3977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003978F: Documentation/blockdev/paride.txt
3979F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980
3981PARISC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003982M: Kyle McMartin <kyle@mcmartin.ca>
3983M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003984L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985W: http://www.parisc-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07003986T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003988F: arch/parisc/
3989F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990
Jim Cromie1662d322006-10-06 00:43:59 -07003991PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003992M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07003993L: lm-sensors@lm-sensors.org
3994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003995F: Documentation/hwmon/pc87360
3996F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07003997
3998PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003999M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004001F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004002
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004003PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004004M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004005S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004006F: drivers/leds/leds-pca9532.c
4007F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004008
Wolfram Sanga1867d32009-09-18 22:45:51 +02004009PCA9564/PCA9665 I2C BUS DRIVER
4010M: Wolfram Sang <w.sang@pengutronix.de>
4011L: linux-i2c@vger.kernel.org
4012S: Maintained
4013F: drivers/i2c/algos/i2c-algo-pca.c
4014F: drivers/i2c/busses/i2c-pca-*
4015F: include/linux/i2c-algo-pca.h
4016F: include/linux/i2c-pca-platform.h
4017
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004018PCI ERROR RECOVERY
Joe Perches8b58be82009-07-29 15:04:30 -07004019M: Linas Vepstas <linas@austin.ibm.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004020L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004021S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004022F: Documentation/PCI/pci-error-recovery.txt
4023F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004024
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025PCI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004026M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes29054742008-05-03 08:35:49 -07004027L: linux-pci@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004028T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004030F: Documentation/PCI/
4031F: drivers/pci/
4032F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033
Jesse Barnesbe3652b2009-09-17 10:01:07 -07004034PCI HOTPLUG
4035M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07004036L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004037S: Supported
Jesse Barnesbe3652b2009-09-17 10:01:07 -07004038F: drivers/pci/hotplug
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004039
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004041P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004042L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004043W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004044T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004046F: Documentation/pcmcia/
4047F: drivers/pcmcia/
4048F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049
4050PCNET32 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004051M: Don Fry <pcnet32@verizon.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004052L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004054F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004056PER-TASK DELAY ACCOUNTING
Joe Perches8b58be82009-07-29 15:04:30 -07004057M: Balbir Singh <balbir@linux.vnet.ibm.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004059F: include/linux/delayacct.h
4060F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004061
Ingo Molnar57c0c152009-09-21 12:20:38 +02004062PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004063M: Peter Zijlstra <a.p.zijlstra@chello.nl>
4064M: Paul Mackerras <paulus@samba.org>
4065M: Ingo Molnar <mingo@elte.hu>
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004066S: Supported
4067
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004068PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07004069M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004070L: linux-abi-devel@lists.sourceforge.net
4071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004072F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004073
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004075M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076L: linux-mtd@lists.infradead.org
4077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004078F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079
Peter Osterlund249a6772005-09-27 21:45:30 -07004080PKTCDVD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004081M: Peter Osterlund <petero2@telia.com>
Peter Osterlund249a6772005-09-27 21:45:30 -07004082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004083F: drivers/block/pktcdvd.c
4084F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004085
Anil Ravindranath89a36812009-08-25 17:35:18 -07004086PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07004087M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07004088L: linux-scsi@vger.kernel.org
4089W: http://www.pmc-sierra.com/
4090S: Supported
4091F: drivers/scsi/pmcraid.*
4092
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07004094M: Thomas Gleixner <tglx@linutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004096F: fs/timerfd.c
4097F: include/linux/timer*
4098F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099
Anton Vorontsov3be86142007-07-15 04:43:36 +04004100POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004101M: Anton Vorontsov <cbou@mail.ru>
4102M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07004103T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004105F: include/linux/power_supply.h
4106F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004107
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004109M: Adam Belay <abelay@mit.edu>
4110M: Bjorn Helgaas <bjorn.helgaas@hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004112F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113
Vitaly Wool999445d2007-01-04 13:07:03 +01004114PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004115M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01004116L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004118F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004119
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07004121M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122L: linux-ppp@vger.kernel.org
4123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004124F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125
4126PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07004127M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004129F: net/atm/pppoatm.c
4130F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131
4132PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07004133M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004135F: drivers/net/pppoe.c
4136F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137
James Chapmana6d23702007-06-27 15:53:17 -07004138PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07004139M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07004140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004141F: drivers/net/pppol2tp.c
4142F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004143
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004144PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004145M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004146W: http://wiki.enneenne.com/index.php/LinuxPPS_support
4147L: linuxpps@ml.enneenne.com (subscribers-only)
4148S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07004149F: Documentation/pps/
4150F: drivers/pps/
4151F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004152
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07004154M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155L: kpreempt-tech@lists.sourceforge.net
4156W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4157S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004158F: Documentation/preempt-locking.txt
4159F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160
4161PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004162M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004163L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164W: http://prism54.org
4165S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004166F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167
4168PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004169M: Peter Denison <promise@pnd-pc.demon.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170W: http://www.pnd-pc.demon.co.uk/promise/
4171S: Maintained
4172
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004173PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004174M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004175L: linux-ide@vger.kernel.org
4176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004177F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004178
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004179PS3 NETWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004180M: Geoff Levand <geoffrey.levand@am.sony.com>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004181L: netdev@vger.kernel.org
4182L: cbe-oss-dev@ozlabs.org
4183S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004184F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004185
Geoff Levandf58a9d12006-11-23 00:46:51 +01004186PS3 PLATFORM SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004187M: Geoff Levand <geoffrey.levand@am.sony.com>
Geoff Levandf58a9d12006-11-23 00:46:51 +01004188L: linuxppc-dev@ozlabs.org
4189L: cbe-oss-dev@ozlabs.org
4190S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004191F: arch/powerpc/boot/ps3*
4192F: arch/powerpc/include/asm/lv1call.h
4193F: arch/powerpc/include/asm/ps3*.h
4194F: arch/powerpc/platforms/ps3/
4195F: drivers/*/ps3*
4196F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00004197F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07004198F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00004199F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01004200
Jim Pariscffb4add2009-01-06 11:32:10 +00004201PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004202M: Jim Paris <jim@jtan.com>
Jim Pariscffb4add2009-01-06 11:32:10 +00004203L: cbe-oss-dev@ozlabs.org
4204S: Maintained
4205
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004206PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004207M: Roland McGrath <roland@redhat.com>
4208M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004209S: Maintained
4210F: include/asm-generic/syscall.h
4211F: include/linux/ptrace.h
4212F: include/linux/regset.h
4213F: include/linux/tracehook.h
4214F: kernel/ptrace.c
4215
Michael Krufky83202042006-07-03 00:24:18 -07004216PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004217M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03004218L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004219L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004220W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004221T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004223F: Documentation/video4linux/README.pvrusb2
4224F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004225
Eric Miao30ec2612008-06-12 15:21:41 -07004226PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004227M: Eric Miao <eric.y.miao@gmail.com>
4228M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004229L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004231F: arch/arm/mach-pxa/
4232F: drivers/pcmcia/pxa2xx*
4233F: drivers/spi/pxa2xx*
4234F: drivers/usb/gadget/pxa2*
4235F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01004236F: sound/arm/pxa*
4237F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004239PXA168 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004240M: Eric Miao <eric.y.miao@gmail.com>
4241M: Jason Chagas <jason.chagas@marvell.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004242L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -07004243T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004244S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004245
Eric Miao5fa82eb2009-03-20 12:52:24 +08004246PXA910 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004247M: Eric Miao <eric.y.miao@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004248L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -07004249T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004250S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08004251
Pierre Ossman272f1332007-05-14 21:25:26 +02004252PXA MMCI DRIVER
4253S: Orphan
4254
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004255PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004256M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004257L: rtc-linux@googlegroups.com
4258S: Maintained
4259
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004261M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004262M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263L: linux-scsi@vger.kernel.org
4264S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004265F: Documentation/scsi/LICENSE.qla2xxx
4266F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267
Ron Mercer5a4faa82006-07-25 00:40:21 -07004268QLOGIC QLA3XXX NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004269M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa82006-07-25 00:40:21 -07004270M: linux-driver@qlogic.com
4271L: netdev@vger.kernel.org
4272S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004273F: Documentation/networking/LICENSE.qla3xxx
4274F: drivers/net/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07004275
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004276QLOGIC QLGE 10Gb ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004277M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07004278M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004279L: netdev@vger.kernel.org
4280S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004281F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004282
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004284M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285W: http://www.alarsen.net/linux/qnx4fs/
4286S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004287F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07004288F: include/linux/qnx4_fs.h
4289F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290
4291RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004292M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004293L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004295F: drivers/video/aty/radeon*
4296F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297
4298RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004299M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004300L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004302F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303
Randy Dunlape7839f22008-10-12 16:11:45 -07004304RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004305P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01004306M: Ivo van Doorn <IvDoorn@gmail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004307L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01004308L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004309W: http://rt2x00.serialmonkey.com/
4310S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004311T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004312F: drivers/net/wireless/rt2x00/
4313
Nick Piggin9db55792008-02-08 04:19:49 -08004314RAMDISK RAM BLOCK DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004315M: Nick Piggin <npiggin@suse.de>
Nick Piggin9db55792008-02-08 04:19:49 -08004316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004317F: Documentation/blockdev/ramdisk.txt
4318F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004319
Matt Mackall9e95ce22005-04-16 15:25:56 -07004320RANDOM NUMBER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004321M: Matt Mackall <mpm@selenic.com>
Matt Mackall9e95ce22005-04-16 15:25:56 -07004322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004323F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004324
Matt Porter394b7012005-11-07 01:00:15 -08004325RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004326M: Matt Porter <mporter@kernel.crashing.org>
Matt Porter394b7012005-11-07 01:00:15 -08004327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004328F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004329
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004330RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004331M: Corey Thomas <coreythomas@charter.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004332L: linux-wireless@vger.kernel.org
4333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004334F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004335
4336RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07004337M: Josh Triplett <josh@freedesktop.org>
4338M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004340F: Documentation/RCU/torture.txt
4341F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004342
Florian Fainellic1f766b2008-02-06 22:39:44 +01004343RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07004344M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01004345S: Maintained
4346
Florian Fainellidb17f392007-12-19 11:30:30 +01004347RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004348M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01004349L: netdev@vger.kernel.org
4350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004351F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004352
Andy Grovera09ed662009-02-24 15:30:41 +00004353RDS - RELIABLE DATAGRAM SOCKETS
Joe Perches8b58be82009-07-29 15:04:30 -07004354M: Andy Grover <andy.grover@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00004355L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00004356S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004357F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004358
Josh Triplett595182b2006-10-04 02:17:21 -07004359READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07004360M: Dipankar Sarma <dipankar@in.ibm.com>
4361M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Josh Triplett595182b2006-10-04 02:17:21 -07004362W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07004363S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004364F: Documentation/RCU/rcu.txt
4365F: Documentation/RCU/rcuref.txt
4366F: include/linux/rcupdate.h
4367F: include/linux/srcu.h
4368F: kernel/rcupdate.c
Josh Triplett595182b2006-10-04 02:17:21 -07004369
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370REAL TIME CLOCK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004371M: Paul Gortmaker <p_gortmaker@yahoo.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004373F: Documentation/rtc.txt
4374F: drivers/rtc/
4375F: include/linux/rtc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004377REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004378M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08004379L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004381F: Documentation/rtc.txt
4382F: drivers/rtc/
4383F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004384
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004386L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004388F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389
Ivo van Doorne08976452008-04-12 19:23:55 +02004390RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07004391M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02004392L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02004393S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004394F Documentation/rfkill.txt
4395F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02004396
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004397RISCOM8 DRIVER
4398S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004399F: Documentation/serial/riscom8.txt
4400F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004401
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402ROCKETPORT DRIVER
4403P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404W: http://www.comtrol.com
4405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004406F: Documentation/serial/rocket.txt
4407F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408
4409ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004410M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004412W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004414F: include/linux/rose.h
4415F: include/net/rose.h
4416F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417
Larry Finger59840482008-11-12 17:13:09 -06004418RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004419M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04004420L: linux-wireless@vger.kernel.org
4421W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004422T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04004423S: Maintained
Joe Perches2b3daf52009-07-21 13:09:56 -07004424F: drivers/net/wireless/rtl818x/rtl8180*
Michael Wu605bebe2007-05-14 01:41:02 -04004425
Larry Finger59840482008-11-12 17:13:09 -06004426RTL8187 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004427M: Herton Ronaldo Krzesinski <herton@mandriva.com.br>
4428M: Hin-Tak Leung <htl10@users.sourceforge.net>
4429M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07004430L: linux-wireless@vger.kernel.org
4431W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004432T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07004433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004434F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06004435
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004436S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004437M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004438L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004439S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004440F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004441
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442S390
Joe Perches8b58be82009-07-29 15:04:30 -07004443M: Martin Schwidefsky <schwidefsky@de.ibm.com>
4444M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004446L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004447W: http://www.ibm.com/developerworks/linux/linux390/
4448S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004449F: arch/s390/
Heiko Carstens5238da42006-02-11 17:56:01 -08004450
4451S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004452M: Ursula Braun <ursula.braun@de.ibm.com>
4453M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08004454M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004455L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004456W: http://www.ibm.com/developerworks/linux/linux390/
4457S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004458F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08004459
Felix Beckfeed9b62009-03-26 15:24:23 +01004460S390 ZCRYPT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004461M: Felix Beck <felix.beck@de.ibm.com>
4462M: Ralph Wuerthner <ralph.wuerthner@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01004463M: linux390@de.ibm.com
4464L: linux-s390@vger.kernel.org
4465S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004466F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01004467
Heiko Carstens5238da42006-02-11 17:56:01 -08004468S390 ZFCP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004469M: Christof Schmitt <christof.schmitt@de.ibm.com>
4470M: Martin Peschke <mp3@de.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08004471M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004472L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004473W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004475F: Documentation/s390/zfcpdump.txt
4476F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477
Ursula Braundd96df22007-09-19 13:09:02 +02004478S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004479M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02004480M: linux390@de.ibm.com
4481L: linux-s390@vger.kernel.org
4482W: http://www.ibm.com/developerworks/linux/linux390/
4483S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004484F: drivers/s390/net/*iucv*
4485F: include/net/iucv/
4486F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02004487
Ben Dooks4dde7f72008-06-30 22:40:38 +01004488S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07004489M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004490L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01004491S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004492F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01004493
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004495M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004496L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004497T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498W: http://www.mihu.de/linux/saa7146
4499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004500F: drivers/media/common/saa7146*
4501F: drivers/media/video/*7146*
4502F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004505M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004507F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508
4509SCHEDULER
Joe Perches8b58be82009-07-29 15:04:30 -07004510M: Ingo Molnar <mingo@elte.hu>
4511M: Peter Zijlstra <peterz@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004513F: kernel/sched*
4514F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515
Chen Liqin6bcf6732009-06-13 15:24:33 +08004516SCORE ARCHITECTURE
4517P: Chen Liqin
4518M: liqin.chen@sunplusct.com
4519P: Lennox Wu
Chen Liqin7e483862009-09-23 11:40:15 +08004520M: lennox.wu@gmail.com
Chen Liqin6bcf6732009-06-13 15:24:33 +08004521W: http://www.sunplusct.com
4522S: Supported
4523
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004525M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526L: linux-scsi@vger.kernel.org
4527W: http://www.kernel.dk
4528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004529F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530
4531SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004532M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533L: linux-scsi@vger.kernel.org
4534W: http://www.torque.net/sg
4535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004536F: drivers/scsi/sg.c
4537F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538
4539SCSI SUBSYSTEM
James Bottomley60df75c2009-08-13 19:23:12 +00004540M: "James E.J. Bottomley" <James.Bottomley@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004542T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
4543T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
4544T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004546F: drivers/scsi/
4547F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548
4549SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004550M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551L: linux-scsi@vger.kernel.org
4552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004553F: Documentation/scsi/st.txt
4554F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555
4556SCTP PROTOCOL
Joe Perches8b58be82009-07-29 15:04:30 -07004557M: Vlad Yasevich <vladislav.yasevich@hp.com>
4558M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07004559L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07004560W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01004561S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004562F: Documentation/networking/sctp.txt
4563F: include/linux/sctp.h
4564F: include/net/sctp/
4565F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566
4567SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004568M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004569S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004570F: Documentation/i2c/busses/scx200_acb
4571F: arch/x86/kernel/scx200_32.c
4572F: drivers/watchdog/scx200_wdt.c
4573F: drivers/i2c/busses/scx200*
4574F: drivers/mtd/maps/scx200_docflash.c
4575F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07004576
4577SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004578M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004580F: drivers/char/scx200_gpio.c
4581F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07004582
4583SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004584M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004586F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587
Sascha Sommer6a369132008-07-15 14:21:29 +02004588SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004589M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02004590L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
4591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004592F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02004593
Randy Dunlape7839f22008-10-12 16:11:45 -07004594SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Pierre Ossman5be46162009-09-21 17:00:59 -07004595S: Orphan
4596L: linux-mmc@vger.kernel.org
4597F: drivers/mmc/host/sdhci.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004598
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03004599SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07004600M: Anton Vorontsov <avorontsov@ru.mvista.com>
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03004601L: linuxppc-dev@ozlabs.org
Pierre Ossman5be46162009-09-21 17:00:59 -07004602L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603S: Maintained
Pierre Ossman5be46162009-09-21 17:00:59 -07004604F: drivers/mmc/host/sdhci-of.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605
Ben Dooks0d1bb412009-06-14 13:52:37 +01004606SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004607M: Ben Dooks <ben-linux@fluff.org>
Pierre Ossman5be46162009-09-21 17:00:59 -07004608L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01004609S: Maintained
4610F: drivers/mmc/host/sdhci-s3c.c
4611
James Morris8711cca2008-12-04 03:19:45 +11004612SECURITY SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004613M: James Morris <jmorris@namei.org>
James Morris8711cca2008-12-04 03:19:45 +11004614L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perches54e58812009-04-07 21:08:10 -07004615T: git git://www.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11004616W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11004617S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07004618F: security/
James Morris8711cca2008-12-04 03:19:45 +11004619
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07004621M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622S: Supported
4623
4624SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07004625M: Stephen Smalley <sds@tycho.nsa.gov>
4626M: James Morris <jmorris@namei.org>
4627M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07004628L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04004629W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07004630T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004632F: include/linux/selinux*
4633F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634
Jiri Slabycef2cf02007-05-08 00:31:45 -07004635SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07004636M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07004637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004638F: drivers/misc/phantom.c
4639F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07004640
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004641SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004642M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004644T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004646F: drivers/ata/
4647F: include/linux/ata.h
4648F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004650SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004651M: Sathya Perla <sathyap@serverengines.com>
4652M: Subbu Seetharaman <subbus@serverengines.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07004653L: netdev@vger.kernel.org
4654W: http://www.serverengines.com
4655S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004656F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004657
Ben Hutchings8ceee662008-04-27 12:55:59 +01004658SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00004659M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
4660M: Steve Hodgson <shodgson@solarflare.com>
4661M: Ben Hutchings <bhutchings@solarflare.com>
4662L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01004663S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004664F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01004665
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004666SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004667M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004669F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004670
4671SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004672M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004673L: linux-ia64@vger.kernel.org
4674S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004675F: Documentation/ia64/serial.txt
4676F: drivers/serial/ioc?_serial.c
4677F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004678
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07004680M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681L: linux-visws-devel@lists.sf.net
4682W: http://linux-visws.sf.net
4683S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07004684F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685
Jack Steiner75312612008-08-15 00:40:42 -07004686SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004687M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07004688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004689F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07004690
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004691SHARP LH SUPPORT (LH7952X & LH7A40X)
Joe Perches8b58be82009-07-29 15:04:30 -07004692M: Marc Singer <elf@buici.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004693W: http://projects.buici.com/arm
Joe Perchesefc03ec2009-09-21 17:04:27 -07004694L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004696F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
4697F: arch/arm/mach-lh7a40x/
4698F: drivers/serial/serial_lh7a40x.c
4699F: drivers/usb/gadget/lh7a40*
4700F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004701
Len Brown6349d992009-08-14 15:07:14 -04004702SIMPLE FIRMWARE INTERFACE (SFI)
4703P: Len Brown
4704M: lenb@kernel.org
4705L: sfi-devel@simplefirmware.org
4706W: http://simplefirmware.org/
4707T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004708S: Supported
Len Brown6349d992009-08-14 15:07:14 -04004709F: arch/x86/kernel/*sfi*
4710F: drivers/sfi/
4711F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004712
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713SIMTEC EB110ATX (Chalice CATS)
4714P: Ben Dooks
Joe Perches8b58be82009-07-29 15:04:30 -07004715M: Vincent Sanders <support@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716W: http://www.simtec.co.uk/products/EB110ATX/
4717S: Supported
4718
4719SIMTEC EB2410ITX (BAST)
4720P: Ben Dooks
Joe Perches8b58be82009-07-29 15:04:30 -07004721M: Vincent Sanders <support@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722W: http://www.simtec.co.uk/products/EB2410ITX/
4723S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004724F: arch/arm/mach-s3c2410/
4725F: drivers/*/*s3c2410*
4726F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727
Kevin Hilman4c5adde2009-06-19 12:02:33 -07004728TI DAVINCI MACHINE SUPPORT
4729P: Kevin Hilman
4730M: davinci-linux-open-source@linux.davincidsp.com
4731S: Supported
4732F: arch/arm/mach-davinci
4733
Francois Romieu92aab3c2005-07-30 13:11:18 +02004734SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004735M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02004736L: netdev@vger.kernel.org
4737S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004738F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02004739
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004741M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07004743L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004745F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004747SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004748M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01004749L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004751F: Documentation/i2c/busses/i2c-sis96x
4752F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004753
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004755M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03004757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004758F: Documentation/fb/sisfb.txt
4759F: drivers/video/sis/
4760F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761
4762SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004763M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764W: http://www.winischhofer.at/linuxsisusbvga.shtml
4765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004766F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004768SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004769M: Stephen Hemminger <shemminger@linux-foundation.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004770L: netdev@vger.kernel.org
4771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004772F: drivers/net/skge.*
4773F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004774
Christoph Lameter415ad262007-07-26 10:40:56 -07004775SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07004776M: Christoph Lameter <cl@linux-foundation.org>
4777M: Pekka Enberg <penberg@cs.helsinki.fi>
4778M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07004779L: linux-mm@kvack.org
4780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004781F: include/linux/sl?b*.h
4782F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07004783
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004785M: Nicolas Pitre <nico@fluxnic.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004787F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004789SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004790M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004791L: lm-sensors@lm-sensors.org
4792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004793F: Documentation/hwmon/smsc47b397
4794F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004795
Steve Glendinningfd9abb32008-11-05 00:35:37 +00004796SMSC911x ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004797M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00004798L: netdev@vger.kernel.org
4799S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004800F: include/linux/smsc911x.h
4801F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00004802
Steve Glendinning2cb37722008-12-11 20:54:30 -08004803SMSC9420 PCI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004804M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2cb37722008-12-11 20:54:30 -08004805L: netdev@vger.kernel.org
4806S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004807F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08004808
Ben Nizetteb54f2862008-03-13 22:27:30 +11004809SMX UIO Interface
Joe Perches8b58be82009-07-29 15:04:30 -07004810M: Ben Nizette <bn@niasdigital.com>
Ben Nizetteb54f2862008-03-13 22:27:30 +11004811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004812F: drivers/uio/uio_smx.c
Ben Nizetteb54f2862008-03-13 22:27:30 +11004813
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004814SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07004815M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004816L: linux-altix@sgi.com
4817L: linux-ia64@vger.kernel.org
4818W: http://www.sgi.com/altix
4819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004820F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004821
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03004822SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004823M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004824L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004825T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004827F: include/media/v4l2*
4828F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03004829
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004830SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004831M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004833F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004834
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004836M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08004838S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004839F: drivers/md/
4840F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004843M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004844L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004846F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847
Michael Buesch61e115a2007-09-18 15:12:50 -04004848SONICS SILICON BACKPLANE DRIVER (SSB)
Joe Perches8b58be82009-07-29 15:04:30 -07004849M: Michael Buesch <mb@bu3sch.de>
Michael Buesch61e115a2007-09-18 15:12:50 -04004850L: netdev@vger.kernel.org
4851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004852F: drivers/ssb/
4853F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04004854
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004856M: Mattia Dongili <malattia@linux.it>
Mattia Dongili5b181672007-03-12 21:43:57 +01004857L: linux-acpi@vger.kernel.org
4858W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004860F: Documentation/laptops/sony-laptop.txt
4861F: drivers/char/sonypi.c
4862F: drivers/platform/x86/sony-laptop.c
4863F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864
Alex Dubovbaf85322008-02-09 10:20:54 -08004865SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004866M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08004867W: http://tifmxx.berlios.de/
4868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004869F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08004870
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07004872M: Jaroslav Kysela <perex@perex.cz>
4873M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07004874L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07004875W: http://www.alsa-project.org/
4876T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
4877T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07004879F: Documentation/sound/
4880F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07004881F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882
Mark Brownbd903bd2008-11-19 19:16:05 +00004883SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Joe Perches8b58be82009-07-29 15:04:30 -07004884M: Liam Girdwood <lrg@slimlogic.co.uk>
4885M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownbb74a6e2009-05-13 17:23:54 +01004886T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07004887L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01004888W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02004889S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004890F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01004891F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02004892
Sam Ravnborg473321f2009-01-04 15:47:49 -08004893SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07004894M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895L: sparclinux@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004896T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
4897T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004899F: arch/sparc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900
4901SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004902M: Roger Wolff <R.E.Wolff@BitWizard.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004904F: Documentation/serial/specialix.txt
4905F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004907SPI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004908M: David Brownell <dbrownell@users.sourceforge.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004909L: spi-devel-general@lists.sourceforge.net
4910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004911F: Documentation/spi/
4912F: drivers/spi/
4913F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004914
Jim Lewis2752e402006-09-29 02:01:19 -07004915SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07004916M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
4917M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07004918L: netdev@vger.kernel.org
4919S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004920F: Documentation/networking/spider_net.txt
4921F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07004922
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004923SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004924M: Jeremy Kerr <jk@ozlabs.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004925L: linuxppc-dev@ozlabs.org
4926L: cbe-oss-dev@ozlabs.org
4927W: http://www.ibm.com/developerworks/power/cell/
4928S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004929F: Documentation/filesystems/spufs.txt
4930F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004931
Phillip Lougherfc555842009-01-05 08:46:29 +00004932SQUASHFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004933M: Phillip Lougher <phillip@lougher.demon.co.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00004934L: squashfs-devel@lists.sourceforge.net (subscribers-only)
4935W: http://squashfs.org.uk
4936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004937F: Documentation/filesystems/squashfs.txt
4938F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00004939
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07004941M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004943F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944
Linus Torvalds26e9a392008-10-17 09:50:12 -07004945STABLE BRANCH
Joe Perches8b58be82009-07-29 15:04:30 -07004946M: Greg Kroah-Hartman <greg@kroah.com>
4947M: Chris Wright <chrisw@sous-sol.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004948L: stable@kernel.org
4949S: Maintained
4950
Linus Torvalds26e9a392008-10-17 09:50:12 -07004951STAGING SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004952M: Greg Kroah-Hartman <gregkh@suse.de>
Linus Torvalds26e9a392008-10-17 09:50:12 -07004953T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07004954L: devel@driverdev.osuosl.org
Linus Torvalds26e9a392008-10-17 09:50:12 -07004955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004956F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07004957
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004959M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07004960S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004961F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962
4963STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004964S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004965F: drivers/net/wireless/strip.c
4966F: include/linux/if_strip.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967
4968STRADIS MPEG-2 DECODER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004969M: Nathan Laredo <laredo@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970W: http://www.stradis.com/
4971S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004972F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004974SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07004975M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004976W: http://sammy.net/sun3/
4977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004978F: arch/m68k/kernel/*sun3*
4979F: arch/m68k/sun3*/
4980F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004981
Paul Mundt2cbb12a2007-11-19 13:08:37 +09004982SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07004983M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09004984L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985W: http://www.linux-sh.org
Joe Perches54e58812009-04-07 21:08:10 -07004986T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09004987S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09004988F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07004989F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09004990F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004992SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07004993M: Len Brown <len.brown@intel.com>
4994M: Pavel Machek <pavel@ucw.cz>
4995M: "Rafael J. Wysocki" <rjw@sisk.pl>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004996L: linux-pm@lists.linux-foundation.org
4997S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004998F: Documentation/power/
4999F: arch/x86/kernel/acpi/
5000F: drivers/base/power/
5001F: kernel/power/
5002F: include/linux/suspend.h
5003F: include/linux/freezer.h
5004F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005
5006SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005007M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008L: linux-video@atrey.karlin.mff.cuni.cz
5009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005010F: Documentation/svga.txt
5011F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012
5013SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005014M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005016F: Documentation/filesystems/sysv-fs.txt
5017F: fs/sysv/
5018F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019
Alan Cox4e688522008-04-30 00:52:11 -07005020TASKSTATS STATISTICS INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07005021M: Balbir Singh <balbir@linux.vnet.ibm.com>
Alan Cox4e688522008-04-30 00:52:11 -07005022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005023F: Documentation/accounting/taskstats*
5024F: include/linux/taskstats*
5025F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005026
Stephen Hemminger781b4562006-07-10 20:25:29 -07005027TC CLASSIFIER
Joe Perches8b58be82009-07-29 15:04:30 -07005028M: Jamal Hadi Salim <hadi@cyberus.ca>
Stephen Hemminger781b4562006-07-10 20:25:29 -07005029L: netdev@vger.kernel.org
5030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005031F: include/linux/pkt_cls.h
5032F: include/net/pkt_cls.h
5033F: net/sched/
Stephen Hemminger781b4562006-07-10 20:25:29 -07005034
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005035TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005036M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
5037M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005038W: http://tcp-lp-mod.sourceforge.net/
5039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005040F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005041
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005042TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005043M: Alexander Indenbaum <baum@tehutinetworks.net>
5044M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005045L: netdev@vger.kernel.org
5046S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005047F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005048
Alan Cox4e688522008-04-30 00:52:11 -07005049Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07005050M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07005051S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005052F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005053
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005054TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07005055M: Chris Zankel <chris@zankel.net>
Alan Cox4e688522008-04-30 00:52:11 -07005056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005057F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005058
5059THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005060M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07005061L: ibm-acpi-devel@lists.sourceforge.net
5062W: http://ibm-acpi.sourceforge.net
5063W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005064T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005066F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005067
Alex Dubov4020f2d2006-10-04 02:15:37 -07005068TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005069M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005071F: drivers/misc/tifm*
5072F: drivers/mmc/host/tifm_sd.c
5073F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005074
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03005075TI TWL4030 SERIES SOC CODEC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005076M: Peter Ujfalusi <peter.ujfalusi@nokia.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03005077L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5078S: Maintained
5079F: sound/soc/codecs/twl4030*
5080
Per Lidene86eaa32006-01-12 16:45:18 +01005081TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005082M: Per Liden <per.liden@ericsson.com>
5083M: Jon Maloy <jon.maloy@ericsson.com>
5084M: Allan Stephens <allan.stephens@windriver.com>
Per Lidene86eaa32006-01-12 16:45:18 +01005085L: tipc-discussion@lists.sourceforge.net
5086W: http://tipc.sourceforge.net/
5087W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07005088T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01005089S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005090F: include/linux/tipc*.h
5091F: include/net/tipc/
5092F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01005093
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005095M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08005096L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097W: http://sourceforge.net/projects/tlan/
5098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005099F: Documentation/networking/tlan.txt
5100F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005102TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005103M: Kentaro Takeda <takedakn@nttdata.co.jp>
5104M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005105L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
5106L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5107L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5108W: http://tomoyo.sourceforge.jp/
5109T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/
5110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005111F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005112
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03005113TOPSTAR LAPTOP EXTRAS DRIVER
5114M: Herton Ronaldo Krzesinski <herton@mandriva.com.br>
5115S: Maintained
5116F: drivers/platform/x86/topstar-laptop.c
5117
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118TOSHIBA ACPI EXTRAS DRIVER
Johannes Berg15065532009-03-30 12:02:35 +02005119S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005120F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121
5122TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005123M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124L: tlinux-users@tce.toshiba-dme.co.jp
5125W: http://www.buzzard.org.uk/toshiba/
5126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005127F: drivers/char/toshiba.c
5128F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129
Pierre Ossmand719f902009-03-24 21:06:09 +01005130TMIO MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005131M: Ian Molton <ian@mnementh.co.uk>
Pierre Ossmand719f902009-03-24 21:06:09 +01005132S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005133F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01005134
Hugh Dickins98f32602009-05-21 20:33:58 +01005135TMPFS (SHMEM FILESYSTEM)
Joe Perches8b58be82009-07-29 15:04:30 -07005136M: Hugh Dickins <hugh.dickins@tiscali.co.uk>
Hugh Dickins98f32602009-05-21 20:33:58 +01005137L: linux-mm@kvack.org
5138S: Maintained
5139F: include/linux/shmem_fs.h
5140F: mm/shmem.c
5141
Alan Cox4e688522008-04-30 00:52:11 -07005142TPM DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005143M: Debora Velarde <debora@linux.vnet.ibm.com>
5144M: Rajiv Andrade <srajiv@linux.vnet.ibm.com>
Alan Cox4e688522008-04-30 00:52:11 -07005145W: http://tpmdd.sourceforge.net
Joe Perches8b58be82009-07-29 15:04:30 -07005146M: Marcel Selhorst <m.selhorst@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08005147W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07005148L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07005149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005150F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07005151
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07005153M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07005154T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155S: Maintained
5156
Alan Cox4e688522008-04-30 00:52:11 -07005157TTY LAYER
Greg Kroah-Hartman57d7f282009-07-31 21:28:16 -07005158M: Greg Kroah-Hartman <gregkh@suse.de>
5159S: Maintained
5160T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Alan Coxe3288772009-07-07 16:39:54 +01005161F: drivers/char/tty_*
5162F: drivers/serial/serial_core.c
5163F: include/linux/serial_core.h
5164F: include/linux/serial.h
5165F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07005166
Grant Grundler740db6d2008-02-17 11:53:49 -07005167TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005168M: Grant Grundler <grundler@parisc-linux.org>
5169M: Kyle McMartin <kyle@mcmartin.ca>
Grant Grundler740db6d2008-02-17 11:53:49 -07005170L: netdev@vger.kernel.org
5171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005172F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173
5174TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07005175M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176L: vtun@office.satix.net
5177W: http://vtun.sourceforge.net/tun
5178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005179F: Documentation/networking/tuntap.txt
5180F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005182TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005183M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005185F: drivers/tc/
5186F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005187
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005189M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190L: linux-scsi@vger.kernel.org
5191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005192F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005194UBI FILE SYSTEM (UBIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07005195M: Artem Bityutskiy <dedekind@infradead.org>
5196M: Adrian Hunter <adrian.hunter@nokia.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005197L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005198T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005199W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005201F: Documentation/filesystems/ubifs.txt
5202F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005203
Alan Coxcc2020e2008-05-19 14:21:51 +01005204UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07005205M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01005206W: http://www.uclinux.org/
5207L: uclinux-dev@uclinux.org (subscribers-only)
5208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005209F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005210
Robert P. J. Day14fadca2009-04-21 12:24:47 -07005211UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07005212M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01005213W: http://uclinux-h8.sourceforge.jp/
5214S: Supported
5215
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005217M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218W: http://linux-udf.sourceforge.net
5219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005220F: Documentation/filesystems/udf.txt
5221F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222
Alan Coxcc2020e2008-05-19 14:21:51 +01005223UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005224M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01005225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005226F: Documentation/filesystems/ufs.txt
5227F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005228
David Vrabel18332a82008-09-17 16:34:44 +01005229ULTRA-WIDEBAND (UWB) SUBSYSTEM:
Joe Perches8b58be82009-07-29 15:04:30 -07005230M: David Vrabel <david.vrabel@csr.com>
David Vrabel18332a82008-09-17 16:34:44 +01005231L: linux-usb@vger.kernel.org
5232S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005233F: drivers/uwb/*
5234F: include/linux/uwb.h
5235F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005236
Linus Torvalds1da177e2005-04-16 15:20:36 -07005237UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005238M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239W: http://www.kernel.dk
5240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005241F: Documentation/cdrom/
5242F: drivers/cdrom/cdrom.c
5243F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005245UNSORTED BLOCK IMAGES (UBI)
Joe Perches8b58be82009-07-29 15:04:30 -07005246M: Artem Bityutskiy <dedekind@infradead.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005247W: http://www.linux-mtd.infradead.org/
5248L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005249T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005250S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005251F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07005252F: include/linux/mtd/ubi.h
5253F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005254
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255USB ACM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005256M: Oliver Neukum <oliver@neukum.name>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005257L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005259F: Documentation/usb/acm.txt
5260F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261
5262USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07005263M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005264L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005266F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268USB CDC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005269M: Greg Kroah-Hartman <greg@kroah.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005270L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271S: Maintained
5272W: http://www.kroah.com/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005273F: drivers/net/usb/cdc_*.c
5274F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005276USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005277M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005278L: linux-usb@vger.kernel.org
5279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005280F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005281
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005282USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005283M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02005284L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005285W: http://www.linux-usb.org/usbnet
5286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005287F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005288
Alan Coxcc2020e2008-05-19 14:21:51 +01005289USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005290M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01005291L: rio500-users@lists.sourceforge.net
5292W: http://rio500.sourceforge.net
5293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005294F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005295
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296USB EHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005297M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005298L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005299S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005300F: Documentation/usb/ehci.txt
5301F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302
Luca Risolia7ce08c92006-01-11 02:06:59 +00005303USB ET61X[12]51 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005304M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005305L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005306L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005307T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00005308W: http://www.linux-projects.org
5309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005310F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00005311
David Brownell69ae9e32006-11-14 02:03:31 -08005312USB GADGET/PERIPHERAL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005313M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005314L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005315W: http://www.linux-usb.org/gadget
5316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005317F: drivers/usb/gadget/
5318F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08005319
Jiri Kosina2dea64b2007-07-11 12:12:11 +02005320USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07005321M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005322L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005323T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005325F: Documentation/usb/hiddev.txt
5326F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327
Olav Kongas959eea22005-11-03 17:38:14 +02005328USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005329M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005330L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02005331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005332F: drivers/usb/host/isp116x*
5333F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02005334
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335USB KAWASAKI LSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005336M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005337L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005339F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340
5341USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005342M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005343L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08005344L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345S: Maintained
5346W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005347F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348
5349USB OHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005350M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005351L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005352S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005353F: Documentation/usb/ohci.txt
5354F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355
Matthias Urlichsba460e42005-07-14 00:33:47 -07005356USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005357M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005358L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07005359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005360F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07005361
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362USB OV511 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005363M: Mark McClelland <mmcclell@bigfoot.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005364L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365W: http://alpha.dyndns.org/ov511/
5366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005367F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005368
5369USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005370M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005371L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005372L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373W: http://pegasus2.sourceforge.net/
5374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005375F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005377USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07005378M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005379L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005380S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005381F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382
5383USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005384M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005385L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005386L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387W: http://pegasus2.sourceforge.net/
5388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005389F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390
5391USB SE401 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005392M: Jeroen Vreeken <pe1rxq@amsat.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005393L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394W: http://www.chello.nl/~j.vreeken/se401/
5395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005396F: Documentation/video4linux/se401.txt
5397F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398
Alan Cox4e688522008-04-30 00:52:11 -07005399USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005400M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005401L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005403F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07005404
5405USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005406M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005407L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005408S: Maintained
5409W: http://geocities.com/i0xox0i
5410W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07005411F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07005412
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005414M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415W: http://www.reiner-sct.de/support/treiber_cyberjack.php
5416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005417F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005418
5419USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005420M: Peter Berger <pberger@brimson.com>
5421M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005422L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005424F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425
5426USB SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005427M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005428L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005430F: Documentation/usb/usb-serial.txt
5431F: drivers/usb/serial/generic.c
5432F: drivers/usb/serial/usb-serial.c
5433F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005434
Linus Torvalds1da177e2005-04-16 15:20:36 -07005435USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005436M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005437L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005439F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440
5441USB SERIAL KEYSPAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005442M: Greg Kroah-Hartman <greg@kroah.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005443L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444W: http://www.kroah.com/linux/
5445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005446F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447
5448USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005449M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005450L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005451W: http://www.connecttech.com
5452S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005453F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005454
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005455USB SMSC95XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005456M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005457L: netdev@vger.kernel.org
5458S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005459F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005460
Luca Risoliaf423b9a2007-03-26 16:12:04 -03005461USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005462M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005463L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005464L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005465T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466W: http://www.linux-projects.org
5467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005468F: Documentation/video4linux/sn9c102.txt
5469F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470
5471USB SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005472M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005473L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08005475T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005477F: Documentation/usb/
5478F: drivers/net/usb/
5479F: drivers/usb/
5480F: include/linux/usb.h
5481F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482
5483USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005484M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005485L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005487F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488
David Brownell69ae9e32006-11-14 02:03:31 -08005489USB "USBNET" DRIVER FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07005490M: David Brownell <dbrownell@users.sourceforge.net>
Peter Korsgaard043600a2007-06-27 21:18:18 +02005491L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005492W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07005493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005494F: drivers/net/usb/usbnet.c
5495F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496
Laurent Pinchartc0efd232008-06-30 15:04:50 -03005497USB VIDEO CLASS
Joe Perches8b58be82009-07-29 15:04:30 -07005498M: Laurent Pinchart <laurent.pinchart@skynet.be>
Jiri Slabya67534a2008-12-10 09:09:27 -03005499L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005500L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005501T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchartc0efd232008-06-30 15:04:50 -03005502W: http://linux-uvc.berlios.de
5503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005504F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03005505
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506USB W996[87]CF DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005507M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005508L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005509L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005510T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511W: http://www.linux-projects.org
5512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005513F: Documentation/video4linux/w9968cf.txt
5514F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02005516USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07005517M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02005518L: linux-wireless@vger.kernel.org
5519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005520F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02005521
Sarah Sharpeb6bab12009-04-29 19:07:13 -07005522USB XHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005523M: Sarah Sharp <sarah.a.sharp@intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07005524L: linux-usb@vger.kernel.org
5525S: Supported
5526
Luca Risolia60f78052006-02-06 16:29:35 +00005527USB ZC0301 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005528M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005529L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005530L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005531T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00005532W: http://www.linux-projects.org
5533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005534F: Documentation/video4linux/zc0301.txt
5535F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00005536
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537USB ZD1201 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005538M: Jeroen Vreeken <pe1rxq@amsat.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005539L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540W: http://linux-lc100020.sourceforge.net
5541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005542F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005543
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005544USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005545M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005546L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005547L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005548T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005549W: http://royale.zerezo.com/zr364xx/
5550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005551F: Documentation/video4linux/zr364xx.txt
5552F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005553
Randy Dunlape7839f22008-10-12 16:11:45 -07005554USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07005555M: Jeff Dike <jdike@addtoit.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556L: user-mode-linux-devel@lists.sourceforge.net
5557L: user-mode-linux-user@lists.sourceforge.net
5558W: http://user-mode-linux.sourceforge.net
5559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005560F: Documentation/uml/
5561F: arch/um/
5562F: fs/hostfs/
5563F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005564
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01005565USERSPACE I/O (UIO)
Joe Perches8b58be82009-07-29 15:04:30 -07005566M: "Hans J. Koch" <hjk@linutronix.de>
5567M: Greg Kroah-Hartman <gregkh@suse.de>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01005568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005569F: Documentation/DocBook/uio-howto.tmpl
5570F: drivers/uio/
5571F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01005572
Karel Zakf899b0a2008-05-23 13:04:21 -07005573UTIL-LINUX-NG PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07005574M: Karel Zak <kzak@redhat.com>
Karel Zakf899b0a2008-05-23 13:04:21 -07005575L: util-linux-ng@vger.kernel.org
5576W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07005577T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07005578S: Maintained
5579
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07005580UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005581M: Michal Januszewski <spock@gentoo.org>
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07005582L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
5583W: http://dev.gentoo.org/~spock/projects/uvesafb/
5584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005585F: Documentation/fb/uvesafb.txt
5586F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07005587
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005588VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005589M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005591F: Documentation/filesystems/vfat.txt
5592F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005593
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005595M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005597F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598
Jean Delvare32c0a522005-09-22 21:47:58 +02005599VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005600M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01005601L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02005602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005603F: Documentation/i2c/busses/i2c-viapro
5604F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02005605
Harald Weltef0bf7f62009-06-17 20:22:39 +02005606VIA SD/MMC CARD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005607M: Joseph Chan <JosephChan@via.com.tw>
5608M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02005609S: Maintained
5610F: drivers/mmc/host/via-sdmmc.c
5611
Joseph Chan69e4a7c2008-10-15 22:03:31 -07005612VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005613M: Joseph Chan <JosephChan@via.com.tw>
5614M: Scott Fang <ScottFang@viatech.com.cn>
Joseph Chan69e4a7c2008-10-15 22:03:31 -07005615L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
5616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005617F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07005618
Francois Romieu01f20732007-01-26 00:57:17 -08005619VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005620M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08005621L: netdev@vger.kernel.org
5622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005623F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005624
Patrick McHardybe7f8272007-10-23 20:26:36 -07005625VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07005626M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07005627L: netdev@vger.kernel.org
5628S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005629F: drivers/net/macvlan.c
5630F: include/linux/if_*vlan.h
5631F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07005632
Florian Fainelli55e331c2009-06-16 15:33:53 -07005633VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07005634M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli55e331c2009-06-16 15:33:53 -07005635L: openwrt-devel@lists.openwrt.org
5636S: Maintained
5637F: drivers/vlynq/vlynq.c
5638F: include/linux/vlynq.h
5639
Shreyas Bhatewarad1a890f2009-10-13 00:15:51 -07005640VMWARE VMXNET3 ETHERNET DRIVER
5641M: Shreyas Bhatewara <sbhatewara@vmware.com>
5642M: VMware, Inc. <pv-drivers@vmware.com>
5643L: netdev@vger.kernel.org
5644S: Maintained
5645F: drivers/net/vmxnet3/
5646
Liam Girdwoode53e86c2008-07-10 15:48:00 +01005647VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07005648M: Liam Girdwood <lrg@slimlogic.co.uk>
5649M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01005650W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00005651W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07005652T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01005653S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005654F: drivers/regulator/
5655F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01005656
Juerg Haefligerab413192006-09-24 20:54:04 +02005657VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005658M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02005659L: lm-sensors@lm-sensors.org
5660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005661F: Documentation/hwmon/vt1211
5662F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02005663
Roger Lucas1de9e372005-11-26 20:20:05 +01005664VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005665M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01005666L: lm-sensors@lm-sensors.org
5667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005668F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01005669
Linus Torvalds1da177e2005-04-16 15:20:36 -07005670W1 DALLAS'S 1-WIRE BUS
Joe Perches8b58be82009-07-29 15:04:30 -07005671M: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005673F: Documentation/w1/
5674F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005675
Charles Spirakis13927072006-07-05 18:05:15 +02005676W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005677M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02005678L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04005679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005680F: Documentation/hwmon/w83791d
5681F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02005682
Rudolf Marek61db0112006-12-12 18:18:30 +01005683W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005684M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01005685L: lm-sensors@lm-sensors.org
5686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005687F: Documentation/hwmon/w83793
5688F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01005689
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005691M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005693F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694
Wim Van Sebroeck35277612006-01-15 21:21:14 +01005695WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005696M: Wim Van Sebroeck <wim@iguana.be>
Joe Perches54e58812009-04-07 21:08:10 -07005697T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01005698S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005699F: Documentation/watchdog/
5700F: drivers/watchdog/
5701F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01005702
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
Joe Perches8b58be82009-07-29 15:04:30 -07005704M: Jean Tourrilhes <jt@hpl.hp.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005705L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
5707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005708F: Documentation/networking/wavelan.txt
5709F: drivers/net/wireless/wavelan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005710
5711WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005712M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713L: linux-scsi@vger.kernel.org
5714S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005715F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716
David Härdemane258b802009-09-21 17:04:53 -07005717WINBOND CIR DRIVER
5718P: David Härdeman
5719M: david@hardeman.nu
5720S: Maintained
5721F: drivers/input/misc/winbond-cir.c
5722
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005723WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07005724M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005725M: linux-wimax@intel.com
5726L: wimax@linuxwimax.org
5727S: Supported
5728W: http://linuxwimax.org
5729
David Vrabel18332a82008-09-17 16:34:44 +01005730WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005731M: David Vrabel <david.vrabel@csr.com>
David Vrabel18332a82008-09-17 16:34:44 +01005732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005733F: include/linux/wlp.h
5734F: drivers/uwb/wlp/
David Vrabel18332a82008-09-17 16:34:44 +01005735
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05005736WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005737M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05005738S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005739F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05005740
Kalle Valo834da342009-07-21 14:26:08 +03005741WL1251 WIRELESS DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005742M: Kalle Valo <kalle.valo@nokia.com>
Kalle Valo834da342009-07-21 14:26:08 +03005743L: linux-wireless@vger.kernel.org
5744W: http://wireless.kernel.org
5745T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
5746S: Maintained
Luciano Coelho5e68ff62009-08-10 11:15:13 +03005747F: drivers/net/wireless/wl12xx/*
5748X: drivers/net/wireless/wl12xx/wl1271*
5749
5750WL1271 WIRELESS DRIVER
5751M: Luciano Coelho <luciano.coelho@nokia.com>
5752L: linux-wireless@vger.kernel.org
5753W: http://wireless.kernel.org
5754T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
5755S: Maintained
5756F: drivers/net/wireless/wl12xx/wl1271*
Kalle Valo834da342009-07-21 14:26:08 +03005757
Linus Torvalds1da177e2005-04-16 15:20:36 -07005758WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005759M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07005760L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03005761W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07005762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005763F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005764
Mark Brownfebf1df2008-04-02 00:51:09 -04005765WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005766M: Mark Brown <broonie@opensource.wolfsonmicro.com>
5767M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04005768L: linux-input@vger.kernel.org
5769T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
5770W: http://opensource.wolfsonmicro.com/node/7
5771S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005772F: drivers/input/touchscreen/*wm97*
5773F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04005774
Mark Brownb75ea162009-07-02 16:43:08 +01005775WOLFSON MICROELECTRONICS PMIC DRIVERS
5776P: Mark Brown
5777M: broonie@opensource.wolfsonmicro.com
5778L: linux-kernel@vger.kernel.org
5779T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
5780W: http://opensource.wolfsonmicro.com/node/8
5781S: Supported
5782F: drivers/leds/leds-wm83*.c
5783F: drivers/mfd/wm8*.c
5784F: drivers/power/wm83*.c
5785F: drivers/rtc/rtc-wm83*.c
5786F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01005787F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01005788F: drivers/watchdog/wm83*_wdt.c
Mark Brown3860e6c2009-09-09 14:46:43 +01005789F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01005790F: include/linux/mfd/wm8350/
5791F: include/linux/mfd/wm8400/
5792F: sound/soc/codecs/wm8350.c
5793F: sound/soc/codecs/wm8400.c
5794
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795X.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005796M: Henner Eisen <eis@baty.hanse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005797L: linux-x25@vger.kernel.org
5798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005799F: Documentation/networking/x25*
5800F: include/net/x25*
5801F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005803X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07005804M: Thomas Gleixner <tglx@linutronix.de>
5805M: Ingo Molnar <mingo@redhat.com>
5806M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08005807M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005808T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005810F: Documentation/x86/
5811F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005812
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02005813XEN HYPERVISOR INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07005814M: Jeremy Fitzhardinge <jeremy@xensource.com>
5815M: Chris Wright <chrisw@sous-sol.org>
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02005816L: virtualization@lists.osdl.org
5817L: xen-devel@lists.xensource.com
5818S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005819F: arch/x86/xen/
5820F: drivers/*/xen-*front.c
5821F: drivers/xen/
5822F: arch/x86/include/asm/xen/
5823F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02005824
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825XFS FILESYSTEM
5826P: Silicon Graphics Inc
Alex Elderf08a59f2009-09-11 09:51:25 -05005827M: Alex Elder <aelder@sgi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005828M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10005829L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07005831T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005832S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005833F: Documentation/filesystems/xfs.txt
5834F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02005836XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005837M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02005838W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02005839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005840F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02005841
Peter Korsgaard238b8722006-12-06 20:35:17 -08005842XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005843M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08005844L: linux-serial@vger.kernel.org
5845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005846F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08005847
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07005849M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850L: linux-hams@vger.kernel.org
5851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005852F: drivers/net/hamradio/yam*
5853F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005854
Henkaf64a5e2005-10-12 15:02:56 +02005855YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005856M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02005857L: usbb2k-api-dev@nongnu.org
5858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005859F: Documentation/input/yealink.txt
5860F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02005861
Linus Torvalds1da177e2005-04-16 15:20:36 -07005862Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07005863M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864W: http://yaina.de/jreuter/
5865W: http://www.qsl.net/dl1bke/
5866L: linux-hams@vger.kernel.org
5867S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005868F: Documentation/networking/z8530drv.txt
5869F: drivers/net/hamradio/*scc.c
5870F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005871
Daniel Drake7c0c3af2006-07-16 13:55:17 +01005872ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005873M: Daniel Drake <dsd@gentoo.org>
5874M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01005875W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07005876L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01005877L: zd1211-devs@lists.sourceforge.net (subscribers-only)
5878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005879F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01005880
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005882L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03005883L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005884W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03005885T: Mercurial http://linuxtv.org/hg/v4l-dvb
5886S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005887F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07005889ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005890M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07005891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005892F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07005893
Linus Torvalds1da177e2005-04-16 15:20:36 -07005894THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07005895M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07005896L: linux-kernel@vger.kernel.org
Joe Perchescfe81f72009-04-07 21:09:58 -07005897T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07005899F: *
5900F: */