blob: f8f9c4f5f7d6808d44f1379a28fbcfb0c329fc38 [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
Len Brown8b59a452007-01-08 19:03:28 -0500260ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700261M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500262L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300263W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500264S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700265F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700266
Len Brown359acec2007-02-10 01:59:24 -0500267ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700268M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500269L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300270W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500271S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700272F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500273
Carlos Corbachobff431e2008-02-05 02:17:04 +0000274ACPI WMI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700275M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200276L: linux-acpi@vger.kernel.org
277W: http://www.lesswatts.org/projects/acpi/
278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700279F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000280
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100281AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700282M: Kyle McMartin <kyle@mcmartin.ca>
283M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200284W: http://wiki.parisc-linux.org/AD1889
285L: linux-parisc@vger.kernel.org
286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700287F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700290M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200291L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700293F: Documentation/hwmon/adm1025
294F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Corentin Labbecae2caa2007-02-14 21:15:04 +0100296ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700297M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100298L: lm-sensors@lm-sensors.org
299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700300F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100301
Michael Wucc0b88c2007-08-31 01:15:25 -0400302ADM8211 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700303M: Michael Wu <flamingice@sourmilk.net>
Michael Wucc0b88c2007-08-31 01:15:25 -0400304L: linux-wireless@vger.kernel.org
305W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -0700306T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Michael Wucc0b88c2007-08-31 01:15:25 -0400307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700308F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700311M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700313F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400315ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700316M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400317L: linux-scsi@vger.kernel.org
318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700319F: Documentation/scsi/advansys.txt
320F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700323M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700325F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327AFFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700328M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700330F: Documentation/filesystems/affs.txt
331F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700333AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700334M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700335L: linux-afs@lists.infradead.org
336S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700337F: fs/afs/
338F: include/net/af_rxrpc.h
339F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700342M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700343T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700345F: drivers/char/agp/
346F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700349M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350L: linux-scsi@vger.kernel.org
351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700352F: drivers/scsi/aha152x*
353F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Hannes Reinecke64624d42007-10-19 10:32:29 +0200355AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700356M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200357L: linux-scsi@vger.kernel.org
358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700359F: drivers/scsi/aic7xxx/
360F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200361
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700362AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700363M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700364L: linux-aio@kvack.org
365S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700366F: fs/aio.c
367F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700370M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700371L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372W: http://www.linux-usb.org/SpeedTouch/
373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700374F: drivers/usb/atm/speedtch.c
375F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Pierre Ossman272f1332007-05-14 21:25:26 +0200377ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700378M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700380F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200381
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000382ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700383M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100384L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700386F: Documentation/i2c/busses/i2c-ali1563
387F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700390M: Richard Henderson <rth@twiddle.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391S: Odd Fixes for 2.4; Maintained for 2.6.
Joe Perches8b58be82009-07-29 15:04:30 -0700392M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393S: Maintained for 2.4; PCI support for 2.6.
Cheng Renquana9406692009-03-31 15:23:35 -0700394L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700395F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700397AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700398M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700399L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700400S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700401F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700402
Jordan Crousef90b8112006-01-06 00:12:14 -0800403AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100404P: Jordan Crouse
Jordan Crouse67d76712008-05-12 14:02:22 -0700405L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800406W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
407S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700408F: arch/x86/kernel/geode_32.c
409F: drivers/char/hw_random/geode-rng.c
410F: drivers/crypto/geode*
411F: drivers/video/geode/
412F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800413
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200414AMD IOMMU (AMD-VI)
Joe Perches8b58be82009-07-29 15:04:30 -0700415M: Joerg Roedel <joerg.roedel@amd.com>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200416L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -0700417T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200418S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700419F: arch/x86/kernel/amd_iommu*.c
420F: arch/x86/include/asm/amd_iommu*.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200421
Peter Orubae7f5b302008-07-28 18:44:11 +0200422AMD MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700423M: Andreas Herrmann <andreas.herrmann3@amd.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700424L: amd64-microcode@amd64.org
425S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700426F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200427
Stelian Pop284f42b2006-12-12 18:18:31 +0100428AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700429M: Stelian Pop <stelian@popies.net>
430M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100431S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700432F: drivers/hwmon/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100433
Tom Tuckerf94b5332006-09-22 15:22:48 -0700434AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700435M: Tom Tucker <tom@opengridcomputing.com>
436M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700437L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700439F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700440
Johannes Berg42269062006-07-25 16:15:50 +0200441AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700442M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg42269062006-07-25 16:15:50 +0200443L: linuxppc-dev@ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700444L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700446F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448APM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700449M: Stephen Rothwell <sfr@canb.auug.org.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450L: linux-laptop@vger.kernel.org
451W: http://www.canb.auug.org.au/~sfr/
452S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700453F: arch/x86/kernel/apm_32.c
454F: include/linux/apm_bios.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700456APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700457M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700458L: linux-input@vger.kernel.org
459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700460F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700461
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700462APPLE SMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700463M: Nicolas Boichat <nicolas@boichat.ch>
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700464L: mactel-linux-devel@lists.sourceforge.net
465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700466F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700469M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700471F: drivers/net/appletalk/
472F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400474APPLETOUCH TOUCHPAD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700475M: Johannes Berg <johannes@sipsolutions.net>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -0400476L: linux-input@vger.kernel.org
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700478F: Documentation/input/appletouch.txt
479F: drivers/input/mouse/appletouch.c
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400480
Jaya Kumar1154ea72005-06-21 17:17:04 -0700481ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700482M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700484F: drivers/video/arcfb.c
485F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700488M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700490F: arch/arm/lib/floppydma.S
491F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Russell Kingd4275352009-04-16 14:05:27 +0100493ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700494M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700495L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100496W: http://www.arm.linux.org.uk/
497S: Maintained
498F: arch/arm/
499
Russell King2761f5c2007-05-24 06:56:08 +0200500ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200501S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700502F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200503
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800504ARM/ADI ROADRUNNER MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700505M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700506L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800507S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700508F: arch/arm/mach-ixp23xx/
509F: arch/arm/mach-ixp23xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800510
511ARM/ADS SPHERE 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
515
Sergey Lapin9c784f92008-08-03 02:29:48 +0100516ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700517M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700518L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100519S: Maintained
520
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800521ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700522M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700523L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800524S: Maintained
525
Andrew Victord4a89c72006-12-04 13:56:21 +0100526ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700527M: Andrew Victor <linux@maxim.org.za>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700528L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200529W: http://maxim.org.za/at91_26.html
530S: Maintained
Andrew Victord4a89c72006-12-04 13:56:21 +0100531
Leo Chen57a473f2009-08-12 22:08:48 +0100532ARM/BCMRING ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100533M: Leo Chen <leochen@broadcom.com>
534M: Scott Branden <sbranden@broadcom.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700535L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800536S: Maintained
Leo Chen57a473f2009-08-12 22:08:48 +0100537F: arch/arm/mach-bcmring
538
539ARM/BCMRING MTD NAND DRIVER
Russell Kingddd559b2009-09-12 12:02:26 +0100540M: Leo Chen <leochen@broadcom.com>
541M: Scott Branden <sbranden@broadcom.com>
Leo Chen57a473f2009-08-12 22:08:48 +0100542L: linux-mtd@lists.infradead.org
543S: Maintained
544F: drivers/mtd/nand/bcm_umi_nand.c
545F: drivers/mtd/nand/bcm_umi_bch.c
546F: drivers/mtd/nand/bcm_umi_hamming.c
547F: drivers/mtd/nand/nand_bcm_umi.h
548
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800549ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100550M: Hartley Sweeten <hsweeten@visionengravers.com>
551M: Ryan Mallon <ryan@bluewatersys.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700552L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800553S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100554F: arch/arm/mach-ep93xx/
555F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800556
557ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700558M: Lennert Buytenhek <kernel@wantstofly.org>
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
561
Russell Kingd4275352009-04-16 14:05:27 +0100562ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700563M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700564L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100565F: arch/arm/common/clkdev.c
566F: arch/arm/include/asm/clkdev.h
567
Mike Rapoportd48134e2008-08-20 09:03:26 +0100568ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700569M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700570L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100571S: Maintained
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700574M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575S: Maintained
576
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200577ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700578M: Paulius Zaleckas <paulius.zaleckas@teltonika.lt>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700579L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -0700580T: git git://gitorious.org/linux-gemini/mainline.git
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200581S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300582F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200583
Russell Kingd4275352009-04-16 14:05:27 +0100584ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700585M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700586L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100587W: http://www.arm.linux.org.uk/
588S: Maintained
589F: arch/arm/mach-ebsa110/
590F: drivers/net/arm/am79c961a.*
591
Russell Kinga9da4f72008-07-12 21:42:04 +0100592ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700593M: Daniel Ribeiro <drwyrm@gmail.com>
594M: Stefan Schmidt <stefan@openezx.org>
595M: Harald Welte <laforge@openezx.org>
Russell Kinga9da4f72008-07-12 21:42:04 +0100596L: openezx-devel@lists.openezx.org (subscribers-only)
597W: http://www.openezx.org/
598S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200599T: topgit git://git.openezx.org/openezx.git
600F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100601
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200602ARM/FARADAY FA526 PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700603M: Paulius Zaleckas <paulius.zaleckas@teltonika.lt>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700604L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200605S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300606F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200607
Russell Kingd4275352009-04-16 14:05:27 +0100608ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700609M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700610L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100611W: http://www.arm.linux.org.uk/
612S: Maintained
613F: arch/arm/include/asm/hardware/dec21285.h
614F: arch/arm/mach-footbridge/
615
Sascha Hauer86183a52008-07-24 23:50:35 +0200616ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700617M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700618L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200619S: Maintained
620
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800621ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700622M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700623L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800624S: Maintained
625
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100626ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700627M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700628L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100629S: Maintained
630
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200631ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700632M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200633S: Maintained
634F: arch/arm/mach-pxa/hx4700.c
635F: arch/arm/mach-pxa/include/mach/hx4700.h
636
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100637ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700638M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200639W: www.jlime.com
640S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700641T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
642F: arch/arm/mach-sa1100/jornada720.c
643F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100644
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800645ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700646M: Lennert Buytenhek <kernel@wantstofly.org>
647M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700648L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamse2bdb172007-01-02 18:32:37 +0100649S: Supported
650
651ARM/INTEL IOP33X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700652M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700653L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamse2bdb172007-01-02 18:32:37 +0100654S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800655
656ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700657M: Lennert Buytenhek <kernel@wantstofly.org>
658M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700659L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamse2bdb172007-01-02 18:32:37 +0100660S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800661
662ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700663M: Lennert Buytenhek <kernel@wantstofly.org>
664M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700665L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamse2bdb172007-01-02 18:32:37 +0100666S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800667
668ARM/INTEL IXP2000 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700669M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700670L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800671S: Maintained
672
673ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700674M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700675L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800676S: Maintained
677
678ARM/INTEL IXP23XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700679M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700680L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800681S: Maintained
682
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200683ARM/INTEL IXP4XX ARM ARCHITECTURE
684M: Imre Kaloz <kaloz@openwrt.org>
685M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100686L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200687S: Maintained
688F: arch/arm/mach-ixp4xx/
689
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800690ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700691M: Lennert Buytenhek <kernel@wantstofly.org>
692M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700693L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamse2bdb172007-01-02 18:32:37 +0100694S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800695
696ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700697M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700698L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800699S: Maintained
700
701ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700702M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700703L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800704S: Maintained
705
Philipp Zabel3b8861712008-07-09 21:27:15 +0100706ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700707M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100708S: Maintained
709
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400710ARM/Marvell Loki/Kirkwood/MV78xx0/Orion SOC support
711M: Lennert Buytenhek <buytenh@marvell.com>
712M: Nicolas Pitre <nico@marvell.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700713L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400714T: git git://git.marvell.com/orion
715S: Maintained
716F: arch/arm/mach-loki/
717F: arch/arm/mach-kirkwood/
718F: arch/arm/mach-mv78xx0/
719F: arch/arm/mach-orion5x/
720F: arch/arm/plat-orion/
721
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200722ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700723M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700724L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200725F: arch/arm/mach-pxa/mioa701.c
726S: Maintained
727
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100728ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700729M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100730S: Maintained
731
Andy Green9d762952009-05-19 06:41:42 -0300732ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700733M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300734L: openmoko-kernel@lists.openmoko.org (subscribers-only)
735W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
736S: Supported
737
Dirk Opfer8459c152005-11-06 14:27:52 +0000738ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700739M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
740M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000741S: Maintained
742
Marek Vasut5d783a22009-07-16 13:26:48 +0200743ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -0700744M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +0200745L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100746W: http://hackndev.com
747S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700748F: arch/arm/mach-pxa/include/mach/palmtx.h
749F: arch/arm/mach-pxa/palmtx.c
750F: arch/arm/mach-pxa/include/mach/palmt5.h
751F: arch/arm/mach-pxa/palmt5.c
752F: arch/arm/mach-pxa/include/mach/palmld.h
753F: arch/arm/mach-pxa/palmld.c
754F: arch/arm/mach-pxa/include/mach/palmte2.h
755F: arch/arm/mach-pxa/palmte2.c
756F: arch/arm/mach-pxa/include/mach/palmtc.h
757F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100758
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200759ARM/PALM TREO 680 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700760M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +0200761L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200762W: http://hackndev.com
763S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700764F: arch/arm/mach-pxa/include/mach/treo680.h
765F: arch/arm/mach-pxa/treo680.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200766
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100767ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700768M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +0200769L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -0700770W: http://hackndev.com
771S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700772F: arch/arm/mach-pxa/include/mach/palmz72.h
773F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700776M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
778S: Maintained
779
780ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700781M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700782L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783W: http://www.arm.linux.org.uk/
784S: Maintained
785
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800786ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700787M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700788L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800789S: Maintained
790
Russell Kingd4275352009-04-16 14:05:27 +0100791ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700792M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700793L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100794W: http://www.arm.linux.org.uk/
795S: Maintained
796F: arch/arm/common/time-acorn.c
797F: arch/arm/include/asm/hardware/entry-macro-iomd.S
798F: arch/arm/include/asm/hardware/ioc.h
799F: arch/arm/include/asm/hardware/iomd.h
800F: arch/arm/include/asm/hardware/memc.h
801F: arch/arm/mach-rpc/
802F: drivers/net/arm/ether*
803F: drivers/scsi/arm/
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700806M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807W: http://www.shark-linux.de/shark.html
808S: Maintained
809
Ben Dooksb21477f2009-06-13 10:46:34 +0100810ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700811M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700812L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100813W: http://www.fluff.org/ben/linux/
814S: Maintained
815F: arch/arm/plat-s3c/
816F: arch/arm/plat-s3c24xx/
817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818ARM/S3C2410 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700819M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700820L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821W: http://www.fluff.org/ben/linux/
822S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +0100823F: arch/arm/mach-s3c2410/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825ARM/S3C2440 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-s3c2440/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Ben Dooksb21477f2009-06-13 10:46:34 +0100832ARM/S3C2442 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)
Ben Dooksb21477f2009-06-13 10:46:34 +0100835W: http://www.fluff.org/ben/linux/
836S: Maintained
837F: arch/arm/mach-s3c2442/
838
839ARM/S3C2443 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-s3c2443/
845
846ARM/S3C6400 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-s3c6400/
852
853ARM/S3C6410 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-s3c6410/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800860ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700861M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700862L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800863S: Maintained
864
865ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700866M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700867L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800868S: Maintained
869
wanzongshun98ad6e32009-02-13 06:04:32 +0100870ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700871M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700872L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -0700873W: http://www.mcuos.com
874S: Maintained
wanzongshun98ad6e32009-02-13 06:04:32 +0100875
Russell Kingd4275352009-04-16 14:05:27 +0100876ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700877M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700878L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100879W: http://www.arm.linux.org.uk/
880S: Maintained
881F: arch/arm/vfp/
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883ASUS ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700884M: Corentin Chary <corentincj@iksaif.net>
885M: Karol Kozimor <sziwan@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +0000887W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700889F: arch/x86/kernel/acpi/boot.c
890F: drivers/platform/x86/asus_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400892ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700893M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400894L: lm-sensors@lm-sensors.org
895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700896F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400897
Corentin Chary85091b72007-01-26 14:04:30 +0100898ASUS LAPTOP EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700899M: Corentin Chary <corentincj@iksaif.net>
Corentin Chary85091b72007-01-26 14:04:30 +0100900L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +0000901W: http://acpi4asus.sf.net
Corentin Chary85091b72007-01-26 14:04:30 +0100902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700903F: drivers/platform/x86/asus-laptop.c
Corentin Chary85091b72007-01-26 14:04:30 +0100904
Andrew Morton953a6472008-11-06 12:53:28 -0800905ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Joe Perches8b58be82009-07-29 15:04:30 -0700906M: Dan Williams <dan.j.williams@intel.com>
907M: Maciej Sosnowski <maciej.sosnowski@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -0700908W: http://sourceforge.net/projects/xscaleiop
909S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700910F: Documentation/crypto/async-tx-api.txt
911F: crypto/async_tx/
912F: drivers/dma/
913F: include/linux/dmaengine.h
914F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -0700915
Wolfram Sanga1867d32009-09-18 22:45:51 +0200916AT24 EEPROM DRIVER
917M: Wolfram Sang <w.sang@pengutronix.de>
918L: linux-i2c@vger.kernel.org
919S: Maintained
920F: drivers/misc/eeprom/at24.c
921F: include/linux/i2c/at24.h
922
Randy Dunlape7839f22008-10-12 16:11:45 -0700923ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700924M: "Ed L. Cashin" <ecashin@coraid.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925W: http://www.coraid.com/support/linux
926S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700927F: Documentation/aoe/
928F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200930ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700931M: Jiri Slaby <jirislaby@gmail.com>
932M: Nick Kossifidis <mickflemm@gmail.com>
933M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
934M: Bob Copeland <me@bobcopeland.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200935L: linux-wireless@vger.kernel.org
936L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -0700937W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200938S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -0700939F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200940
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700941ATHEROS ATH9K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700942M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
943M: Jouni Malinen <jmalinen@atheros.com>
944M: Sujith Manoharan <Sujith.Manoharan@atheros.com>
945M: Vasanthakumar Thiagarajan <vasanth@atheros.com>
946M: Senthil Balasubramanian <senthilkumar@atheros.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700947L: linux-wireless@vger.kernel.org
948L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -0700949W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700950S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -0700951F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700952
Christian Lamparter75ca88c2009-03-21 23:11:49 +0100953ATHEROS AR9170 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700954M: Christian Lamparter <chunkeey@web.de>
Christian Lamparter75ca88c2009-03-21 23:11:49 +0100955L: linux-wireless@vger.kernel.org
956W: http://wireless.kernel.org/en/users/Drivers/ar9170
957S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -0700958F: drivers/net/wireless/ath/ar9170/
Christian Lamparter75ca88c2009-03-21 23:11:49 +0100959
Luca Tettamanti2c2a6172009-09-15 17:18:10 +0200960ATK0110 HWMON DRIVER
961M: Luca Tettamanti <kronos.it@gmail.com>
962L: lm-sensors@lm-sensors.org
963S: Maintained
964F: drivers/hwmon/asus_atk0110.c
965
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000966ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700967M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700969F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000970
Chris Snook7ae115b2008-09-09 03:26:57 -0400971ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700972M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +0000973M: Chris Snook <chris.snook@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700974M: Jie Yang <jie.yang@atheros.com>
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600975L: atl1-devel@lists.sourceforge.net
976W: http://sourceforge.net/projects/atl1
977W: http://atl1.sourceforge.net
978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700979F: drivers/net/atlx/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981ATM
Joe Perches8b58be82009-07-29 15:04:30 -0700982M: Chas Williams <chas@cmf.nrl.navy.mil>
Roland Dreierf37bf902006-09-13 20:39:33 -0700983L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Jiri Slaby44ae98b2008-11-30 23:27:11 -0800984L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985W: http://linux-atm.sourceforge.net
986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700987F: drivers/atm/
988F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Pierre Ossman272f1332007-05-14 21:25:26 +0200990ATMEL AT91 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700991M: Nicolas Ferre <nicolas.ferre@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700992L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +0200993W: http://www.atmel.com/products/AT91/
994W: http://www.at91.com/
995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700996F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200997
Nicolas Ferre04ac2f42009-06-16 13:05:50 +0200998ATMEL AT91 / AT32 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700999M: Nicolas Ferre <nicolas.ferre@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001000S: Maintained
1001F: drivers/mmc/host/atmel-mci.c
1002F: drivers/mmc/host/atmel-mci-regs.h
1003
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001004ATMEL AT91 / AT32 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001005M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001006S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001007F: drivers/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001008
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001009ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001010M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08001011L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001013F: drivers/video/atmel_lcdfb.c
1014F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001015
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001016ATMEL MACB ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001017M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001018S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001019F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001020
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001021ATMEL SPI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001022M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001023S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001024F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001025
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001026ATMEL USBA UDC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001027M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001028L: kernel@avr32linux.org
1029W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1030S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001031F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001034M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001035L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036W: http://www.thekelleys.org.uk/atmel
1037W: http://atmelwlandriver.sourceforge.net/
1038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001039F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Chris Wrighta92b7b82005-07-07 18:12:23 -07001041AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001042M: Al Viro <viro@zeniv.linux.org.uk>
1043M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001044L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001045W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001046T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001048F: include/linux/audit.h
1049F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001050
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001051AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001052M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001053W: http://miguelojeda.es/auxdisplay.htm
1054W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001056F: drivers/auxdisplay/
1057F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001058
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001059AVR32 ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001060M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001061W: http://www.atmel.com/products/AVR32/
1062W: http://avr32linux.org/
1063W: http://avrfreaks.net/
1064S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001065F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001066
1067AVR32/AT32AP MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001068M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001069S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001070F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001073M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001075W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001077F: include/linux/ax25.h
1078F: include/net/ax25.h
1079F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001081B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001082M: Michael Buesch <mb@bu3sch.de>
1083M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001084L: linux-wireless@vger.kernel.org
1085W: http://linuxwireless.org/en/users/Drivers/b43
1086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001087F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001088
1089B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001090M: Larry Finger <Larry.Finger@lwfinger.net>
1091M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001092L: linux-wireless@vger.kernel.org
1093W: http://linuxwireless.org/en/users/Drivers/b43
1094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001095F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001096
Richard Purdie300abeb2007-02-07 22:21:07 +00001097BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001098M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001100F: drivers/video/backlight/
1101F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001102
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001103BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001104M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001105L: linux-hams@vger.kernel.org
1106W: http://www.baycom.org/~tom/ham/ham.html
1107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001108F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001109
1110BEFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001111M: "Sergey S. Kostyliov" <rathamahata@php4.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001113F: Documentation/filesystems/befs.txt
1114F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001115
1116BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001117M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001119F: Documentation/filesystems/bfs.txt
1120F: fs/bfs/
1121F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001122
Bryan Wu1394f032007-05-06 14:50:22 -07001123BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001124M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001125L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001126W: http://blackfin.uclinux.org
1127S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001128F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001129
Bryan Wue190d6b2007-07-17 14:43:44 +08001130BLACKFIN EMAC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001131M: Michael Hennerich <michael.hennerich@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001132L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001133W: http://blackfin.uclinux.org
1134S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001135F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001136
Mike Frysinger566da5b2007-06-11 15:31:30 +08001137BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001138M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001139L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001140W: http://blackfin.uclinux.org
1141S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001142F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001143
Bryan Wu1394f032007-05-06 14:50:22 -07001144BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001145M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001146L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001147W: http://blackfin.uclinux.org
1148S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001149F: drivers/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001150
Bryan Wu1e6d3202007-07-15 02:50:02 +08001151BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001152M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001153L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001154W: http://blackfin.uclinux.org
1155S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001156F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001157
Bryan Wud24ecfc2007-05-01 23:26:32 +02001158BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001159M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001160L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001161W: http://blackfin.uclinux.org/
1162S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001163F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001166M: Jens Axboe <axboe@kernel.dk>
Joe Perches54e58812009-04-07 21:08:10 -07001167T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001169F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Joern Engel2b54aae2008-02-06 01:38:02 -08001171BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001172M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001173L: linux-mtd@lists.infradead.org
1174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001175F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001176
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001177BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001178M: Marcel Holtmann <marcel@holtmann.org>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001179L: linux-bluetooth@vger.kernel.org
1180W: http://www.bluez.org/
1181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001182F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001185M: Marcel Holtmann <marcel@holtmann.org>
Pavel Machek781c2842008-03-20 15:41:02 -07001186L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001187W: http://www.bluez.org/
Joe Perches54e58812009-04-07 21:08:10 -07001188T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001190F: net/bluetooth/
1191F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001194M: Jay Vosburgh <fubar@us.ibm.com>
Jim Cromiece00f852006-11-30 04:49:44 +01001195L: bonding-devel@lists.sourceforge.net
1196W: http://sourceforge.net/projects/bonding/
1197S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001198F: drivers/net/bonding/
1199F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Gary Zambrano39105892006-06-22 17:26:20 -07001201BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001202M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001203L: netdev@vger.kernel.org
1204S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001205F: drivers/net/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001206
Michael Chan948c51e2006-06-04 02:51:39 -07001207BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001208M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001209L: netdev@vger.kernel.org
1210S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001211F: drivers/net/bnx2.*
1212F: drivers/net/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001213
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001214BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001215M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001216L: netdev@vger.kernel.org
1217S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001218F: drivers/net/bnx2x*
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001219
Michael Chan948c51e2006-06-04 02:51:39 -07001220BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001221M: Matt Carlson <mcarlson@broadcom.com>
1222M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001223L: netdev@vger.kernel.org
1224S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001225F: drivers/net/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001226
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001227BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001228M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001229L: linux-scsi@vger.kernel.org
1230S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001231F: block/bsg.c
1232F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001233
Michael Bueschff1d5c22008-07-25 01:46:10 -07001234BT8XXGPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001235M: Michael Buesch <mb@bu3sch.de>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001236W: http://bu3sch.de/btgpio.php
1237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001238F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001239
Joe Percheseb1eb042009-01-21 10:49:16 -05001240BTRFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001241M: Chris Mason <chris.mason@oracle.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001242L: linux-btrfs@vger.kernel.org
1243W: http://btrfs.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07001244T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001246F: Documentation/filesystems/btrfs.txt
1247F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001250M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001251L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001252W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001253T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001255F: Documentation/video4linux/bttv/
1256F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
David Howellsa5432f52009-04-20 15:46:45 +01001258CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001259M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001260L: linux-cachefs@redhat.com
1261S: Supported
1262F: Documentation/filesystems/caching/cachefiles.txt
1263F: fs/cachefiles/
1264
Jonathan Corbet77d51402007-03-22 19:44:17 -03001265CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001266M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001267L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001268T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001270F: Documentation/video4linux/cafe_ccic
1271F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001272
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001273CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001274M: Muli Ben-Yehuda <muli@il.ibm.com>
1275M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001276L: discuss@x86-64.org
1277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001278F: arch/x86/kernel/pci-calgary_64.c
1279F: arch/x86/kernel/tce_64.c
1280F: arch/x86/include/asm/calgary.h
1281F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001282
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001283CAN NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001284M: Urs Thuermann <urs.thuermann@volkswagen.de>
1285M: Oliver Hartkopp <oliver.hartkopp@volkswagen.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001286L: socketcan-core@lists.berlios.de (subscribers-only)
1287W: http://developer.berlios.de/projects/socketcan/
1288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001289F: drivers/net/can/
1290F: include/linux/can/
1291F: include/linux/can.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001292
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001293CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001294M: Wolfgang Grandegger <wg@grandegger.com>
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001295L: socketcan-core@lists.berlios.de (subscribers-only)
1296W: http://developer.berlios.de/projects/socketcan/
1297S: Maintained
1298
Arnd Bergmannb8154542008-05-16 11:10:59 +02001299CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001300M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmannb8154542008-05-16 11:10:59 +02001301L: linuxppc-dev@ozlabs.org
1302L: cbe-oss-dev@ozlabs.org
1303W: http://www.ibm.com/developerworks/power/cell/
1304S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001305F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001306F: arch/powerpc/include/asm/spu*.h
1307F: arch/powerpc/oprofile/*cell*
1308F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001309
David Vrabel18332a82008-09-17 16:34:44 +01001310CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
Joe Perches8b58be82009-07-29 15:04:30 -07001311M: David Vrabel <david.vrabel@csr.com>
David Vrabel18332a82008-09-17 16:34:44 +01001312L: linux-usb@vger.kernel.org
1313S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001314F: Documentation/usb/WUSB-Design-overview.txt
1315F: Documentation/usb/wusb-cbaf
1316F: drivers/usb/wusbcore/
1317F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001318
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001319CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001320M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001321W: http://miguelojeda.es/auxdisplay.htm
1322W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001324F: drivers/auxdisplay/cfag12864b.c
1325F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001326
1327CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001328M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001329W: http://miguelojeda.es/auxdisplay.htm
1330W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001332F: drivers/auxdisplay/cfag12864bfb.c
1333F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001334
Johannes Berg704232c2007-04-23 12:20:05 -07001335CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001336M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001337L: linux-wireless@vger.kernel.org
1338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001339F: include/linux/nl80211.h
1340F: include/net/cfg80211.h
1341F: net/wireless/*
1342X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001343
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001344CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001345M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001346S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001347F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001348
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001349CISCO 10G ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001350M: Scott Feldman <scofeldm@cisco.com>
1351M: Joe Eykholt <jeykholt@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001352S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001353F: drivers/net/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001354
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001355CIRRUS LOGIC EP93XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001356M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001357L: netdev@vger.kernel.org
1358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001359F: drivers/net/arm/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001360
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001361CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001362M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001363L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001365F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001366
Timur Tabid9e9d822008-04-24 08:45:26 +10001367CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001368M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001369L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001370S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001371F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001372
Russell Kingd4275352009-04-16 14:05:27 +01001373CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001374M: Russell King <linux@arm.linux.org.uk>
Russell Kingd4275352009-04-16 14:05:27 +01001375F: include/linux/clk.h
1376
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001377CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001378M: Abhijeet Joglekar <abjoglek@cisco.com>
1379M: Joe Eykholt <jeykholt@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001380L: linux-scsi@vger.kernel.org
1381S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001382F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001385M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386M: coda@cs.cmu.edu
1387L: codalist@coda.cs.cmu.edu
1388W: http://www.coda.cs.cmu.edu/
1389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001390F: Documentation/filesystems/coda.txt
1391F: fs/coda/
1392F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001394COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07001395M: Steve French <sfrench@samba.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001396L: linux-cifs-client@lists.samba.org
1397L: samba-technical@lists.samba.org
1398W: http://linux-cifs.samba.org/
Joe Perches54e58812009-04-07 21:08:10 -07001399T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001400S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001401F: Documentation/filesystems/cifs.txt
1402F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001405M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001406L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001408F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
1410COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
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/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
1416COMPACTPCI HOTPLUG GENERIC 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_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001422COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001423M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001425F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001426
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427COMPUTONE INTELLIPORT MULTIPORT CARD
Joe Perches8b58be82009-07-29 15:04:30 -07001428M: "Michael H. Warfield" <mhw@wittsend.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001431F: Documentation/serial/computone.txt
1432F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Simon Arlott949be0f2007-03-06 02:47:46 -08001434CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001435M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001436L: accessrunner-general@lists.sourceforge.net
1437W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001439F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001440
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001441CONFIGFS
Joe Perches8b58be82009-07-29 15:04:30 -07001442M: Joel Becker <joel.becker@oracle.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001443S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001444F: fs/configfs/
1445F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001446
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001447CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07001448M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001449L: netdev@vger.kernel.org
1450S: Maintained
1451F: drivers/connector/
1452
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001453CONTROL GROUPS (CGROUPS)
Joe Perches8b58be82009-07-29 15:04:30 -07001454M: Paul Menage <menage@google.com>
1455M: Li Zefan <lizf@cn.fujitsu.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001456L: containers@lists.linux-foundation.org
1457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001458F: include/linux/cgroup*
1459F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07001460F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001461
Rudolf Marekbebe4672007-05-08 17:22:02 +02001462CORETEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001463M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marekbebe4672007-05-08 17:22:02 +02001464L: lm-sensors@lm-sensors.org
1465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001466F: Documentation/hwmon/coretemp
1467F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001470M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471W: http://www.fi.muni.cz/~kas/cosa/
1472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001473F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Florian Fainelli4371ee32009-06-01 02:43:17 -07001475CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001476M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07001477L: netdev@vger.kernel.org
1478S: Maintained
1479F: drivers/net/cpmac.c
1480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481CPU FREQUENCY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001482M: Dave Jones <davej@redhat.com>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001483L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001485T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001487F: arch/x86/kernel/cpu/cpufreq/
1488F: drivers/cpufreq/
1489F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
1491CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001492M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001494F: arch/x86/kernel/cpuid.c
1495F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Paul Jacksoned90fb42005-09-27 21:45:37 -07001497CPUSETS
Joe Perches8b58be82009-07-29 15:04:30 -07001498M: Paul Menage <menage@google.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07001499W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001500W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001501S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001502F: Documentation/cgroups/cpusets.txt
1503F: include/linux/cpuset.h
1504F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001507W: http://sourceforge.net/projects/cramfs/
1508S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001509F: Documentation/filesystems/cramfs.txt
1510F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
1512CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001513M: Mikael Starvik <starvik@axis.com>
1514M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02001515L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516W: http://developer.axis.com
1517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001518F: arch/cris/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
1520CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07001521M: Herbert Xu <herbert@gondor.apana.org.au>
1522M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001524T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001526F: Documentation/crypto/
1527F: arch/*/crypto/
1528F: crypto/
1529F: drivers/crypto/
1530F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Neil Horman5b07bd52009-02-05 16:03:04 +11001532CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07001533M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11001534L: linux-crypto@vger.kernel.org
1535S: Maintained
1536
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001537CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07001538M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001540F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001541
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001542CX18 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001543M: Hans Verkuil <hverkuil@xs4all.nl>
1544M: Andy Walls <awalls@radix.net>
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001545L: ivtv-devel@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001546L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001547T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001548W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07001549W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001551F: Documentation/video4linux/cx18.txt
1552F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001553
Steve Wisee5ec3782008-05-20 14:06:33 -07001554CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07001555M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07001556L: netdev@vger.kernel.org
1557W: http://www.chelsio.com
1558S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001559F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001560
1561CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07001562M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07001563L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07001564W: http://www.openfabrics.org
1565S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001566F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001569M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001570L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571W: http://www.arm.linux.org.uk/
1572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001573F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001576M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001577W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001579F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
1581CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001583S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001584F: drivers/char/cyclades.c
1585F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
1587CYCLADES PC300 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/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001593M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594W: http://yaina.de/jreuter/
1595W: http://www.qsl.net/dl1bke/
1596L: linux-hams@vger.kernel.org
1597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001598F: net/ax25/af_ax25.c
1599F: net/ax25/ax25_dev.c
1600F: net/ax25/ax25_ds_*
1601F: net/ax25/ax25_in.c
1602F: net/ax25/ax25_out.c
1603F: net/ax25/ax25_timer.c
1604F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001606DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001607M: Tobias Ringstrom <tori@unhappy.mine.nu>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001608L: netdev@vger.kernel.org
1609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001610F: Documentation/networking/dmfe.txt
1611F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001612
1613DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07001614M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001615W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07001616M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001618F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620DC395x SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07001621M: Oliver Neukum <oliver@neukum.name>
1622M: Ali Akcaagac <aliakc@web.de>
1623M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001625L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626L: http://lists.twibble.org/mailman/listinfo/dc395x/
1627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001628F: Documentation/scsi/dc395x.txt
1629F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001631DCCP PROTOCOL
Joe Perches8b58be82009-07-29 15:04:30 -07001632M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001633L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001634W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001636F: include/linux/dccp.h
1637F: include/linux/tfrc.h
1638F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640DECnet NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001641M: Christine Caulfield <christine.caulfield@googlemail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642W: http://linux-decnet.sourceforge.net
1643L: linux-decnet-user@lists.sourceforge.net
1644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001645F: Documentation/networking/decnet.txt
1646F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
1648DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001649M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001651F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001653DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001654M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001656F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001657
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001659M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660W: http://www.debian.org/~dz/i8k/
1661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001662F: drivers/char/i8k.c
1663F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Doug Warzecha90563ec2005-09-06 15:17:15 -07001665DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07001666M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07001667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001668F: Documentation/dcdbas.txt
1669F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07001670
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001671DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001672M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001673S: Maintained
1674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07001676M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678S: Maintained
1679
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001680DEVICE-MAPPER (LVM)
1681P: Alasdair Kergon
1682L: dm-devel@redhat.com
1683W: http://sources.redhat.com/dm
1684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001685F: Documentation/device-mapper/
1686F: drivers/md/dm*
1687F: include/linux/device-mapper.h
1688F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690DIGI INTL. EPCA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001691M: "Digi International, Inc" <Eng.Linux@digi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692L: Eng.Linux@digi.com
1693W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02001694S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001695F: Documentation/serial/digiepca.txt
1696F: drivers/char/epca*
1697F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Randy Dunlape7839f22008-10-12 16:11:45 -07001699DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07001700M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04001701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001702F: Documentation/filesystems/dnotify.txt
1703F: fs/notify/dnotify/
1704F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
1706DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07001707M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1709W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1710W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1711S: Maintained
1712
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001713DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07001714M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001716F: Documentation/filesystems/quota.txt
1717F: fs/quota/
1718F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Randy Dunlape7839f22008-10-12 16:11:45 -07001720DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07001721M: Christine Caulfield <ccaulfie@redhat.com>
1722M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04001723L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001724W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07001725T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001726S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001727F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001728
Dan Williamsb3e5f262007-08-07 10:26:35 -07001729DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001730M: Maciej Sosnowski <maciej.sosnowski@intel.com>
1731M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001732S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001733F: drivers/dma/
1734F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001735
Juerg Haefligerb8250372007-06-09 10:11:16 -04001736DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001737M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04001738L: lm-sensors@lm-sensors.org
1739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001740F: Documentation/hwmon/dme1737
1741F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04001742
Martin Waitzba483d52005-06-17 13:20:59 -07001743DOCBOOK FOR DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07001744M: Randy Dunlap <rdunlap@xenotime.net>
Martin Waitzba483d52005-06-17 13:20:59 -07001745S: Maintained
1746
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001747DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001748M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001749L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001750S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001751F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001752
Joe Perches7d2c86b2009-04-07 20:59:01 -07001753DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07001754M: Randy Dunlap <rdunlap@xenotime.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02001755L: linux-doc@vger.kernel.org
1756S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001757F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07001758
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001760M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761L: blinux-list@redhat.com
1762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001763F: drivers/char/dtlk.c
1764F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001766DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001767M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001768L: linux-scsi@vger.kernel.org
1769W: http://www.adaptec.com/
1770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001771F: drivers/scsi/dpt*
1772F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001773
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774DRIVER CORE, KOBJECTS, AND SYSFS
Joe Perches8b58be82009-07-29 15:04:30 -07001775M: Greg Kroah-Hartman <gregkh@suse.de>
Jody McIntyre6fb04252005-11-18 09:31:06 -08001776T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001778F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07001779F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07001780F: fs/sysfs/
1781F: include/linux/kobj*
1782F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
1784DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001785M: David Airlie <airlied@linux.ie>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786L: dri-devel@lists.sourceforge.net
Joe Perches54e58812009-04-07 21:08:10 -07001787T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001789F: drivers/gpu/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
1791DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001792M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08001793L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001795F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001797DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001798M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001799S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001800F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001803M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07001804L: linux-eata@i-connect.net
1805L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001807F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
1809EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001810M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811L: linux-scsi@vger.kernel.org
1812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001813F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
1815EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001816M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07001817L: linux-eata@i-connect.net
1818L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001820F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
1822EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07001823M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824L: ebtables-user@lists.sourceforge.net
1825L: ebtables-devel@lists.sourceforge.net
1826W: http://ebtables.sourceforge.net/
1827S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001828F: include/linux/netfilter_bridge/ebt_*.h
1829F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Michael Halcrow237fead2006-10-04 02:16:22 -07001831ECRYPT FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001832M: Tyler Hicks <tyhicks@linux.vnet.ibm.com>
1833M: Dustin Kirkland <kirkland@canonical.com>
Michael Halcrow6dc75162008-12-15 13:54:17 -08001834L: ecryptfs-devel@lists.launchpad.net
1835W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07001836S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001837F: Documentation/filesystems/ecryptfs.txt
1838F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07001839
Alan Coxda9bb1d2006-01-18 17:44:13 -08001840EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001841M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001842L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001843W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001844S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001845F: Documentation/edac.txt
1846F: drivers/edac/edac_*
1847F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08001848
Borislav Petkovc476c232009-05-20 20:31:58 +02001849EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07001850M: Doug Thompson <dougthompson@xmission.com>
1851M: Borislav Petkov <borislav.petkov@amd.com>
Borislav Petkovc476c232009-05-20 20:31:58 +02001852L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
1853W: bluesmoke.sourceforge.net
1854S: Supported
1855F: drivers/edac/amd64_edac*
1856
Dave Peterson0e438e32006-03-26 01:38:55 -08001857EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07001858M: Mark Gross <mark.gross@intel.com>
1859M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001860L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001861W: bluesmoke.sourceforge.net
1862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001863F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08001864
1865EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07001866M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001867L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001868W: bluesmoke.sourceforge.net
1869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001870F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08001871
Douglas Thompson6bc78402007-07-19 01:50:12 -07001872EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07001873M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001874L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07001875W: bluesmoke.sourceforge.net
1876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001877F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07001878
1879EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07001880M: Jason Uhlenkott <juhlenko@akamai.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001881L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07001882W: bluesmoke.sourceforge.net
1883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001884F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07001885
1886EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07001887M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001888L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001889W: bluesmoke.sourceforge.net
1890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001891F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001892
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08001893EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07001894M: Mauro Carvalho Chehab <mchehab@redhat.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001895L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08001896W: bluesmoke.sourceforge.net
1897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001898F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08001899
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001900EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07001901M: Ranganathan Desikan <ravi@jetztechnologies.com>
1902M: "Arvind R." <arvind@jetztechnologies.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001903L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001904W: bluesmoke.sourceforge.net
1905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001906F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001907
1908EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07001909M: Egor Martovetsky <egor@pasemi.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001910L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07001911W: bluesmoke.sourceforge.net
1912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001913F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07001914
Dave Peterson0e438e32006-03-26 01:38:55 -08001915EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07001916M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001917L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001918W: bluesmoke.sourceforge.net
1919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001920F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08001921
Eric Coopere59f8792008-03-13 12:55:46 +01001922EEEPC LAPTOP EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001923M: Corentin Chary <corentincj@iksaif.net>
Eric Coopere59f8792008-03-13 12:55:46 +01001924L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +00001925W: http://acpi4asus.sf.net
Eric Coopere59f8792008-03-13 12:55:46 +01001926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001927F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01001928
Josh Triplett0bee8d22006-07-30 03:03:58 -07001929EFS FILESYSTEM
1930W: http://aeschi.ch.eu.org/efs/
1931S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001932F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07001933
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001934EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001935M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
1936M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07001937L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07001938S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001939F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07001940
David Woodhouse3e3a7d62008-05-01 04:34:46 -07001941EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07001942M: Paul Gortmaker <paul.gortmaker@windriver.com>
1943M: Matt Mackall <mpm@selenic.com>
1944M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07001945L: linux-embedded@vger.kernel.org
1946S: Maintained
1947
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001948EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001949M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01001950L: linux-scsi@vger.kernel.org
1951W: http://sourceforge.net/projects/lpfcxxxx
1952S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001953F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001954
Michał Mirosław5f5bac82009-05-22 20:33:59 +02001955ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001956M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02001957S: Maintained
1958F: drivers/misc/cb710/
1959F: drivers/mmc/host/cb710-mmc.*
1960F: include/linux/cb710.h
1961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001963M: Christopher Hoover <ch@murgatroid.com>
1964M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001966F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07001968EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001969M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07001970S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07001971T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07001972F: drivers/video/s1d13xxxfb.c
1973F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07001974
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001976M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07001977L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001979F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
1981ETHERNET BRIDGE
Joe Perches8b58be82009-07-29 15:04:30 -07001982M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07001983L: bridge@lists.linux-foundation.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07001984W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001986F: include/linux/netfilter_bridge/
1987F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
1989ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001990M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001992F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001995L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001997F: Documentation/filesystems/ext2.txt
1998F: fs/ext2/
1999F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
2001EXT3 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002002M: Andrew Morton <akpm@linux-foundation.org>
2003M: Andreas Dilger <adilger@sun.com>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002004L: linux-ext4@vger.kernel.org
2005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002006F: Documentation/filesystems/ext3.txt
2007F: fs/ext3/
2008F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002009
2010EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002011M: "Theodore Ts'o" <tytso@mit.edu>
2012M: Andreas Dilger <adilger@sun.com>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002013L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002014W: http://ext4.wiki.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002016F: Documentation/filesystems/ext4.txt
2017F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Jean Delvaree53004e2006-01-09 23:26:14 +01002019F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002020M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002021L: lm-sensors@lm-sensors.org
2022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002023F: Documentation/hwmon/f71805f
2024F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002025
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002027M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028W: http://www.farsite.co.uk/
2029S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002030F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
Akinobu Mitac5408b82007-04-23 14:41:20 -07002032FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002033M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07002034S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002035F: Documentation/fault-injection/
2036F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002037
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002038FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07002039M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002040L: linux-fsdevel@vger.kernel.org
2041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002042F: include/linux/fcntl.h
2043F: include/linux/fs.h
2044F: fs/fcntl.c
2045F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002046
2047FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07002048M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002049L: linux-fsdevel@vger.kernel.org
2050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002051F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002052
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002053FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002054M: Riku Voipio <riku.vipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002055L: lm-sensors@lm-sensors.org
2056S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002057F: drivers/hwmon/f75375s.c
2058F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002059
Joe Perches7d2c86b2009-04-07 20:59:01 -07002060FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002061M: Kristian Hoegsberg <krh@redhat.com>
2062M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002063L: linux1394-devel@lists.sourceforge.net
2064W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002065T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002067F: drivers/firewire/
2068F: include/linux/firewire*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002069
2070FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002071S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002072F: Documentation/firmware_class/
2073F: drivers/base/firmware*.c
2074F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002075
2076FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002077M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07002078W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002080F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002081
2082FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Joe Perches8b58be82009-07-29 15:04:30 -07002083M: Mike McLagan <mike.mclagan@linux.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002084L: netdev@vger.kernel.org
2085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002086F: drivers/net/wan/dlci.c
2087F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002088
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089FRAMEBUFFER LAYER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002090L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091W: http://linux-fbdev.sourceforge.net/
Andrew Morton36025a82009-06-17 16:25:56 -07002092S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002093F: Documentation/fb/
2094F: drivers/video/fb*
2095F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Zhang Wei173acc72008-03-01 07:42:48 -07002097FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002098M: Li Yang <leoli@freescale.com>
2099M: Zhang Wei <zw@zh-kernel.org>
Li Yang0899d632009-05-22 16:39:59 +08002100L: linuxppc-dev@ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002102F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002103
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002104FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002105M: Jochen Friedrich <jochen@scram.de>
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002106L: linuxppc-dev@ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002107L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002109F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002110
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002111FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002112M: Sascha Hauer <kernel@pengutronix.de>
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002113L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Joe Perchesefc03ec2009-09-21 17:04:27 -07002114L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002116F: arch/arm/plat-mxc/include/mach/imxfb.h
2117F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002118
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002119FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002120M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
2121M: Vitaly Bordug <vbordug@ru.mvista.com>
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002122L: linuxppc-dev@ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002123L: netdev@vger.kernel.org
2124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002125F: drivers/net/fs_enet/
2126F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002127
Timur Tabid9e9d822008-04-24 08:45:26 +10002128FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07002129M: Timur Tabi <timur@freescale.com>
Timur Tabid9e9d822008-04-24 08:45:26 +10002130L: linuxppc-dev@ozlabs.org
2131S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002132F: arch/powerpc/sysdev/qe_lib/
2133F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002134
Li Yang5429c732009-08-11 11:11:11 +08002135FREESCALE USB PERIPHERIAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002136M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002137L: linux-usb@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002138L: linuxppc-dev@ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002139S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08002140F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07002141
Li Yangbeaf53b2007-05-25 13:54:02 +08002142FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002143M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08002144L: netdev@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002145L: linuxppc-dev@ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002147F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002148
Timur Tabid9e9d822008-04-24 08:45:26 +10002149FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002150M: Timur Tabi <timur@freescale.com>
Timur Tabid9e9d822008-04-24 08:45:26 +10002151L: linuxppc-dev@ozlabs.org
2152S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002153F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002154
2155FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002156M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07002157L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10002158L: linuxppc-dev@ozlabs.org
2159S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002160F: sound/soc/fsl/fsl*
2161F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002164M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002167F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
Pavel Machek71038f52009-01-15 13:51:02 -08002169FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07002170M: Pavel Machek <pavel@ucw.cz>
2171M: "Rafael J. Wysocki" <rjw@sisk.pl>
Pavel Machek71038f52009-01-15 13:51:02 -08002172L: linux-pm@lists.linux-foundation.org
2173S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002174F: Documentation/power/freezing-of-tasks.txt
2175F: include/linux/freezer.h
2176F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002177
David Howellsa5432f52009-04-20 15:46:45 +01002178FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002179M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01002180L: linux-cachefs@redhat.com
2181S: Supported
2182F: Documentation/filesystems/caching/
2183F: fs/fscache/
2184F: include/linux/fscache*.h
2185
Ingo Molnar983f2162009-09-15 12:29:20 +02002186TRACING
Joe Perches8b58be82009-07-29 15:04:30 -07002187M: Steven Rostedt <rostedt@goodmis.org>
Ingo Molnar983f2162009-09-15 12:29:20 +02002188M: Frederic Weisbecker <fweisbec@gmail.com>
2189M: Ingo Molnar <mingo@redhat.com>
2190T: 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 -04002191S: Maintained
Joe Perchesa65fd8e2009-06-18 16:49:23 -07002192F: Documentation/trace/ftrace.txt
Joe Perches679655d2009-04-07 20:44:32 -07002193F: arch/*/*/*/ftrace.h
2194F: arch/*/kernel/ftrace.c
Ingo Molnar983f2162009-09-15 12:29:20 +02002195F: include/*/ftrace.h include/trace/ include/linux/trace*.h
Joe Perches679655d2009-04-07 20:44:32 -07002196F: kernel/trace/
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002197
David Howells5ab7ffe2007-04-10 15:10:45 +01002198FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002199M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002201F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
Jonathan Woithe20b93732008-06-11 10:14:56 +09302203FUJITSU LAPTOP EXTRAS
Joe Perches8b58be82009-07-29 15:04:30 -07002204M: Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
Jonathan Woithe20b93732008-06-11 10:14:56 +09302205L: linux-acpi@vger.kernel.org
2206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002207F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302208
Miklos Szeredi04578f12005-09-09 13:10:22 -07002209FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07002210M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07002211L: fuse-devel@lists.sourceforge.net
2212W: http://fuse.sourceforge.net/
2213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002214F: fs/fuse/
2215F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002216
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07002218M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002220S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002221F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
2223GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002224M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225L: linux-scsi@vger.kernel.org
2226W: http://www.icp-vortex.com/
2227S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002228F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002230GENERIC GPIO I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002231M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002232S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002233F: drivers/i2c/busses/i2c-gpio.c
2234F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002235
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002236GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002237M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002240F: drivers/net/wan/c101.c
2241F: drivers/net/wan/hd6457*
2242F: drivers/net/wan/hdlc*
2243F: drivers/net/wan/n2.c
2244F: drivers/net/wan/pc300too.c
2245F: drivers/net/wan/pci200syn.c
2246F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002248GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07002249M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002250L: linux-arch@vger.kernel.org
2251T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
2252S: Maintained
2253F: include/asm-generic
2254
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002255GENERIC UIO DRIVER FOR PCI DEVICES
2256M: Michael S. Tsirkin <mst@redhat.com>
2257L: kvm@vger.kernel.org
2258L: linux-kernel@vger.kernel.org
2259S: Supported
2260F: drivers/uio/uio_pci_generic.c
2261
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002262GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002263M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002264L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002265W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002266T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2267T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002268S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002269F: Documentation/filesystems/gfs2*.txt
2270F: fs/gfs2/
2271F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002272
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002273GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002274M: Hansjoerg Lipp <hjlipp@web.de>
2275M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002276L: gigaset307x-common@lists.sourceforge.net
2277W: http://gigaset307x.sourceforge.net/
2278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002279F: Documentation/isdn/README.gigaset
2280F: drivers/isdn/gigaset/
2281F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002282
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002283HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002284M: Frank Seidel <frank@f-seidel.de>
Frank Seidel211e3e02009-02-17 19:59:54 +01002285L: lm-sensors@lm-sensors.org
2286W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002288F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002289
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002290HYPERVISOR VIRTUAL CONSOLE DRIVER
2291L: linuxppc-dev@ozlabs.org
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002292S: Odd Fixes
2293F: drivers/char/hvc_*
2294
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002295GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002296M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002297L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002298T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002300F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002301
2302GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002303M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002304L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002305T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002307F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002308
2309GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002310M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002311L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002312T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002314F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002315
Brian Johnson261982f2009-07-19 15:58:56 -03002316GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03002317M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03002318L: linux-media@vger.kernel.org
2319T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2320S: Maintained
2321F: drivers/media/video/gspca/sn9c20x.c
2322
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002323GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002324M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002325L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002326T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002328F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002329
2330GSPCA USB WEBCAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002331M: Jean-Francois Moine <moinejf@free.fr>
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002332W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002333L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002334T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002336F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002337
Jean Delvare5b543962005-08-15 19:51:02 +02002338HARDWARE MONITORING
Jean Delvare5b543962005-08-15 19:51:02 +02002339L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002340W: http://www.lm-sensors.org/
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002341S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002342F: drivers/hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02002343
Michael Buesch844dd052006-06-26 00:24:59 -07002344HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07002345M: Matt Mackall <mpm@selenic.com>
2346M: Herbert Xu <herbert@gondor.apana.org.au>
2347S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07002348F: Documentation/hw_random.txt
2349F: drivers/char/hw_random/
2350F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002351
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352HARMONY SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002353M: Kyle McMartin <kyle@mcmartin.ca>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002354L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002356F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
2358HAYES ESP SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002359M: "Andrew J. Robinson" <arobinso@nyx.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360W: http://www.nyx.net/~arobinso
2361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002362F: Documentation/serial/hayes-esp.txt
2363F: drivers/char/esp.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002364
2365HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002366M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002367L: iss_storagedev@hp.com
2368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002369F: Documentation/blockdev/cpqarray.txt
2370F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002371
2372HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07002373M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002374L: iss_storagedev@hp.com
2375S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002376F: Documentation/blockdev/cciss.txt
2377F: drivers/block/cciss*
2378F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002379
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380HFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002381M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002383F: Documentation/filesystems/hfs.txt
2384F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
2386HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002387M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388L: linux-nvidia@lists.surfsouth.com
2389W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002391F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002393HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07002394M: Pavel Machek <pavel@ucw.cz>
2395M: "Rafael J. Wysocki" <rjw@sisk.pl>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002396L: linux-pm@lists.linux-foundation.org
2397S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002398F: arch/x86/power/
2399F: drivers/base/power/
2400F: kernel/power/
2401F: include/linux/suspend.h
2402F: include/linux/freezer.h
2403F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002404F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002405
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002406HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002407M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002408L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002409T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002411F: drivers/hid/
2412F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002413
Ingo Molnar38bed542007-02-22 09:09:34 +01002414HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07002415M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar38bed542007-02-22 09:09:34 +01002416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002417F: Documentation/timers/
2418F: kernel/hrtimer.c
2419F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002420
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421HIGH-SPEED SCC DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002422M: Klaus Kudielka <klaus.kudielka@ieee.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423L: linux-hams@vger.kernel.org
2424W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002426F: drivers/net/hamradio/dmascc.c
2427F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002429HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002430M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002431W: http://www.highpoint-tech.com
2432S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002433F: Documentation/scsi/hptiop.txt
2434F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002435
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07002437M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438L: linux-hippi@sunsite.dk
2439S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002440F: include/linux/hippidevice.h
2441F: include/linux/if_hippi.h
2442F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
Jouni Malinenff1d2762005-05-12 22:54:16 -04002444HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002445M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07002446L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002447L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002448W: http://hostap.epitest.fi/
2449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002450F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002451
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002452HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002453M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002454S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002455F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002456
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002457HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07002458M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002460F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002461
Joe Perches7d2c86b2009-04-07 20:59:01 -07002462HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07002463M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08002464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002465F: Documentation/timers/hpet.txt
2466F: drivers/char/hpet.c
2467F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002468
2469HPET: i386
Joe Perches8b58be82009-07-29 15:04:30 -07002470M: "Venkatesh Pallipadi (Venki)" <venkatesh.pallipadi@intel.com>
Bob Piccob9b03322005-11-07 00:59:19 -08002471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002472F: arch/x86/kernel/hpet.c
2473F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002474
2475HPET: x86_64
Joe Perches8b58be82009-07-29 15:04:30 -07002476M: Vojtech Pavlik <vojtech@suse.cz>
Bob Piccob9b03322005-11-07 00:59:19 -08002477S: Maintained
2478
Joe Perches7d2c86b2009-04-07 20:59:01 -07002479HPET: ACPI
Joe Perches8b58be82009-07-29 15:04:30 -07002480M: Bob Picco <bob.picco@hp.com>
Bob Piccob9b03322005-11-07 00:59:19 -08002481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002482F: drivers/char/hpet.c
Bob Piccob9b03322005-11-07 00:59:19 -08002483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002485M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002488F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489
Joe Perches7d2c86b2009-04-07 20:59:01 -07002490HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002491M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002492W: http://www.pharscape.org
2493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002494F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002495
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002496HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002497M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002498L: linux-input@vger.kernel.org
2499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002500F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002501
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002503M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002505F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002507I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002508M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01002509L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002511F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002512
Jean Delvare5b543962005-08-15 19:51:02 +02002513I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002514M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
2515M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01002516L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002517W: http://i2c.wiki.kernel.org/
2518T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002520F: Documentation/i2c/
2521F: drivers/i2c/
2522F: include/linux/i2c.h
2523F: include/linux/i2c-dev.h
2524F: include/linux/i2c-id.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
Till Harbaume8c76ee2007-05-01 23:26:35 +02002526I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002527M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01002528L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002529W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002531F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002532
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07002534M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002536F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
2538i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07002539M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07002540T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541S: Maintained
2542
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07002544M: Tony Luck <tony.luck@intel.com>
2545M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546L: linux-ia64@vger.kernel.org
2547W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002548T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002550F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552IBM MCA SCSI SUBSYSTEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002553M: Michael Lang <langa2@kph.uni-mainz.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554W: http://www.uni-mainz.de/~langm000/linux.html
2555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002556F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
2558IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07002559M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002561F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562
2563IBM ServeRAID RAID DRIVER
2564P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07002565M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002567S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002568F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002570IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002571M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572L: linux-ide@vger.kernel.org
David S. Miller920d44e2009-06-21 16:11:33 -07002573T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002575F: Documentation/ide/
2576F: drivers/ide/
2577F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002579IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002580M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002581L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002583F: Documentation/cdrom/ide-cd
2584F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
Andy Henroid27471fd2008-10-09 11:45:22 -07002586IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07002587M: Andy Henroid <andrew.d.henroid@intel.com>
Andy Henroid27471fd2008-10-09 11:45:22 -07002588L: linux-pm@lists.linux-foundation.org
2589S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002590F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002591
Joe Perches7d2c86b2009-04-07 20:59:01 -07002592IEEE 1394 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002593M: Ben Collins <ben.collins@ubuntu.com>
2594M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595L: linux1394-devel@lists.sourceforge.net
2596W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002597T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002599F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
Joe Perches7d2c86b2009-04-07 20:59:01 -07002601IEEE 1394 RAW I/O DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002602M: Dan Dennedy <dan@dennedy.org>
2603M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07002605S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002606F: drivers/ieee1394/raw1394*
Jody McIntyre105d7b32005-09-30 11:59:04 -07002607
Sergey Lapin02cf2282009-06-08 12:18:50 +00002608IEEE 802.15.4 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002609M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2610M: Sergey Lapin <slapin@ossfans.org>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04002611L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00002612W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00002613T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00002614S: Maintained
2615F: net/ieee802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07002616F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00002617
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002618INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07002619M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002620S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002621F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002622
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002624L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Paul Mundt843393d2007-11-19 13:11:04 +09002625S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002626F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627
2628INFINIBAND SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002629M: Roland Dreier <rolandd@cisco.com>
2630M: Sean Hefty <sean.hefty@intel.com>
2631M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002632L: linux-rdma@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633W: http://www.openib.org/
Joe Perches54e58812009-04-07 21:08:10 -07002634T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002636F: Documentation/infiniband/
2637F: drivers/infiniband/
2638F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639
Robert Lovec9f04f52005-07-15 12:21:07 -04002640INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07002641M: John McCutchan <john@johnmccutchan.com>
2642M: Robert Love <rlove@rlove.org>
2643M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04002644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002645F: Documentation/filesystems/inotify.txt
2646F: fs/notify/inotify/
2647F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04002648
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002649INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002650M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
2651M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002652L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002653T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002655F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002656
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002657INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Joe Perches8b58be82009-07-29 15:04:30 -07002658M: Sylvain Meyer <sylvain.meyer@worldonline.fr>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002659L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002661F: Documentation/fb/intelfb.txt
2662F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002663
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002665M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002666L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002668F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302670INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002671M: Sujith Thomas <sujith.thomas@intel.com>
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302672L: linux-acpi@vger.kernel.org
2673W: http://www.lesswatts.org/projects/acpi/
2674S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002675F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302676
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002678M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002680F: arch/x86/kernel/microcode_core.c
2681F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002683INTEL I/OAT DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002684M: Maciej Sosnowski <maciej.sosnowski@intel.com>
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002685S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002686F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002687
David Woodhouse6c8909b2008-10-18 16:12:17 +01002688INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07002689M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01002690L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07002691T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01002692S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002693F: drivers/pci/intel-iommu.c
2694F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01002695
Dan Williamsb3e5f262007-08-07 10:26:35 -07002696INTEL IOP-ADMA DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002697M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002698S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002699F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07002700
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002701INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002702M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002704F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
2705F: arch/arm/mach-ixp4xx/include/mach/npe.h
2706F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
2707F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
2708F: drivers/net/arm/ixp4xx_eth.c
2709F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002710
Michael Buesch844dd052006-06-26 00:24:59 -07002711INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002712M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07002713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002714F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07002715
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002716INTEL IXP2000 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002717M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002718L: netdev@vger.kernel.org
2719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002720F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002721
Auke Kokd94e6fe2008-03-03 14:37:47 -08002722INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe)
Joe Perches8b58be82009-07-29 15:04:30 -07002723M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2724M: Jesse Brandeburg <jesse.brandeburg@intel.com>
2725M: Bruce Allan <bruce.w.allan@intel.com>
2726M: PJ Waskiewicz <peter.p.waskiewicz.jr@intel.com>
2727M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08002728L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08002729W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002731F: drivers/net/e100.c
2732F: drivers/net/e1000/
2733F: drivers/net/e1000e/
2734F: drivers/net/igb/
2735F: drivers/net/ixgb/
2736F: drivers/net/ixgbe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737
James Ketrenos826d2ab2005-11-07 18:56:59 -06002738INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002739M: Zhu Yi <yi.zhu@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002740M: Reinette Chatre <reinette.chatre@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07002741M: Intel Linux Wireless <ilw@linux.intel.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07002742L: linux-wireless@vger.kernel.org
James Ketrenos826d2ab2005-11-07 18:56:59 -06002743W: http://ipw2100.sourceforge.net
Reinette Chatrea0bf7972009-08-21 14:03:51 -07002744S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002745F: Documentation/networking/README.ipw2100
2746F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06002747
2748INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002749M: Zhu Yi <yi.zhu@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002750M: Reinette Chatre <reinette.chatre@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07002751M: Intel Linux Wireless <ilw@linux.intel.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07002752L: linux-wireless@vger.kernel.org
James Ketrenos826d2ab2005-11-07 18:56:59 -06002753W: http://ipw2200.sourceforge.net
Reinette Chatrea0bf7972009-08-21 14:03:51 -07002754S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002755F: Documentation/networking/README.ipw2200
2756F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06002757
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08002758INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07002759M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08002760M: linux-wimax@intel.com
2761L: wimax@linuxwimax.org
2762S: Supported
2763W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07002764F: Documentation/wimax/README.i2400m
2765F: drivers/net/wimax/i2400m/
2766F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08002767
Zhu Yib481de92007-09-25 17:54:57 -07002768INTEL WIRELESS WIFI LINK (iwlwifi)
Joe Perches8b58be82009-07-29 15:04:30 -07002769M: Zhu Yi <yi.zhu@intel.com>
2770M: Reinette Chatre <reinette.chatre@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07002771M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07002772L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07002773W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07002774T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07002775S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002776F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07002777
Ralf Baechlecb109a02007-08-30 23:56:30 -07002778IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002779M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780L: linux-mips@linux-mips.org
2781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002782F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
Ralf Baechlecb109a02007-08-30 23:56:30 -07002784IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002785M: Pat Gefre <pfg@sgi.com>
Joe Perches6650e0a2007-12-10 15:49:32 -08002786L: linux-mips@linux-mips.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07002787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002788F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07002789
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002790IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07002791M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002793F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794
Francois Romieu1202d6f2007-09-17 17:13:55 -07002795IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002796M: Francois Romieu <romieu@fr.zoreil.com>
2797M: Sorbica Shieh <sorbica@icplus.com.tw>
2798M: Jesse Huang <jesse@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07002799L: netdev@vger.kernel.org
2800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002801F: drivers/net/ipg.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07002802
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002803IPATH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002804M: Ralph Campbell <infinipath@qlogic.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002805L: linux-rdma@vger.kernel.org
Arthur Jonesf42b6472007-07-09 20:12:26 -07002806T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08002807S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002808F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08002809
Corey Minyard4409ebe2006-04-20 02:43:12 -07002810IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002811M: Corey Minyard <minyard@acm.org>
Corey Minyard4409ebe2006-04-20 02:43:12 -07002812L: openipmi-developer@lists.sourceforge.net
2813W: http://openipmi.sourceforge.net/
2814S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002815F: Documentation/IPMI.txt
2816F: drivers/char/ipmi/
2817F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07002818
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002819IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002820M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002821L: linux-scsi@vger.kernel.org
2822W: http://www.adaptec.com/
2823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002824F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002825
2826IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07002827M: Wensong Zhang <wensong@linux-vs.org>
2828M: Simon Horman <horms@verge.net.au>
2829M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002830L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002831L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002833F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a72009-09-21 17:04:12 -07002834F: include/net/ip_vs.h
2835F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07002836F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837
Randy Dunlape7839f22008-10-12 16:11:45 -07002838IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002839M: Jiri Kosina <jkosina@suse.cz>
2840M: David Sterba <dsterba@suse.cz>
David Sterba099dc4f2008-02-07 10:57:12 +01002841S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07002842T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07002843F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01002844
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002845IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002846M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002847L: netdev@vger.kernel.org
2848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002849F: include/linux/ipx.h
2850F: include/net/ipx.h
2851F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002852
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002854M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07002855L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07002857S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02002858T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07002859F: Documentation/networking/irda.txt
2860F: drivers/net/irda/
2861F: include/net/irda/
2862F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002864ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07002865M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002867F: Documentation/isapnp.txt
2868F: drivers/pnp/isapnp/
2869F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002870
Mike Christie14816b12007-11-28 16:22:06 -08002871ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07002872M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b12007-11-28 16:22:06 -08002873L: open-iscsi@googlegroups.com
2874W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07002875T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08002876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002877F: drivers/scsi/*iscsi*
2878F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08002879
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002881M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07002882L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07002884T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002886F: Documentation/isdn/
2887F: drivers/isdn/
2888F: include/linux/isdn.h
2889F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
2891ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07002892M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07002893L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894W: http://www.melware.de
2895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002896F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897
Hans Verkuil91821ff2007-12-02 09:35:33 -03002898IVTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002899M: Hans Verkuil <hverkuil@xs4all.nl>
Hans Verkuil91821ff2007-12-02 09:35:33 -03002900L: ivtv-devel@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002901L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002902T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03002903W: http://www.ivtvdriver.org
2904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002905F: Documentation/video4linux/*.ivtv
2906F: drivers/media/video/ivtv/
2907F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03002908
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002909JFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002910M: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002911L: jfs-discussion@lists.sourceforge.net
2912W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07002913T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05002914S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002915F: Documentation/filesystems/jfs.txt
2916F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002917
Guo-Fu Tseng95252232008-09-16 01:00:11 +08002918JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002919M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08002920L: netdev@vger.kernel.org
2921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002922F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08002923
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07002925M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04002926L: linux-mtd@lists.infradead.org
2927W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002929F: fs/jffs2/
2930F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931
Josh Triplettde456d32006-07-30 03:04:00 -07002932JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07002933M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02002934M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002935L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07002936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002937F: fs/jbd*/
2938F: include/linux/ext*jbd*.h
2939F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07002940
Rudolf Marek4660cb32006-10-08 22:01:26 +02002941K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002942M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02002943L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002945F: Documentation/hwmon/k8temp
2946F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
2948KCONFIG
Joe Perches8b58be82009-07-29 15:04:30 -07002949M: Roman Zippel <zippel@linux-m68k.org>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02002950L: linux-kbuild@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002952F: Documentation/kbuild/kconfig-language.txt
2953F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954
Vivek Goyalea6c2082006-05-20 14:59:55 -07002955KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07002956M: Vivek Goyal <vgoyal@redhat.com>
2957M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07002958L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07002959W: http://lse.sourceforge.net/kdump/
2960S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07002961F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07002962
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963KERNEL AUTOMOUNTER (AUTOFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002964M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965L: autofs@linux.kernel.org
2966S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002967F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
2969KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07002970M: Ian Kent <raven@themaw.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971L: autofs@linux.kernel.org
2972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002973F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974
Joe Perches7d2c86b2009-04-07 20:59:01 -07002975KERNEL BUILD
Joe Perches8b58be82009-07-29 15:04:30 -07002976M: Sam Ravnborg <sam@ravnborg.org>
Joe Perches54e58812009-04-07 21:08:10 -07002977T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git
2978T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
Sam Ravnborg347d12d2007-10-18 13:23:33 +02002979L: linux-kbuild@vger.kernel.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002981F: Documentation/kbuild/
2982F: Makefile
2983F: scripts/Makefile.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
2985KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07002986L: kernel-janitors@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987W: http://www.kerneljanitors.org/
Markus Heidelbergcf830112009-06-12 01:00:28 +02002988S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04002990KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002991M: "J. Bruce Fields" <bfields@fieldses.org>
2992M: Neil Brown <neilb@suse.de>
Neil Brown16141c02007-12-11 16:16:12 -08002993L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08002995S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002996F: fs/nfsd/
2997F: include/linux/nfsd/
2998F: fs/lockd/
2999F: fs/nfs_common/
3000F: net/sunrpc/
3001F: include/linux/lockd/
3002F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
Avi Kivity426d62e2006-12-13 00:34:03 -08003004KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07003005M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03003006M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003007L: kvm@vger.kernel.org
3008W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003009S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003010F: Documentation/*/kvm.txt
3011F: arch/*/kvm/
3012F: arch/*/include/asm/kvm*
3013F: include/linux/kvm*
3014F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003015
Joerg Roedelad8003d2008-09-10 20:01:07 +02003016KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07003017M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003018L: kvm@vger.kernel.org
3019W: http://kvm.qumranet.com
3020S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003021F: arch/x86/include/asm/svm.h
3022F: arch/x86/kvm/kvm_svm.h
3023F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003024
Hollis Blanchard513014b2008-04-16 23:28:08 -05003025KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Joe Perches8b58be82009-07-29 15:04:30 -07003026M: Hollis Blanchard <hollisb@us.ibm.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003027L: kvm-ppc@vger.kernel.org
3028W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003029S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003030F: arch/powerpc/include/asm/kvm*
3031F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003032
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003033KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07003034M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003035L: kvm-ia64@vger.kernel.org
3036W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003037S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003038F: Documentation/ia64/kvm.txt
3039F: arch/ia64/include/asm/kvm*
3040F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003041
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003042KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07003043M: Carsten Otte <cotte@de.ibm.com>
3044M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003045M: linux390@de.ibm.com
3046L: linux-s390@vger.kernel.org
3047W: http://www.ibm.com/developerworks/linux/linux390/
3048S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003049F: Documentation/s390/kvm.txt
3050F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003051F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003052
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003053KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07003054M: Eric Biederman <ebiederm@xmission.com>
Signed-off-by@vergenet.net":Simonb7c698f2007-10-18 03:04:33 -07003055W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
Simon Horman34633992007-05-08 00:31:40 -07003056L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003058F: include/linux/kexec.h
3059F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003060
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003061KGDB
Joe Perches8b58be82009-07-29 15:04:30 -07003062M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003063L: kgdb-bugreport@lists.sourceforge.net
3064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003065F: Documentation/DocBook/kgdb.tmpl
3066F: drivers/misc/kgdbts.c
3067F: drivers/serial/kgdboc.c
3068F: include/linux/kgdb.h
3069F: kernel/kgdb.c
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003070
Pekka Enberg456db8c2008-04-28 22:47:29 +03003071KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07003072M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg456db8c2008-04-28 22:47:29 +03003073P Pekka Enberg
3074M: penberg@cs.helsinki.fi
Pekka Enberg456db8c2008-04-28 22:47:29 +03003075S: Maintained
3076
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003077KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07003078M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003079S: Maintained
3080F: Documentation/kmemleak.txt
3081F: include/linux/kmemleak.h
3082F: mm/kmemleak.c
3083F: mm/kmemleak-test.c
3084
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003085KMEMTRACE
Joe Perches8b58be82009-07-29 15:04:30 -07003086M: Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003087S: Maintained
Joe Perchesdc8c7f82009-04-21 12:24:45 -07003088F: Documentation/trace/kmemtrace.txt
Joe Perches898f96f2009-06-18 16:49:25 -07003089F: include/linux/kmemtrace.h
Joe Perches679655d2009-04-07 20:44:32 -07003090F: kernel/trace/kmemtrace.c
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003091
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003092KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07003093M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
3094M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
3095M: "David S. Miller" <davem@davemloft.net>
3096M: Masami Hiramatsu <mhiramat@redhat.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003097S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003098F: Documentation/kprobes.txt
3099F: include/linux/kprobes.h
3100F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003101
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003102KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003103M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07003104W: http://miguelojeda.es/auxdisplay.htm
3105W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003107F: Documentation/auxdisplay/ks0108
3108F: drivers/auxdisplay/ks0108.c
3109F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003110
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003113S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003114F: Documentation/networking/lapb-module.txt
3115F: include/*/lapb.h
3116F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117
3118LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07003119M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120L: linux-scsi@vger.kernel.org
3121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003122F: Documentation/scsi/53c700.txt
3123F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
Richard Purdie263de9b2006-05-15 09:44:16 -07003125LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003126M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie263de9b2006-05-15 09:44:16 -07003127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003128F: drivers/leds/
3129F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003130
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07003132M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133L: legousb-devel@lists.sourceforge.net
3134W: http://legousb.sourceforge.net/
3135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003136F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137
Rusty Russell568a17f2007-10-25 14:12:24 +10003138LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07003139M: Rusty Russell <rusty@rustcorp.com.au>
Rusty Russell568a17f2007-10-25 14:12:24 +10003140L: lguest@ozlabs.org
3141W: http://lguest.ozlabs.org/
3142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003143F: Documentation/lguest/
3144F: arch/x86/lguest/
3145F: drivers/lguest/
3146F: include/linux/lguest*.h
3147F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003148
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07003150M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151W: http://www.ibm.com/linux/ltc/projects/ppc
3152S: Supported
3153
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003154LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07003155M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
3156M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157W: http://www.penguinppc.org/
3158L: linuxppc-dev@ozlabs.org
Joe Perches54e58812009-04-07 21:08:10 -07003159T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160S: Supported
3161
3162LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07003163M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164W: http://www.penguinppc.org/
3165L: linuxppc-dev@ozlabs.org
3166S: Maintained
3167
Grant Likely77a76362008-07-12 12:11:43 -06003168LINUX FOR POWERPC EMBEDDED MPC5XXX
Joe Perches8b58be82009-07-29 15:04:30 -07003169M: Grant Likely <grant.likely@secretlab.ca>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003171T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172S: Maintained
3173
3174LINUX FOR POWERPC EMBEDDED PPC4XX
Joe Perches8b58be82009-07-29 15:04:30 -07003175M: Josh Boyer <jwboyer@linux.vnet.ibm.com>
3176M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003178L: linuxppc-dev@ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003179T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180S: Maintained
3181
Grant Likely260c02a2007-10-02 12:15:34 +10003182LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07003183M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06003184W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Grant Likely260c02a2007-10-02 12:15:34 +10003185L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003186T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187S: Maintained
3188
Tom Rinie93adf12005-07-26 12:49:53 -07003189LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07003190M: Vitaly Bordug <vitb@kernel.crashing.org>
3191M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07003192W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003193L: linuxppc-dev@ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003194S: Maintained
3195
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07003197M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01003198W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003199L: linuxppc-dev@ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003200S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
Olof Johanssonab06ff32006-09-06 14:44:54 -05003202LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07003203M: Olof Johansson <olof@lixom.net>
Olof Johanssonab06ff32006-09-06 14:44:54 -05003204W: http://www.pasemi.com/
3205L: linuxppc-dev@ozlabs.org
3206S: Supported
3207
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07003209M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08003210L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003211T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212S: Supported
3213
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003214LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07003215M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003217F: include/linux/llc.h
3218F: include/net/llc*
3219F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003220
Pavel Machek455fbdd2008-11-12 13:27:02 -08003221LIS3LV02D ACCELEROMETER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003222M: Eric Piel <eric.piel@tremplin-utc.net>
Pavel Machek455fbdd2008-11-12 13:27:02 -08003223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003224F: Documentation/hwmon/lis3lv02d
3225F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003226
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003228M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003229L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003231F: Documentation/hwmon/lm83
3232F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
3234LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003235M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003236L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003238F: Documentation/hwmon/lm90
3239F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003241LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07003242M: Peter Zijlstra <peterz@infradead.org>
3243M: Ingo Molnar <mingo@redhat.com>
Joe Perches54e58812009-04-07 21:08:10 -07003244T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003246F: Documentation/lockdep*.txt
3247F: Documentation/lockstat.txt
3248F: include/linux/lockdep.h
3249F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003250
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003251LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07003252M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003253L: linux-ntfs-dev@lists.sourceforge.net
3254W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003256F: Documentation/ldm.txt
3257F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003259LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07003260M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08003261M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003262L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003263L: linux-scsi@vger.kernel.org
3264W: http://www.lsilogic.com/support
3265S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003266F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003267
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07003269M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270L: linux-scsi@vger.kernel.org
3271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003272F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273
Mike Frysinger81365c32008-10-29 14:01:12 -07003274LTP (Linux Test Project)
Joe Perches8b58be82009-07-29 15:04:30 -07003275M: Subrata Modak <subrata@linux.vnet.ibm.com>
3276M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger81365c32008-10-29 14:01:12 -07003277L: ltp-list@lists.sourceforge.net (subscribers-only)
3278W: http://ltp.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003279T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07003280S: Maintained
3281
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003282M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003283M: Hirokazu Takata <takata@linux-m32r.org>
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003284L: linux-m32r@ml.linux-m32r.org
3285L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3286W: http://www.linux-m32r.org/
3287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003288F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003289
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003291M: Geert Uytterhoeven <geert@linux-m68k.org>
3292M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293L: linux-m68k@lists.linux-m68k.org
3294W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003295T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003297F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003298F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299
3300M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07003301M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003303L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003305F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306
3307M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07003308M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309W: http://www.tazenda.demon.co.uk/phil/linux-hp
3310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003311F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312
Jiri Benc64a327a2007-05-05 11:47:08 -07003313MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07003314M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07003315L: linux-wireless@vger.kernel.org
3316W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003317T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003319F: Documentation/networking/mac80211-injection.txt
3320F: include/net/mac80211.h
3321F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003322
Stefano Brivio1036d862007-12-23 04:46:27 +01003323MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07003324M: Stefano Brivio <stefano.brivio@polimi.it>
3325M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01003326L: linux-wireless@vger.kernel.org
3327W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003328T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003330F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003331
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003332MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003333M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003334L: netdev@vger.kernel.org
3335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003336F: drivers/net/macvlan.c
3337F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003338
Michael Kerriskfaf16682005-07-31 22:34:47 -07003339MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07003340M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003341W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003342L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003343S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003344
Stefano Brivio74cda162007-11-19 20:27:46 +01003345MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003346M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01003347L: libertas-dev@lists.infradead.org
3348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003349F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003350
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003351MARVELL MV643XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003352M: Lennert Buytenhek <buytenh@marvell.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003353L: netdev@vger.kernel.org
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003354S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003355F: drivers/net/mv643xx_eth.*
3356F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02003358MARVELL MWL8K WIRELESS DRIVER
3359M: Lennert Buytenhek <buytenh@marvell.com>
3360L: linux-wireless@vger.kernel.org
3361S: Supported
3362F: drivers/net/wireless/mwl8k.c
3363
Pierre Ossman2a695672009-03-16 19:52:26 +01003364MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04003365M: Nicolas Pitre <nico@fluxnic.net>
Pierre Ossman2a695672009-03-16 19:52:26 +01003366S: Maintained
3367
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003368MARVELL YUKON / SYSKONNECT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003369M: Mirko Lindner <mlindner@syskonnect.de>
3370M: Ralph Roesler <rroesler@syskonnect.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003371W: http://www.syskonnect.com
3372S: Supported
3373
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374MATROX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003375M: Petr Vandrovec <vandrove@vc.cvut.cz>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003376L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003378F: drivers/video/matrox/matroxfb_*
3379F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003381MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003382M: "Hans J. Koch" <hjk@linutronix.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003383L: lm-sensors@lm-sensors.org
3384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003385F: Documentation/hwmon/max6650
3386F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003387
Joe Perches127c49a2009-04-08 08:34:04 -07003388MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07003389M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07003390P: LinuxTV.org Project
3391L: linux-media@vger.kernel.org
3392W: http://linuxtv.org
3393T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3394S: Maintained
3395F: Documentation/dvb/
3396F: Documentation/video4linux/
3397F: drivers/media/
3398F: include/media/
3399F: include/linux/dvb/
3400F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003401
3402MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003403M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003404L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003405W: http://megaraid.lsilogic.com
3406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003407F: Documentation/scsi/megaraid.txt
3408F: drivers/scsi/megaraid.*
3409F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003410
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003411MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413W: http://www.linux-mm.org
3414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003415F: include/linux/mm.h
3416F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003417
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003418MEMORY RESOURCE CONTROLLER
Joe Perches8b58be82009-07-29 15:04:30 -07003419M: Balbir Singh <balbir@linux.vnet.ibm.com>
3420M: Pavel Emelyanov <xemul@openvz.org>
3421M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003422L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003424F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003425
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07003427M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428W: http://www.linux-mtd.infradead.org/
3429L: linux-mtd@lists.infradead.org
Josh Boyer2c560ac2005-11-23 15:43:57 -08003430T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003432F: drivers/mtd/
3433F: include/linux/mtd/
3434F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
Michal Simekc6375b02009-03-27 14:25:52 +01003436MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003437M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01003438L: microblaze-uclinux@itee.uq.edu.au
3439W: http://www.monstr.eu/fdt/
3440T: git git://git.monstr.eu/linux-2.6-microblaze.git
3441S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02003442F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443
3444MICROTEK X6 SCANNER
Joe Perches8b58be82009-07-29 15:04:30 -07003445M: Oliver Neukum <oliver@neukum.name>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003447F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448
3449MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07003450M: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003451W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003453T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003454S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003455F: Documentation/mips/
3456F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457
3458MISCELLANEOUS MCA-SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003459M: James Bottomley <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003461F: Documentation/ia64/mca.txt
3462F: Documentation/mca.txt
3463F: drivers/mca/
3464F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
3466MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003467M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003469F: include/linux/module.h
3470F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471
3472MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003473M: Stelian Pop <stelian@popies.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474W: http://popies.net/meye/
3475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003476F: Documentation/video4linux/meye.txt
3477F: drivers/media/video/meye.*
3478F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479
Pavel Pisac58ff042007-05-16 01:10:41 +02003480MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003481M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07003482L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02003483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003484F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003485
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486MOUSE AND MISC DEVICES [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07003487M: Alessandro Rubini <rubini@ipvvis.unipv.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003489F: drivers/input/mouse/
3490F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491
Jiri Slabyb9705b62008-04-30 00:53:48 -07003492MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07003493M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08003494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003495F: Documentation/serial/moxa-smartio
3496F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003497
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003498MSI LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003499M: Lennart Poettering <mzxreary@0pointer.de>
Joe Perches04bdfb92007-12-22 14:03:27 -08003500W: https://tango.0pointer.de/mailman/listinfo/s270-linux
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003501W: http://0pointer.de/lennart/tchibo.html
3502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003503F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003504
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003505MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07003506M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07003507T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003508S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003509F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003510
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003511MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Pierre Ossman3822a0e32009-07-31 12:27:28 +02003512S: Orphan
Andrew Mortonb2503a92009-08-18 14:11:12 -07003513L: linux-mmc@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -07003514F: drivers/mmc/
3515F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01003516
David Brownell15a05802007-08-08 09:12:54 -07003517MULTIMEDIA CARD (MMC) ETC. OVER SPI
Joe Perches8b58be82009-07-29 15:04:30 -07003518M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003519S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003520F: drivers/mmc/host/mmc_spi.c
3521F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07003522
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003524M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003526F: Documentation/sound/oss/MultiSound
3527F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528
Jiri Slabyd7354102006-12-08 02:38:35 -08003529MULTITECH MULTIPORT CARD (ISICOM)
Joe Perches8b58be82009-07-29 15:04:30 -07003530M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08003531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003532F: drivers/char/isicom.c
3533F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08003534
Felipe Balbi550a7372008-07-24 12:27:36 +03003535MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Joe Perches8b58be82009-07-29 15:04:30 -07003536M: Felipe Balbi <felipe.balbi@nokia.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003537L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003538T: git git://gitorious.org/musb/mainline.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02003539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003540F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03003541
Brice Goglin2d3cf582008-05-17 12:45:36 +02003542MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07003543M: Andrew Gallatin <gallatin@myri.com>
3544M: Brice Goglin <brice@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02003545L: netdev@vger.kernel.org
3546W: http://www.myri.com/scs/download-Myri10GE.html
3547S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003548F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02003549
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550NATSEMI ETHERNET DRIVER (DP8381x)
Joe Perches8b58be82009-07-29 15:04:30 -07003551M: Tim Hockin <thockin@hockin.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003553F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554
3555NCP FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003556M: Petr Vandrovec <vandrove@vc.cvut.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003558F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559
3560NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07003561M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562L: linux-scsi@vger.kernel.org
3563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003564F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003566NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07003567M: Faisal Latif <faisal.latif@intel.com>
3568M: Chien Tung <chien.tin.tung@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003569L: linux-rdma@vger.kernel.org
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003570W: http://www.neteffect.com
3571S: Supported
3572F: drivers/infiniband/hw/nes/
3573
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003574NETEM NETWORK EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003575M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07003576L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003578F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003579
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003580NETERION (S2IO) 10GbE DRIVER (xframe/vxge)
Joe Perches8b58be82009-07-29 15:04:30 -07003581M: Ramkrishna Vepa <ram.vepa@neterion.com>
3582M: Rastapur Santosh <santosh.rastapur@neterion.com>
3583M: Sivakumar Subramani <sivakumar.subramani@neterion.com>
3584M: Sreenivasa Honnur <sreenivasa.honnur@neterion.com>
3585M: Anil Murthy <anil.murthy@neterion.com>
Jiri Slaby4a584482007-08-30 23:56:39 -07003586L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003587W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
3588W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07003589S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003590F: Documentation/networking/s2io.txt
3591F: drivers/net/s2io*
Jiri Slaby4a584482007-08-30 23:56:39 -07003592
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593NETFILTER/IPTABLES/IPCHAINS
3594P: Rusty Russell
3595P: Marc Boucher
3596P: James Morris
3597P: Harald Welte
3598P: Jozsef Kadlecsik
Joe Perches8b58be82009-07-29 15:04:30 -07003599M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07003600L: netfilter-devel@vger.kernel.org
3601L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07003602L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603W: http://www.netfilter.org/
3604W: http://www.iptables.org/
Joe Perches3f1f7cf2009-07-01 11:32:10 +02003605T: git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003607F: include/linux/netfilter*
3608F: include/linux/netfilter/
3609F: include/net/netfilter/
3610F: net/*/netfilter.c
3611F: net/*/netfilter/
3612F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613
Paul Moore4cc67732006-09-25 15:57:13 -07003614NETLABEL
Joe Perches8b58be82009-07-29 15:04:30 -07003615M: Paul Moore <paul.moore@hp.com>
Paul Moore4cc67732006-09-25 15:57:13 -07003616W: http://netlabel.sf.net
3617L: netdev@vger.kernel.org
3618S: Supported
Joe Perches80811492009-04-08 20:20:27 -07003619F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07003620F: include/net/netlabel.h
3621F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07003622
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003624M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02003626W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003628F: include/linux/netrom.h
3629F: include/net/netrom.h
3630F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631
Pavel Machek5ddb88c2006-09-29 02:01:29 -07003632NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07003633M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003635F: Documentation/blockdev/nbd.txt
3636F: drivers/block/nbd.c
3637F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638
3639NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07003640M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003641L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00003642W: http://www.linuxfoundation.org/en/Net
3643T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003645F: net/
3646F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00003647F: include/linux/in.h
3648F: include/linux/net.h
3649F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650
3651NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07003652M: "David S. Miller" <davem@davemloft.net>
3653M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
3654M: "Pekka Savola (ipv6)" <pekkas@netcore.fi>
3655M: James Morris <jmorris@namei.org>
3656M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
3657M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003658L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003659T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003661F: net/ipv4/
3662F: net/ipv6/
3663F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664
James Morris10e2ff12007-08-25 14:41:28 -07003665NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Joe Perches8b58be82009-07-29 15:04:30 -07003666M: Paul Moore <paul.moore@hp.com>
James Morris10e2ff12007-08-25 14:41:28 -07003667L: netdev@vger.kernel.org
3668S: Maintained
3669
John W. Linville29f8f632006-01-18 14:52:48 -08003670NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07003671M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08003672L: linux-wireless@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003673T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08003674S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07003675F: net/mac80211/
3676F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07003677F: net/wireless/
3678F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07003679F: include/linux/wireless.h
Joe Perches34b921c2009-08-07 13:16:15 -07003680F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08003681
Joe Perches788873a2009-04-16 09:38:45 +00003682NETWORKING DRIVERS
3683L: netdev@vger.kernel.org
3684W: http://www.linuxfoundation.org/en/Net
3685T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
3686S: Odd Fixes
3687F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00003688F: include/linux/if_*
3689F: include/linux/*device.h
Joe Perches788873a2009-04-16 09:38:45 +00003690
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003691NETXEN (1/10) GbE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003692M: Dhananjay Phadke <dhananjay@netxen.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003693L: netdev@vger.kernel.org
3694W: http://www.netxen.com
3695S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003696F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003697
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003698NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07003699M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05003700L: linux-nfs@vger.kernel.org
3701W: http://client.linux-nfs.org
3702T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003704F: fs/lockd/
3705F: fs/nfs/
3706F: fs/nfs_common/
3707F: net/sunrpc/
3708F: include/linux/lockd/
3709F: include/linux/nfs*
3710F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711
3712NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003713M: Jan-Pascal van Best <janpascal@vanbest.org>
3714M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003715L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003717F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07003719NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003720M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07003721L: users@nilfs.org
3722W: http://www.nilfs.org/en/
3723S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003724F: Documentation/filesystems/nilfs2.txt
3725F: fs/nilfs2/
3726F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07003727
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003729M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
3731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003732F: Documentation/scsi/NinjaSCSI.txt
3733F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734
3735NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003736M: GOTO Masanori <gotom@debian.or.jp>
3737M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
3739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003740F: Documentation/scsi/NinjaSCSI.txt
3741F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743NTFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003744M: Anton Altaparmakov <aia21@cantab.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07003746W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07003747T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003749F: Documentation/filesystems/ntfs.txt
3750F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003752NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003753M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003754L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01003755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003756F: drivers/video/riva/
3757F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758
Tony Lindgrenf5525782009-05-28 13:23:53 -07003759OMAP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003760M: "Tony Lindgren <tony@atomide.com>" <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003761L: linux-omap@vger.kernel.org
3762W: http://www.muru.com/linux/omap/
3763W: http://linux.omap.com/
3764T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
3765S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07003766F: arch/arm/*omap*/
Tony Lindgrenf5525782009-05-28 13:23:53 -07003767
3768OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003769M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003770L: linux-omap@vger.kernel.org
3771S: Maintained
3772F: arch/arm/*omap*/*clock*
3773
3774OMAP POWER MANAGEMENT SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003775M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003776L: linux-omap@vger.kernel.org
3777S: Maintained
3778F: arch/arm/*omap*/*pm*
3779
3780OMAP AUDIO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003781M: Jarkko Nikula <jhnikula@gmail.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003782L: alsa-devel@alsa-project.org (subscribers-only)
3783L: linux-omap@vger.kernel.org
3784S: Maintained
3785F: sound/soc/omap/
3786
3787OMAP FRAMEBUFFER SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003788M: Imre Deak <imre.deak@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003789L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
3790L: linux-omap@vger.kernel.org
3791S: Maintained
3792F: drivers/video/omap/
3793
3794OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003795M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003796L: linux-omap@vger.kernel.org
3797S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07003798F: drivers/mmc/host/omap.c
3799
3800OMAP HS MMC SUPPORT
3801M: Madhusudhan Chikkature <madhu.cr@ti.com>
3802L: linux-omap@vger.kernel.org
3803S: Maintained
3804F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07003805
3806OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003807M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003808S: Maintained
3809F: drivers/char/hw_random/omap-rng.c
3810
3811OMAP USB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003812M: Felipe Balbi <felipe.balbi@nokia.com>
3813M: David Brownell <dbrownell@users.sourceforge.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003814L: linux-usb@vger.kernel.org
3815L: linux-omap@vger.kernel.org
3816S: Maintained
3817
Bob Copeland0ad122d2008-07-25 19:45:18 -07003818OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003819M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07003820L: linux-karma-devel@lists.sourceforge.net
3821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003822F: Documentation/filesystems/omfs.txt
3823F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07003824
Harald Weltec1986ee2005-11-13 16:06:29 -08003825OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003826M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08003827S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003828F: drivers/char/pcmcia/cm4000_cs.c
3829F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08003830
Harald Welte77c44ab2005-11-13 16:06:26 -08003831OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003832M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08003833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003834F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08003835
Jonathan Corbet77d51402007-03-22 19:44:17 -03003836OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003837M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003838L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003839T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03003840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003841F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03003842
Thomas Gleixner431bca72007-05-02 09:31:35 +02003843ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003844M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02003845L: linux-mtd@lists.infradead.org
3846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003847F: drivers/mtd/onenand/
3848F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02003849
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003851M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852L: osst-users@lists.sourceforge.net
3853L: linux-scsi@vger.kernel.org
3854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003855F: drivers/scsi/osst*
3856F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003858OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003859M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01003860L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003862F: Documentation/i2c/busses/i2c-ocores
3863F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003864
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07003866M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867L: oprofile-list@lists.sf.net
3868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003869F: arch/*/oprofile/
3870F: drivers/oprofile/
3871F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003873ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07003874M: Mark Fasheh <mfasheh@suse.com>
3875M: Joel Becker <joel.becker@oracle.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003876L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
3877W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07003878T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003879S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003880F: Documentation/filesystems/ocfs2.txt
3881F: Documentation/filesystems/dlmfs.txt
3882F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003883
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884ORINOCO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003885M: Pavel Roskin <proski@gnu.org>
3886M: David Gibson <hermes@gibson.dropbear.id.au>
Johannes Berg724c6b32007-04-23 12:18:20 -07003887L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07003888L: orinoco-users@lists.sourceforge.net
3889L: orinoco-devel@lists.sourceforge.net
3890W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003892F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03003894OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003895M: Boaz Harrosh <bharrosh@panasas.com>
3896M: Benny Halevy <bhalevy@panasas.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02003897L: osd-dev@open-osd.org
3898W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07003899T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02003900S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03003901F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07003902F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03003903F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02003904
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003905P54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003906M: Michael Wu <flamingice@sourmilk.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003907L: linux-wireless@vger.kernel.org
3908W: http://prism54.org
Joe Perches54e58812009-04-07 21:08:10 -07003909T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003911F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003912
Olof Johanssonf5cd7872007-01-31 21:43:54 -06003913PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003914M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06003915L: netdev@vger.kernel.org
3916S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003917F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06003918
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01003919PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003920M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01003921L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01003922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003923F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01003924
Harald Welte709ee532008-09-23 17:46:57 +02003925PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003926M: Harald Welte <laforge@gnumonks.org>
Harald Welte709ee532008-09-23 17:46:57 +02003927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003928F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02003929
David Howells4fa97182008-10-13 10:42:44 +01003930PANASONIC MN10300/AM33 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003931M: David Howells <dhowells@redhat.com>
3932M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01003933L: linux-am33-list@redhat.com (moderated for non-subscribers)
3934W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
3935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003936F: Documentation/mn10300/
3937F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01003938
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07003940L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08003941S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003942F: drivers/parport/
3943F: include/linux/parport*.h
3944F: drivers/char/ppdev.c
3945F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003947PARAVIRT_OPS INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07003948M: Jeremy Fitzhardinge <jeremy@xensource.com>
3949M: Chris Wright <chrisw@sous-sol.org>
3950M: Alok Kataria <akataria@vmware.com>
3951M: Rusty Russell <rusty@rustcorp.com.au>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003952L: virtualization@lists.osdl.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003953S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003954F: Documentation/ia64/paravirt_ops.txt
3955F: arch/*/kernel/paravirt*
3956F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003957
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07003959M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07003960L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961W: http://www.torque.net/linux-pp.html
3962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003963F: Documentation/blockdev/paride.txt
3964F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965
3966PARISC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003967M: Kyle McMartin <kyle@mcmartin.ca>
3968M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003969L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970W: http://www.parisc-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07003971T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003973F: arch/parisc/
3974F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975
Jim Cromie1662d322006-10-06 00:43:59 -07003976PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003977M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07003978L: lm-sensors@lm-sensors.org
3979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003980F: Documentation/hwmon/pc87360
3981F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07003982
3983PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003984M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07003985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003986F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07003987
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003988PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003989M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003990S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003991F: drivers/leds/leds-pca9532.c
3992F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003993
Wolfram Sanga1867d32009-09-18 22:45:51 +02003994PCA9564/PCA9665 I2C BUS DRIVER
3995M: Wolfram Sang <w.sang@pengutronix.de>
3996L: linux-i2c@vger.kernel.org
3997S: Maintained
3998F: drivers/i2c/algos/i2c-algo-pca.c
3999F: drivers/i2c/busses/i2c-pca-*
4000F: include/linux/i2c-algo-pca.h
4001F: include/linux/i2c-pca-platform.h
4002
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004003PCI ERROR RECOVERY
Joe Perches8b58be82009-07-29 15:04:30 -07004004M: Linas Vepstas <linas@austin.ibm.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004005L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004006S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004007F: Documentation/PCI/pci-error-recovery.txt
4008F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004009
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010PCI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004011M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes29054742008-05-03 08:35:49 -07004012L: linux-pci@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004013T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004015F: Documentation/PCI/
4016F: drivers/pci/
4017F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018
Jesse Barnesbe3652b2009-09-17 10:01:07 -07004019PCI HOTPLUG
4020M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07004021L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004022S: Supported
Jesse Barnesbe3652b2009-09-17 10:01:07 -07004023F: drivers/pci/hotplug
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004024
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004026P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004027L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004028W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004029T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004031F: Documentation/pcmcia/
4032F: drivers/pcmcia/
4033F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034
4035PCNET32 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004036M: Don Fry <pcnet32@verizon.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004037L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004039F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004041PER-TASK DELAY ACCOUNTING
Joe Perches8b58be82009-07-29 15:04:30 -07004042M: Balbir Singh <balbir@linux.vnet.ibm.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004044F: include/linux/delayacct.h
4045F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004046
Ingo Molnar57c0c152009-09-21 12:20:38 +02004047PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004048M: Peter Zijlstra <a.p.zijlstra@chello.nl>
4049M: Paul Mackerras <paulus@samba.org>
4050M: Ingo Molnar <mingo@elte.hu>
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004051S: Supported
4052
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004053PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07004054M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004055L: linux-abi-devel@lists.sourceforge.net
4056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004057F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004058
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004060M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061L: linux-mtd@lists.infradead.org
4062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004063F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064
Peter Osterlund249a6772005-09-27 21:45:30 -07004065PKTCDVD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004066M: Peter Osterlund <petero2@telia.com>
Peter Osterlund249a6772005-09-27 21:45:30 -07004067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004068F: drivers/block/pktcdvd.c
4069F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004070
Anil Ravindranath89a36812009-08-25 17:35:18 -07004071PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07004072M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07004073L: linux-scsi@vger.kernel.org
4074W: http://www.pmc-sierra.com/
4075S: Supported
4076F: drivers/scsi/pmcraid.*
4077
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07004079M: Thomas Gleixner <tglx@linutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004081F: fs/timerfd.c
4082F: include/linux/timer*
4083F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084
Anton Vorontsov3be86142007-07-15 04:43:36 +04004085POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004086M: Anton Vorontsov <cbou@mail.ru>
4087M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07004088T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004089S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004090F: include/linux/power_supply.h
4091F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004092
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004094M: Adam Belay <abelay@mit.edu>
4095M: Bjorn Helgaas <bjorn.helgaas@hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004097F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098
Vitaly Wool999445d2007-01-04 13:07:03 +01004099PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004100M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01004101L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004103F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004104
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07004106M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107L: linux-ppp@vger.kernel.org
4108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004109F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110
4111PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07004112M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004114F: net/atm/pppoatm.c
4115F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116
4117PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07004118M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004120F: drivers/net/pppoe.c
4121F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122
James Chapmana6d23702007-06-27 15:53:17 -07004123PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07004124M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07004125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004126F: drivers/net/pppol2tp.c
4127F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004128
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004129PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004130M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004131W: http://wiki.enneenne.com/index.php/LinuxPPS_support
4132L: linuxpps@ml.enneenne.com (subscribers-only)
4133S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07004134F: Documentation/pps/
4135F: drivers/pps/
4136F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004137
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07004139M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140L: kpreempt-tech@lists.sourceforge.net
4141W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4142S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004143F: Documentation/preempt-locking.txt
4144F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145
4146PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004147M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004148L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149W: http://prism54.org
4150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004151F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152
4153PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004154M: Peter Denison <promise@pnd-pc.demon.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155W: http://www.pnd-pc.demon.co.uk/promise/
4156S: Maintained
4157
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004158PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004159M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004160L: linux-ide@vger.kernel.org
4161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004162F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004163
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004164PS3 NETWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004165M: Geoff Levand <geoffrey.levand@am.sony.com>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004166L: netdev@vger.kernel.org
4167L: cbe-oss-dev@ozlabs.org
4168S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004169F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004170
Geoff Levandf58a9d12006-11-23 00:46:51 +01004171PS3 PLATFORM SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004172M: Geoff Levand <geoffrey.levand@am.sony.com>
Geoff Levandf58a9d12006-11-23 00:46:51 +01004173L: linuxppc-dev@ozlabs.org
4174L: cbe-oss-dev@ozlabs.org
4175S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004176F: arch/powerpc/boot/ps3*
4177F: arch/powerpc/include/asm/lv1call.h
4178F: arch/powerpc/include/asm/ps3*.h
4179F: arch/powerpc/platforms/ps3/
4180F: drivers/*/ps3*
4181F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00004182F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07004183F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00004184F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01004185
Jim Pariscffb4add2009-01-06 11:32:10 +00004186PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004187M: Jim Paris <jim@jtan.com>
Jim Pariscffb4add2009-01-06 11:32:10 +00004188L: cbe-oss-dev@ozlabs.org
4189S: Maintained
4190
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004191PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004192M: Roland McGrath <roland@redhat.com>
4193M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004194S: Maintained
4195F: include/asm-generic/syscall.h
4196F: include/linux/ptrace.h
4197F: include/linux/regset.h
4198F: include/linux/tracehook.h
4199F: kernel/ptrace.c
4200
Michael Krufky83202042006-07-03 00:24:18 -07004201PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004202M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03004203L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004204L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004205W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004206T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004208F: Documentation/video4linux/README.pvrusb2
4209F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004210
Eric Miao30ec2612008-06-12 15:21:41 -07004211PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004212M: Eric Miao <eric.y.miao@gmail.com>
4213M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004214L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004216F: arch/arm/mach-pxa/
4217F: drivers/pcmcia/pxa2xx*
4218F: drivers/spi/pxa2xx*
4219F: drivers/usb/gadget/pxa2*
4220F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01004221F: sound/arm/pxa*
4222F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004224PXA168 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004225M: Eric Miao <eric.y.miao@gmail.com>
4226M: Jason Chagas <jason.chagas@marvell.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004227L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -07004228T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004229S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004230
Eric Miao5fa82eb2009-03-20 12:52:24 +08004231PXA910 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004232M: Eric Miao <eric.y.miao@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004233L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -07004234T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004235S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08004236
Pierre Ossman272f1332007-05-14 21:25:26 +02004237PXA MMCI DRIVER
4238S: Orphan
4239
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004240PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004241M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004242L: rtc-linux@googlegroups.com
4243S: Maintained
4244
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004246M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004247M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248L: linux-scsi@vger.kernel.org
4249S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004250F: Documentation/scsi/LICENSE.qla2xxx
4251F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252
Ron Mercer5a4faa82006-07-25 00:40:21 -07004253QLOGIC QLA3XXX NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004254M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa82006-07-25 00:40:21 -07004255M: linux-driver@qlogic.com
4256L: netdev@vger.kernel.org
4257S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004258F: Documentation/networking/LICENSE.qla3xxx
4259F: drivers/net/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07004260
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004261QLOGIC QLGE 10Gb ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004262M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07004263M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004264L: netdev@vger.kernel.org
4265S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004266F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004267
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004269M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270W: http://www.alarsen.net/linux/qnx4fs/
4271S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004272F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07004273F: include/linux/qnx4_fs.h
4274F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275
4276RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004277M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004278L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004280F: drivers/video/aty/radeon*
4281F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282
4283RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004284M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004285L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004287F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288
Randy Dunlape7839f22008-10-12 16:11:45 -07004289RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004290P: rt2x00 project
4291L: linux-wireless@vger.kernel.org
Ivo van Doorn6d5eaaf2009-03-17 11:29:19 +01004292L: users@rt2x00.serialmonkey.com
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004293W: http://rt2x00.serialmonkey.com/
4294S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004295T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004296F: drivers/net/wireless/rt2x00/
4297
Nick Piggin9db55792008-02-08 04:19:49 -08004298RAMDISK RAM BLOCK DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004299M: Nick Piggin <npiggin@suse.de>
Nick Piggin9db55792008-02-08 04:19:49 -08004300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004301F: Documentation/blockdev/ramdisk.txt
4302F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004303
Matt Mackall9e95ce22005-04-16 15:25:56 -07004304RANDOM NUMBER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004305M: Matt Mackall <mpm@selenic.com>
Matt Mackall9e95ce22005-04-16 15:25:56 -07004306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004307F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004308
Matt Porter394b7012005-11-07 01:00:15 -08004309RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004310M: Matt Porter <mporter@kernel.crashing.org>
Matt Porter394b7012005-11-07 01:00:15 -08004311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004312F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004313
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004314RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004315M: Corey Thomas <coreythomas@charter.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004316L: linux-wireless@vger.kernel.org
4317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004318F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004319
4320RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07004321M: Josh Triplett <josh@freedesktop.org>
4322M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004324F: Documentation/RCU/torture.txt
4325F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004326
Florian Fainellic1f766b2008-02-06 22:39:44 +01004327RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07004328M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01004329S: Maintained
4330
Florian Fainellidb17f392007-12-19 11:30:30 +01004331RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004332M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01004333L: netdev@vger.kernel.org
4334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004335F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004336
Andy Grovera09ed662009-02-24 15:30:41 +00004337RDS - RELIABLE DATAGRAM SOCKETS
Joe Perches8b58be82009-07-29 15:04:30 -07004338M: Andy Grover <andy.grover@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00004339L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00004340S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004341F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004342
Josh Triplett595182b2006-10-04 02:17:21 -07004343READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07004344M: Dipankar Sarma <dipankar@in.ibm.com>
4345M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Josh Triplett595182b2006-10-04 02:17:21 -07004346W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07004347S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004348F: Documentation/RCU/rcu.txt
4349F: Documentation/RCU/rcuref.txt
4350F: include/linux/rcupdate.h
4351F: include/linux/srcu.h
4352F: kernel/rcupdate.c
Josh Triplett595182b2006-10-04 02:17:21 -07004353
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354REAL TIME CLOCK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004355M: Paul Gortmaker <p_gortmaker@yahoo.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004357F: Documentation/rtc.txt
4358F: drivers/rtc/
4359F: include/linux/rtc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004361REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004362M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08004363L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004365F: Documentation/rtc.txt
4366F: drivers/rtc/
4367F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004368
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004370L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004372F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373
Ivo van Doorne08976452008-04-12 19:23:55 +02004374RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07004375M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02004376L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02004377S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004378F Documentation/rfkill.txt
4379F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02004380
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004381RISCOM8 DRIVER
4382S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004383F: Documentation/serial/riscom8.txt
4384F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004385
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386ROCKETPORT DRIVER
4387P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388W: http://www.comtrol.com
4389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004390F: Documentation/serial/rocket.txt
4391F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392
4393ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004394M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004396W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004398F: include/linux/rose.h
4399F: include/net/rose.h
4400F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401
Larry Finger59840482008-11-12 17:13:09 -06004402RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004403M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04004404L: linux-wireless@vger.kernel.org
4405W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004406T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04004407S: Maintained
Joe Perches2b3daf52009-07-21 13:09:56 -07004408F: drivers/net/wireless/rtl818x/rtl8180*
Michael Wu605bebe2007-05-14 01:41:02 -04004409
Larry Finger59840482008-11-12 17:13:09 -06004410RTL8187 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004411M: Herton Ronaldo Krzesinski <herton@mandriva.com.br>
4412M: Hin-Tak Leung <htl10@users.sourceforge.net>
4413M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07004414L: linux-wireless@vger.kernel.org
4415W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004416T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07004417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004418F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06004419
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004420S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004421M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004422L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004424F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004425
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426S390
Joe Perches8b58be82009-07-29 15:04:30 -07004427M: Martin Schwidefsky <schwidefsky@de.ibm.com>
4428M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004430L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004431W: http://www.ibm.com/developerworks/linux/linux390/
4432S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004433F: arch/s390/
Heiko Carstens5238da42006-02-11 17:56:01 -08004434
4435S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004436M: Ursula Braun <ursula.braun@de.ibm.com>
4437M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08004438M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004439L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004440W: http://www.ibm.com/developerworks/linux/linux390/
4441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004442F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08004443
Felix Beckfeed9b62009-03-26 15:24:23 +01004444S390 ZCRYPT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004445M: Felix Beck <felix.beck@de.ibm.com>
4446M: Ralph Wuerthner <ralph.wuerthner@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01004447M: linux390@de.ibm.com
4448L: linux-s390@vger.kernel.org
4449S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004450F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01004451
Heiko Carstens5238da42006-02-11 17:56:01 -08004452S390 ZFCP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004453M: Christof Schmitt <christof.schmitt@de.ibm.com>
4454M: Martin Peschke <mp3@de.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08004455M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004456L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004457W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004459F: Documentation/s390/zfcpdump.txt
4460F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461
Ursula Braundd96df22007-09-19 13:09:02 +02004462S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004463M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02004464M: linux390@de.ibm.com
4465L: linux-s390@vger.kernel.org
4466W: http://www.ibm.com/developerworks/linux/linux390/
4467S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004468F: drivers/s390/net/*iucv*
4469F: include/net/iucv/
4470F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02004471
Ben Dooks4dde7f72008-06-30 22:40:38 +01004472S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07004473M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004474L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01004475S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004476F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01004477
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004479M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004480L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004481T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482W: http://www.mihu.de/linux/saa7146
4483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004484F: drivers/media/common/saa7146*
4485F: drivers/media/video/*7146*
4486F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004489M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004491F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492
4493SCHEDULER
Joe Perches8b58be82009-07-29 15:04:30 -07004494M: Ingo Molnar <mingo@elte.hu>
4495M: Peter Zijlstra <peterz@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004497F: kernel/sched*
4498F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499
Chen Liqin6bcf6732009-06-13 15:24:33 +08004500SCORE ARCHITECTURE
4501P: Chen Liqin
4502M: liqin.chen@sunplusct.com
4503P: Lennox Wu
Chen Liqin7e483862009-09-23 11:40:15 +08004504M: lennox.wu@gmail.com
Chen Liqin6bcf6732009-06-13 15:24:33 +08004505W: http://www.sunplusct.com
4506S: Supported
4507
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004509M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510L: linux-scsi@vger.kernel.org
4511W: http://www.kernel.dk
4512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004513F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514
4515SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004516M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517L: linux-scsi@vger.kernel.org
4518W: http://www.torque.net/sg
4519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004520F: drivers/scsi/sg.c
4521F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522
4523SCSI SUBSYSTEM
James Bottomley60df75c2009-08-13 19:23:12 +00004524M: "James E.J. Bottomley" <James.Bottomley@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004526T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
4527T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
4528T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004530F: drivers/scsi/
4531F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532
4533SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004534M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535L: linux-scsi@vger.kernel.org
4536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004537F: Documentation/scsi/st.txt
4538F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539
4540SCTP PROTOCOL
Joe Perches8b58be82009-07-29 15:04:30 -07004541M: Vlad Yasevich <vladislav.yasevich@hp.com>
4542M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07004543L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07004544W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01004545S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004546F: Documentation/networking/sctp.txt
4547F: include/linux/sctp.h
4548F: include/net/sctp/
4549F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550
4551SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004552M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004553S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004554F: Documentation/i2c/busses/scx200_acb
4555F: arch/x86/kernel/scx200_32.c
4556F: drivers/watchdog/scx200_wdt.c
4557F: drivers/i2c/busses/scx200*
4558F: drivers/mtd/maps/scx200_docflash.c
4559F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07004560
4561SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004562M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004564F: drivers/char/scx200_gpio.c
4565F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07004566
4567SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004568M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004570F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571
Sascha Sommer6a369132008-07-15 14:21:29 +02004572SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004573M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02004574L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
4575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004576F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02004577
Randy Dunlape7839f22008-10-12 16:11:45 -07004578SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Pierre Ossman5be46162009-09-21 17:00:59 -07004579S: Orphan
4580L: linux-mmc@vger.kernel.org
4581F: drivers/mmc/host/sdhci.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004582
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03004583SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07004584M: Anton Vorontsov <avorontsov@ru.mvista.com>
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03004585L: linuxppc-dev@ozlabs.org
Pierre Ossman5be46162009-09-21 17:00:59 -07004586L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587S: Maintained
Pierre Ossman5be46162009-09-21 17:00:59 -07004588F: drivers/mmc/host/sdhci-of.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589
Ben Dooks0d1bb412009-06-14 13:52:37 +01004590SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004591M: Ben Dooks <ben-linux@fluff.org>
Pierre Ossman5be46162009-09-21 17:00:59 -07004592L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01004593S: Maintained
4594F: drivers/mmc/host/sdhci-s3c.c
4595
James Morris8711cca2008-12-04 03:19:45 +11004596SECURITY SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004597M: James Morris <jmorris@namei.org>
James Morris8711cca2008-12-04 03:19:45 +11004598L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perches54e58812009-04-07 21:08:10 -07004599T: git git://www.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11004600W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11004601S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07004602F: security/
James Morris8711cca2008-12-04 03:19:45 +11004603
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07004605M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606S: Supported
4607
4608SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07004609M: Stephen Smalley <sds@tycho.nsa.gov>
4610M: James Morris <jmorris@namei.org>
4611M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07004612L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04004613W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07004614T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004616F: include/linux/selinux*
4617F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618
Jiri Slabycef2cf02007-05-08 00:31:45 -07004619SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07004620M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07004621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004622F: drivers/misc/phantom.c
4623F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07004624
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004625SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004626M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004628T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004630F: drivers/ata/
4631F: include/linux/ata.h
4632F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004634SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004635M: Sathya Perla <sathyap@serverengines.com>
4636M: Subbu Seetharaman <subbus@serverengines.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07004637L: netdev@vger.kernel.org
4638W: http://www.serverengines.com
4639S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004640F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004641
Ben Hutchings8ceee662008-04-27 12:55:59 +01004642SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00004643M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
4644M: Steve Hodgson <shodgson@solarflare.com>
4645M: Ben Hutchings <bhutchings@solarflare.com>
4646L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01004647S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004648F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01004649
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004650SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004651M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004653F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004654
4655SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004656M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004657L: linux-ia64@vger.kernel.org
4658S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004659F: Documentation/ia64/serial.txt
4660F: drivers/serial/ioc?_serial.c
4661F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004662
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07004664M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665L: linux-visws-devel@lists.sf.net
4666W: http://linux-visws.sf.net
4667S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07004668F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669
Jack Steiner75312612008-08-15 00:40:42 -07004670SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004671M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07004672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004673F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07004674
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004675SHARP LH SUPPORT (LH7952X & LH7A40X)
Joe Perches8b58be82009-07-29 15:04:30 -07004676M: Marc Singer <elf@buici.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004677W: http://projects.buici.com/arm
Joe Perchesefc03ec2009-09-21 17:04:27 -07004678L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004680F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
4681F: arch/arm/mach-lh7a40x/
4682F: drivers/serial/serial_lh7a40x.c
4683F: drivers/usb/gadget/lh7a40*
4684F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004685
Len Brown6349d992009-08-14 15:07:14 -04004686SIMPLE FIRMWARE INTERFACE (SFI)
4687P: Len Brown
4688M: lenb@kernel.org
4689L: sfi-devel@simplefirmware.org
4690W: http://simplefirmware.org/
4691T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004692S: Supported
Len Brown6349d992009-08-14 15:07:14 -04004693F: arch/x86/kernel/*sfi*
4694F: drivers/sfi/
4695F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004696
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697SIMTEC EB110ATX (Chalice CATS)
4698P: Ben Dooks
Joe Perches8b58be82009-07-29 15:04:30 -07004699M: Vincent Sanders <support@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700W: http://www.simtec.co.uk/products/EB110ATX/
4701S: Supported
4702
4703SIMTEC EB2410ITX (BAST)
4704P: Ben Dooks
Joe Perches8b58be82009-07-29 15:04:30 -07004705M: Vincent Sanders <support@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706W: http://www.simtec.co.uk/products/EB2410ITX/
4707S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004708F: arch/arm/mach-s3c2410/
4709F: drivers/*/*s3c2410*
4710F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711
Kevin Hilman4c5adde2009-06-19 12:02:33 -07004712TI DAVINCI MACHINE SUPPORT
4713P: Kevin Hilman
4714M: davinci-linux-open-source@linux.davincidsp.com
4715S: Supported
4716F: arch/arm/mach-davinci
4717
Francois Romieu92aab3c2005-07-30 13:11:18 +02004718SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004719M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02004720L: netdev@vger.kernel.org
4721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004722F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02004723
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004725M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07004727L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004729F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004731SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004732M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01004733L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004735F: Documentation/i2c/busses/i2c-sis96x
4736F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004737
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004739M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03004741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004742F: Documentation/fb/sisfb.txt
4743F: drivers/video/sis/
4744F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745
4746SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004747M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748W: http://www.winischhofer.at/linuxsisusbvga.shtml
4749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004750F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004752SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004753M: Stephen Hemminger <shemminger@linux-foundation.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004754L: netdev@vger.kernel.org
4755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004756F: drivers/net/skge.*
4757F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004758
Christoph Lameter415ad262007-07-26 10:40:56 -07004759SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07004760M: Christoph Lameter <cl@linux-foundation.org>
4761M: Pekka Enberg <penberg@cs.helsinki.fi>
4762M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07004763L: linux-mm@kvack.org
4764S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004765F: include/linux/sl?b*.h
4766F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07004767
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004769M: Nicolas Pitre <nico@fluxnic.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004771F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004773SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004774M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004775L: lm-sensors@lm-sensors.org
4776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004777F: Documentation/hwmon/smsc47b397
4778F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004779
Steve Glendinningfd9abb32008-11-05 00:35:37 +00004780SMSC911x ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004781M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00004782L: netdev@vger.kernel.org
4783S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004784F: include/linux/smsc911x.h
4785F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00004786
Steve Glendinning2cb37722008-12-11 20:54:30 -08004787SMSC9420 PCI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004788M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2cb37722008-12-11 20:54:30 -08004789L: netdev@vger.kernel.org
4790S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004791F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08004792
Ben Nizetteb54f2862008-03-13 22:27:30 +11004793SMX UIO Interface
Joe Perches8b58be82009-07-29 15:04:30 -07004794M: Ben Nizette <bn@niasdigital.com>
Ben Nizetteb54f2862008-03-13 22:27:30 +11004795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004796F: drivers/uio/uio_smx.c
Ben Nizetteb54f2862008-03-13 22:27:30 +11004797
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004798SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07004799M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004800L: linux-altix@sgi.com
4801L: linux-ia64@vger.kernel.org
4802W: http://www.sgi.com/altix
4803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004804F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004805
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03004806SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004807M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004808L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004809T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004811F: include/media/v4l2*
4812F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03004813
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004814SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004815M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004817F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004818
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004820M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08004822S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004823F: drivers/md/
4824F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004827M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004828L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004830F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831
Michael Buesch61e115a2007-09-18 15:12:50 -04004832SONICS SILICON BACKPLANE DRIVER (SSB)
Joe Perches8b58be82009-07-29 15:04:30 -07004833M: Michael Buesch <mb@bu3sch.de>
Michael Buesch61e115a2007-09-18 15:12:50 -04004834L: netdev@vger.kernel.org
4835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004836F: drivers/ssb/
4837F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04004838
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004840M: Mattia Dongili <malattia@linux.it>
Mattia Dongili5b181672007-03-12 21:43:57 +01004841L: linux-acpi@vger.kernel.org
4842W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004844F: Documentation/laptops/sony-laptop.txt
4845F: drivers/char/sonypi.c
4846F: drivers/platform/x86/sony-laptop.c
4847F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848
Alex Dubovbaf85322008-02-09 10:20:54 -08004849SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004850M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08004851W: http://tifmxx.berlios.de/
4852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004853F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08004854
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07004856M: Jaroslav Kysela <perex@perex.cz>
4857M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07004858L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07004859W: http://www.alsa-project.org/
4860T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
4861T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07004863F: Documentation/sound/
4864F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07004865F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866
Mark Brownbd903bd2008-11-19 19:16:05 +00004867SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Joe Perches8b58be82009-07-29 15:04:30 -07004868M: Liam Girdwood <lrg@slimlogic.co.uk>
4869M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownbb74a6e2009-05-13 17:23:54 +01004870T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07004871L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01004872W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02004873S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004874F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01004875F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02004876
Sam Ravnborg473321f2009-01-04 15:47:49 -08004877SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07004878M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879L: sparclinux@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004880T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
4881T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004883F: arch/sparc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884
4885SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004886M: Roger Wolff <R.E.Wolff@BitWizard.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004888F: Documentation/serial/specialix.txt
4889F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004891SPI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004892M: David Brownell <dbrownell@users.sourceforge.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004893L: spi-devel-general@lists.sourceforge.net
4894S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004895F: Documentation/spi/
4896F: drivers/spi/
4897F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004898
Jim Lewis2752e402006-09-29 02:01:19 -07004899SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07004900M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
4901M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07004902L: netdev@vger.kernel.org
4903S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004904F: Documentation/networking/spider_net.txt
4905F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07004906
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004907SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004908M: Jeremy Kerr <jk@ozlabs.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004909L: linuxppc-dev@ozlabs.org
4910L: cbe-oss-dev@ozlabs.org
4911W: http://www.ibm.com/developerworks/power/cell/
4912S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004913F: Documentation/filesystems/spufs.txt
4914F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004915
Phillip Lougherfc555842009-01-05 08:46:29 +00004916SQUASHFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004917M: Phillip Lougher <phillip@lougher.demon.co.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00004918L: squashfs-devel@lists.sourceforge.net (subscribers-only)
4919W: http://squashfs.org.uk
4920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004921F: Documentation/filesystems/squashfs.txt
4922F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00004923
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07004925M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004927F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928
Linus Torvalds26e9a392008-10-17 09:50:12 -07004929STABLE BRANCH
Joe Perches8b58be82009-07-29 15:04:30 -07004930M: Greg Kroah-Hartman <greg@kroah.com>
4931M: Chris Wright <chrisw@sous-sol.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004932L: stable@kernel.org
4933S: Maintained
4934
Linus Torvalds26e9a392008-10-17 09:50:12 -07004935STAGING SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004936M: Greg Kroah-Hartman <gregkh@suse.de>
Linus Torvalds26e9a392008-10-17 09:50:12 -07004937T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07004938L: devel@driverdev.osuosl.org
Linus Torvalds26e9a392008-10-17 09:50:12 -07004939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004940F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07004941
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004943M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07004944S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004945F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946
4947STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004948S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004949F: drivers/net/wireless/strip.c
4950F: include/linux/if_strip.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951
4952STRADIS MPEG-2 DECODER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004953M: Nathan Laredo <laredo@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954W: http://www.stradis.com/
4955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004956F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004958SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07004959M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004960W: http://sammy.net/sun3/
4961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004962F: arch/m68k/kernel/*sun3*
4963F: arch/m68k/sun3*/
4964F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004965
Paul Mundt2cbb12a2007-11-19 13:08:37 +09004966SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07004967M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09004968L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969W: http://www.linux-sh.org
Joe Perches54e58812009-04-07 21:08:10 -07004970T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09004971S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09004972F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07004973F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09004974F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004976SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07004977M: Len Brown <len.brown@intel.com>
4978M: Pavel Machek <pavel@ucw.cz>
4979M: "Rafael J. Wysocki" <rjw@sisk.pl>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004980L: linux-pm@lists.linux-foundation.org
4981S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004982F: Documentation/power/
4983F: arch/x86/kernel/acpi/
4984F: drivers/base/power/
4985F: kernel/power/
4986F: include/linux/suspend.h
4987F: include/linux/freezer.h
4988F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989
4990SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07004991M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992L: linux-video@atrey.karlin.mff.cuni.cz
4993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004994F: Documentation/svga.txt
4995F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996
4997SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004998M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005000F: Documentation/filesystems/sysv-fs.txt
5001F: fs/sysv/
5002F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003
Alan Cox4e688522008-04-30 00:52:11 -07005004TASKSTATS STATISTICS INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07005005M: Balbir Singh <balbir@linux.vnet.ibm.com>
Alan Cox4e688522008-04-30 00:52:11 -07005006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005007F: Documentation/accounting/taskstats*
5008F: include/linux/taskstats*
5009F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005010
Stephen Hemminger781b4562006-07-10 20:25:29 -07005011TC CLASSIFIER
Joe Perches8b58be82009-07-29 15:04:30 -07005012M: Jamal Hadi Salim <hadi@cyberus.ca>
Stephen Hemminger781b4562006-07-10 20:25:29 -07005013L: netdev@vger.kernel.org
5014S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005015F: include/linux/pkt_cls.h
5016F: include/net/pkt_cls.h
5017F: net/sched/
Stephen Hemminger781b4562006-07-10 20:25:29 -07005018
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005019TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005020M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
5021M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005022W: http://tcp-lp-mod.sourceforge.net/
5023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005024F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005025
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005026TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005027M: Alexander Indenbaum <baum@tehutinetworks.net>
5028M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005029L: netdev@vger.kernel.org
5030S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005031F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005032
Alan Cox4e688522008-04-30 00:52:11 -07005033Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07005034M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07005035S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005036F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005037
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005038TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07005039M: Chris Zankel <chris@zankel.net>
Alan Cox4e688522008-04-30 00:52:11 -07005040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005041F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005042
5043THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005044M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07005045L: ibm-acpi-devel@lists.sourceforge.net
5046W: http://ibm-acpi.sourceforge.net
5047W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005048T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005050F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005051
Alex Dubov4020f2d2006-10-04 02:15:37 -07005052TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005053M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005055F: drivers/misc/tifm*
5056F: drivers/mmc/host/tifm_sd.c
5057F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005058
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03005059TI TWL4030 SERIES SOC CODEC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005060M: Peter Ujfalusi <peter.ujfalusi@nokia.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03005061L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5062S: Maintained
5063F: sound/soc/codecs/twl4030*
5064
Per Lidene86eaa32006-01-12 16:45:18 +01005065TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005066M: Per Liden <per.liden@ericsson.com>
5067M: Jon Maloy <jon.maloy@ericsson.com>
5068M: Allan Stephens <allan.stephens@windriver.com>
Per Lidene86eaa32006-01-12 16:45:18 +01005069L: tipc-discussion@lists.sourceforge.net
5070W: http://tipc.sourceforge.net/
5071W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07005072T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01005073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005074F: include/linux/tipc*.h
5075F: include/net/tipc/
5076F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01005077
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005079M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08005080L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005081W: http://sourceforge.net/projects/tlan/
5082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005083F: Documentation/networking/tlan.txt
5084F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005086TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005087M: Kentaro Takeda <takedakn@nttdata.co.jp>
5088M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005089L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
5090L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5091L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5092W: http://tomoyo.sourceforge.jp/
5093T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/
5094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005095F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005096
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03005097TOPSTAR LAPTOP EXTRAS DRIVER
5098M: Herton Ronaldo Krzesinski <herton@mandriva.com.br>
5099S: Maintained
5100F: drivers/platform/x86/topstar-laptop.c
5101
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102TOSHIBA ACPI EXTRAS DRIVER
Johannes Berg15065532009-03-30 12:02:35 +02005103S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005104F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105
5106TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005107M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108L: tlinux-users@tce.toshiba-dme.co.jp
5109W: http://www.buzzard.org.uk/toshiba/
5110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005111F: drivers/char/toshiba.c
5112F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113
Pierre Ossmand719f902009-03-24 21:06:09 +01005114TMIO MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005115M: Ian Molton <ian@mnementh.co.uk>
Pierre Ossmand719f902009-03-24 21:06:09 +01005116S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005117F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01005118
Hugh Dickins98f32602009-05-21 20:33:58 +01005119TMPFS (SHMEM FILESYSTEM)
Joe Perches8b58be82009-07-29 15:04:30 -07005120M: Hugh Dickins <hugh.dickins@tiscali.co.uk>
Hugh Dickins98f32602009-05-21 20:33:58 +01005121L: linux-mm@kvack.org
5122S: Maintained
5123F: include/linux/shmem_fs.h
5124F: mm/shmem.c
5125
Alan Cox4e688522008-04-30 00:52:11 -07005126TPM DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005127M: Debora Velarde <debora@linux.vnet.ibm.com>
5128M: Rajiv Andrade <srajiv@linux.vnet.ibm.com>
Alan Cox4e688522008-04-30 00:52:11 -07005129W: http://tpmdd.sourceforge.net
Joe Perches8b58be82009-07-29 15:04:30 -07005130M: Marcel Selhorst <m.selhorst@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08005131W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07005132L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07005133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005134F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07005135
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07005137M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07005138T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139S: Maintained
5140
Alan Cox4e688522008-04-30 00:52:11 -07005141TTY LAYER
Greg Kroah-Hartman57d7f282009-07-31 21:28:16 -07005142M: Greg Kroah-Hartman <gregkh@suse.de>
5143S: Maintained
5144T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Alan Coxe3288772009-07-07 16:39:54 +01005145F: drivers/char/tty_*
5146F: drivers/serial/serial_core.c
5147F: include/linux/serial_core.h
5148F: include/linux/serial.h
5149F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07005150
Grant Grundler740db6d2008-02-17 11:53:49 -07005151TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005152M: Grant Grundler <grundler@parisc-linux.org>
5153M: Kyle McMartin <kyle@mcmartin.ca>
Grant Grundler740db6d2008-02-17 11:53:49 -07005154L: netdev@vger.kernel.org
5155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005156F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157
5158TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07005159M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160L: vtun@office.satix.net
5161W: http://vtun.sourceforge.net/tun
5162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005163F: Documentation/networking/tuntap.txt
5164F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005166TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005167M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005169F: drivers/tc/
5170F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005171
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005173M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174L: linux-scsi@vger.kernel.org
5175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005176F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005178UBI FILE SYSTEM (UBIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07005179M: Artem Bityutskiy <dedekind@infradead.org>
5180M: Adrian Hunter <adrian.hunter@nokia.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005181L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005182T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005183W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005185F: Documentation/filesystems/ubifs.txt
5186F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005187
Alan Coxcc2020e2008-05-19 14:21:51 +01005188UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07005189M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01005190W: http://www.uclinux.org/
5191L: uclinux-dev@uclinux.org (subscribers-only)
5192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005193F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005194
Robert P. J. Day14fadca2009-04-21 12:24:47 -07005195UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07005196M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01005197W: http://uclinux-h8.sourceforge.jp/
5198S: Supported
5199
Linus Torvalds1da177e2005-04-16 15:20:36 -07005200UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005201M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202W: http://linux-udf.sourceforge.net
5203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005204F: Documentation/filesystems/udf.txt
5205F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206
Alan Coxcc2020e2008-05-19 14:21:51 +01005207UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005208M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01005209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005210F: Documentation/filesystems/ufs.txt
5211F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005212
David Vrabel18332a82008-09-17 16:34:44 +01005213ULTRA-WIDEBAND (UWB) SUBSYSTEM:
Joe Perches8b58be82009-07-29 15:04:30 -07005214M: David Vrabel <david.vrabel@csr.com>
David Vrabel18332a82008-09-17 16:34:44 +01005215L: linux-usb@vger.kernel.org
5216S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005217F: drivers/uwb/*
5218F: include/linux/uwb.h
5219F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005220
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005222M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223W: http://www.kernel.dk
5224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005225F: Documentation/cdrom/
5226F: drivers/cdrom/cdrom.c
5227F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005229UNSORTED BLOCK IMAGES (UBI)
Joe Perches8b58be82009-07-29 15:04:30 -07005230M: Artem Bityutskiy <dedekind@infradead.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005231W: http://www.linux-mtd.infradead.org/
5232L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005233T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005234S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005235F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07005236F: include/linux/mtd/ubi.h
5237F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005238
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239USB ACM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005240M: Oliver Neukum <oliver@neukum.name>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005241L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005243F: Documentation/usb/acm.txt
5244F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245
5246USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07005247M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005248L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005250F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252USB CDC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005253M: Greg Kroah-Hartman <greg@kroah.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005254L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255S: Maintained
5256W: http://www.kroah.com/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005257F: drivers/net/usb/cdc_*.c
5258F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005260USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005261M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005262L: linux-usb@vger.kernel.org
5263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005264F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005265
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005266USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005267M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02005268L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005269W: http://www.linux-usb.org/usbnet
5270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005271F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005272
Alan Coxcc2020e2008-05-19 14:21:51 +01005273USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005274M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01005275L: rio500-users@lists.sourceforge.net
5276W: http://rio500.sourceforge.net
5277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005278F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005279
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280USB EHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005281M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005282L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005283S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005284F: Documentation/usb/ehci.txt
5285F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286
Luca Risolia7ce08c92006-01-11 02:06:59 +00005287USB ET61X[12]51 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005288M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005289L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005290L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005291T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00005292W: http://www.linux-projects.org
5293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005294F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00005295
David Brownell69ae9e32006-11-14 02:03:31 -08005296USB GADGET/PERIPHERAL SUBSYSTEM
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 Brownell69ae9e32006-11-14 02:03:31 -08005299W: http://www.linux-usb.org/gadget
5300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005301F: drivers/usb/gadget/
5302F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08005303
Jiri Kosina2dea64b2007-07-11 12:12:11 +02005304USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07005305M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005306L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005307T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005309F: Documentation/usb/hiddev.txt
5310F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311
Olav Kongas959eea22005-11-03 17:38:14 +02005312USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005313M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005314L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02005315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005316F: drivers/usb/host/isp116x*
5317F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02005318
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319USB KAWASAKI LSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005320M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005321L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005323F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324
5325USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005326M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005327L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08005328L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329S: Maintained
5330W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005331F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332
5333USB OHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005334M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005335L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005336S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005337F: Documentation/usb/ohci.txt
5338F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339
Matthias Urlichsba460e42005-07-14 00:33:47 -07005340USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005341M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005342L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07005343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005344F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07005345
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346USB OV511 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005347M: Mark McClelland <mmcclell@bigfoot.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005348L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349W: http://alpha.dyndns.org/ov511/
5350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005351F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352
5353USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005354M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005355L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005356L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357W: http://pegasus2.sourceforge.net/
5358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005359F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005361USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07005362M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005363L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005364S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005365F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005366
5367USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005368M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005369L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005370L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371W: http://pegasus2.sourceforge.net/
5372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005373F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374
5375USB SE401 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005376M: Jeroen Vreeken <pe1rxq@amsat.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005377L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378W: http://www.chello.nl/~j.vreeken/se401/
5379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005380F: Documentation/video4linux/se401.txt
5381F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382
Alan Cox4e688522008-04-30 00:52:11 -07005383USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005384M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005385L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005387F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07005388
5389USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005390M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005391L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005392S: Maintained
5393W: http://geocities.com/i0xox0i
5394W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07005395F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07005396
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005398M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399W: http://www.reiner-sct.de/support/treiber_cyberjack.php
5400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005401F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402
5403USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005404M: Peter Berger <pberger@brimson.com>
5405M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005406L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005408F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409
5410USB SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005411M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005412L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005414F: Documentation/usb/usb-serial.txt
5415F: drivers/usb/serial/generic.c
5416F: drivers/usb/serial/usb-serial.c
5417F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005418
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005420M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005421L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005423F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424
5425USB SERIAL KEYSPAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005426M: Greg Kroah-Hartman <greg@kroah.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005427L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005428W: http://www.kroah.com/linux/
5429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005430F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431
5432USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005433M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005434L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005435W: http://www.connecttech.com
5436S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005437F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005439USB SMSC95XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005440M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005441L: netdev@vger.kernel.org
5442S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005443F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005444
Luca Risoliaf423b9a2007-03-26 16:12:04 -03005445USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005446M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005447L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005448L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005449T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450W: http://www.linux-projects.org
5451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005452F: Documentation/video4linux/sn9c102.txt
5453F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005454
5455USB SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005456M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005457L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08005459T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005461F: Documentation/usb/
5462F: drivers/net/usb/
5463F: drivers/usb/
5464F: include/linux/usb.h
5465F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466
5467USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005468M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005469L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005471F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472
David Brownell69ae9e32006-11-14 02:03:31 -08005473USB "USBNET" DRIVER FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07005474M: David Brownell <dbrownell@users.sourceforge.net>
Peter Korsgaard043600a2007-06-27 21:18:18 +02005475L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005476W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07005477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005478F: drivers/net/usb/usbnet.c
5479F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005480
Laurent Pinchartc0efd232008-06-30 15:04:50 -03005481USB VIDEO CLASS
Joe Perches8b58be82009-07-29 15:04:30 -07005482M: Laurent Pinchart <laurent.pinchart@skynet.be>
Jiri Slabya67534a2008-12-10 09:09:27 -03005483L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005484L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005485T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchartc0efd232008-06-30 15:04:50 -03005486W: http://linux-uvc.berlios.de
5487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005488F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03005489
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490USB W996[87]CF DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005491M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005492L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005493L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005494T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005495W: http://www.linux-projects.org
5496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005497F: Documentation/video4linux/w9968cf.txt
5498F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02005500USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07005501M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02005502L: linux-wireless@vger.kernel.org
5503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005504F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02005505
Sarah Sharpeb6bab12009-04-29 19:07:13 -07005506USB XHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005507M: Sarah Sharp <sarah.a.sharp@intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07005508L: linux-usb@vger.kernel.org
5509S: Supported
5510
Luca Risolia60f78052006-02-06 16:29:35 +00005511USB ZC0301 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005512M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005513L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005514L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005515T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00005516W: http://www.linux-projects.org
5517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005518F: Documentation/video4linux/zc0301.txt
5519F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00005520
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521USB ZD1201 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005522M: Jeroen Vreeken <pe1rxq@amsat.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005523L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005524W: http://linux-lc100020.sourceforge.net
5525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005526F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005528USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005529M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005530L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005531L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005532T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005533W: http://royale.zerezo.com/zr364xx/
5534S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005535F: Documentation/video4linux/zr364xx.txt
5536F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005537
Randy Dunlape7839f22008-10-12 16:11:45 -07005538USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07005539M: Jeff Dike <jdike@addtoit.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540L: user-mode-linux-devel@lists.sourceforge.net
5541L: user-mode-linux-user@lists.sourceforge.net
5542W: http://user-mode-linux.sourceforge.net
5543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005544F: Documentation/uml/
5545F: arch/um/
5546F: fs/hostfs/
5547F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005548
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01005549USERSPACE I/O (UIO)
Joe Perches8b58be82009-07-29 15:04:30 -07005550M: "Hans J. Koch" <hjk@linutronix.de>
5551M: Greg Kroah-Hartman <gregkh@suse.de>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01005552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005553F: Documentation/DocBook/uio-howto.tmpl
5554F: drivers/uio/
5555F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01005556
Karel Zakf899b0a2008-05-23 13:04:21 -07005557UTIL-LINUX-NG PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07005558M: Karel Zak <kzak@redhat.com>
Karel Zakf899b0a2008-05-23 13:04:21 -07005559L: util-linux-ng@vger.kernel.org
5560W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07005561T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07005562S: Maintained
5563
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07005564UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005565M: Michal Januszewski <spock@gentoo.org>
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07005566L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
5567W: http://dev.gentoo.org/~spock/projects/uvesafb/
5568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005569F: Documentation/fb/uvesafb.txt
5570F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07005571
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005572VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005573M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005575F: Documentation/filesystems/vfat.txt
5576F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005577
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005579M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005581F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005582
Jean Delvare32c0a522005-09-22 21:47:58 +02005583VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005584M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01005585L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02005586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005587F: Documentation/i2c/busses/i2c-viapro
5588F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02005589
Harald Weltef0bf7f62009-06-17 20:22:39 +02005590VIA SD/MMC CARD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005591M: Joseph Chan <JosephChan@via.com.tw>
5592M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02005593S: Maintained
5594F: drivers/mmc/host/via-sdmmc.c
5595
Joseph Chan69e4a7c2008-10-15 22:03:31 -07005596VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005597M: Joseph Chan <JosephChan@via.com.tw>
5598M: Scott Fang <ScottFang@viatech.com.cn>
Joseph Chan69e4a7c2008-10-15 22:03:31 -07005599L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
5600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005601F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07005602
Francois Romieu01f20732007-01-26 00:57:17 -08005603VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005604M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08005605L: netdev@vger.kernel.org
5606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005607F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608
Patrick McHardybe7f8272007-10-23 20:26:36 -07005609VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07005610M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07005611L: netdev@vger.kernel.org
5612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005613F: drivers/net/macvlan.c
5614F: include/linux/if_*vlan.h
5615F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07005616
Florian Fainelli55e331c2009-06-16 15:33:53 -07005617VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07005618M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli55e331c2009-06-16 15:33:53 -07005619L: openwrt-devel@lists.openwrt.org
5620S: Maintained
5621F: drivers/vlynq/vlynq.c
5622F: include/linux/vlynq.h
5623
Liam Girdwoode53e86c2008-07-10 15:48:00 +01005624VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07005625M: Liam Girdwood <lrg@slimlogic.co.uk>
5626M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01005627W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00005628W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07005629T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01005630S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005631F: drivers/regulator/
5632F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01005633
Juerg Haefligerab413192006-09-24 20:54:04 +02005634VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005635M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02005636L: lm-sensors@lm-sensors.org
5637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005638F: Documentation/hwmon/vt1211
5639F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02005640
Roger Lucas1de9e372005-11-26 20:20:05 +01005641VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005642M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01005643L: lm-sensors@lm-sensors.org
5644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005645F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01005646
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647W1 DALLAS'S 1-WIRE BUS
Joe Perches8b58be82009-07-29 15:04:30 -07005648M: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005650F: Documentation/w1/
5651F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652
Charles Spirakis13927072006-07-05 18:05:15 +02005653W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005654M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02005655L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04005656S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005657F: Documentation/hwmon/w83791d
5658F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02005659
Rudolf Marek61db0112006-12-12 18:18:30 +01005660W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005661M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01005662L: lm-sensors@lm-sensors.org
5663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005664F: Documentation/hwmon/w83793
5665F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01005666
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005668M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005670F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671
Wim Van Sebroeck35277612006-01-15 21:21:14 +01005672WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005673M: Wim Van Sebroeck <wim@iguana.be>
Joe Perches54e58812009-04-07 21:08:10 -07005674T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01005675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005676F: Documentation/watchdog/
5677F: drivers/watchdog/
5678F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01005679
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
Joe Perches8b58be82009-07-29 15:04:30 -07005681M: Jean Tourrilhes <jt@hpl.hp.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005682L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
5684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005685F: Documentation/networking/wavelan.txt
5686F: drivers/net/wireless/wavelan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687
5688WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005689M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690L: linux-scsi@vger.kernel.org
5691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005692F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005693
David Härdemane258b802009-09-21 17:04:53 -07005694WINBOND CIR DRIVER
5695P: David Härdeman
5696M: david@hardeman.nu
5697S: Maintained
5698F: drivers/input/misc/winbond-cir.c
5699
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005700WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07005701M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005702M: linux-wimax@intel.com
5703L: wimax@linuxwimax.org
5704S: Supported
5705W: http://linuxwimax.org
5706
David Vrabel18332a82008-09-17 16:34:44 +01005707WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005708M: David Vrabel <david.vrabel@csr.com>
David Vrabel18332a82008-09-17 16:34:44 +01005709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005710F: include/linux/wlp.h
5711F: drivers/uwb/wlp/
David Vrabel18332a82008-09-17 16:34:44 +01005712
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05005713WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005714M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05005715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005716F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05005717
Kalle Valo834da342009-07-21 14:26:08 +03005718WL1251 WIRELESS DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005719M: Kalle Valo <kalle.valo@nokia.com>
Kalle Valo834da342009-07-21 14:26:08 +03005720L: linux-wireless@vger.kernel.org
5721W: http://wireless.kernel.org
5722T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
5723S: Maintained
Luciano Coelho5e68ff62009-08-10 11:15:13 +03005724F: drivers/net/wireless/wl12xx/*
5725X: drivers/net/wireless/wl12xx/wl1271*
5726
5727WL1271 WIRELESS DRIVER
5728M: Luciano Coelho <luciano.coelho@nokia.com>
5729L: linux-wireless@vger.kernel.org
5730W: http://wireless.kernel.org
5731T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
5732S: Maintained
5733F: drivers/net/wireless/wl12xx/wl1271*
Kalle Valo834da342009-07-21 14:26:08 +03005734
Linus Torvalds1da177e2005-04-16 15:20:36 -07005735WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005736M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07005737L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03005738W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005740F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005741
Mark Brownfebf1df2008-04-02 00:51:09 -04005742WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005743M: Mark Brown <broonie@opensource.wolfsonmicro.com>
5744M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04005745L: linux-input@vger.kernel.org
5746T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
5747W: http://opensource.wolfsonmicro.com/node/7
5748S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005749F: drivers/input/touchscreen/*wm97*
5750F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04005751
Mark Brownb75ea162009-07-02 16:43:08 +01005752WOLFSON MICROELECTRONICS PMIC DRIVERS
5753P: Mark Brown
5754M: broonie@opensource.wolfsonmicro.com
5755L: linux-kernel@vger.kernel.org
5756T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
5757W: http://opensource.wolfsonmicro.com/node/8
5758S: Supported
5759F: drivers/leds/leds-wm83*.c
5760F: drivers/mfd/wm8*.c
5761F: drivers/power/wm83*.c
5762F: drivers/rtc/rtc-wm83*.c
5763F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01005764F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01005765F: drivers/watchdog/wm83*_wdt.c
Mark Brown3860e6c2009-09-09 14:46:43 +01005766F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01005767F: include/linux/mfd/wm8350/
5768F: include/linux/mfd/wm8400/
5769F: sound/soc/codecs/wm8350.c
5770F: sound/soc/codecs/wm8400.c
5771
Linus Torvalds1da177e2005-04-16 15:20:36 -07005772X.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005773M: Henner Eisen <eis@baty.hanse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774L: linux-x25@vger.kernel.org
5775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005776F: Documentation/networking/x25*
5777F: include/net/x25*
5778F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005780X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07005781M: Thomas Gleixner <tglx@linutronix.de>
5782M: Ingo Molnar <mingo@redhat.com>
5783M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08005784M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005785T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005787F: Documentation/x86/
5788F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005789
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02005790XEN HYPERVISOR INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07005791M: Jeremy Fitzhardinge <jeremy@xensource.com>
5792M: Chris Wright <chrisw@sous-sol.org>
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02005793L: virtualization@lists.osdl.org
5794L: xen-devel@lists.xensource.com
5795S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005796F: arch/x86/xen/
5797F: drivers/*/xen-*front.c
5798F: drivers/xen/
5799F: arch/x86/include/asm/xen/
5800F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02005801
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802XFS FILESYSTEM
5803P: Silicon Graphics Inc
Alex Elderf08a59f2009-09-11 09:51:25 -05005804M: Alex Elder <aelder@sgi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10005806L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07005808T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005809S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005810F: Documentation/filesystems/xfs.txt
5811F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02005813XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005814M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02005815W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02005816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005817F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02005818
Peter Korsgaard238b8722006-12-06 20:35:17 -08005819XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005820M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08005821L: linux-serial@vger.kernel.org
5822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005823F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08005824
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07005826M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827L: linux-hams@vger.kernel.org
5828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005829F: drivers/net/hamradio/yam*
5830F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005831
Henkaf64a5e2005-10-12 15:02:56 +02005832YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005833M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02005834L: usbb2k-api-dev@nongnu.org
5835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005836F: Documentation/input/yealink.txt
5837F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02005838
Linus Torvalds1da177e2005-04-16 15:20:36 -07005839Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07005840M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841W: http://yaina.de/jreuter/
5842W: http://www.qsl.net/dl1bke/
5843L: linux-hams@vger.kernel.org
5844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005845F: Documentation/networking/z8530drv.txt
5846F: drivers/net/hamradio/*scc.c
5847F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848
Daniel Drake7c0c3af2006-07-16 13:55:17 +01005849ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005850M: Daniel Drake <dsd@gentoo.org>
5851M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01005852W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07005853L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01005854L: zd1211-devs@lists.sourceforge.net (subscribers-only)
5855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005856F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01005857
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005859L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03005860L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005861W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03005862T: Mercurial http://linuxtv.org/hg/v4l-dvb
5863S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005864F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07005866ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005867M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07005868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005869F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07005870
Linus Torvalds1da177e2005-04-16 15:20:36 -07005871THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07005872M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07005873L: linux-kernel@vger.kernel.org
Joe Perchescfe81f72009-04-07 21:09:58 -07005874T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07005876F: *
5877F: */