blob: 66a3865da88d09cb2edf169ea7af1e8253863bb9 [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
Joe Perches8b58be82009-07-29 15:04:30 -0700158M: Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159L: linux-serial@vger.kernel.org
160W: http://serial.sourceforge.net
Alan Cox4b6ae892009-06-11 12:45:08 +0100161S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -0700162F: drivers/serial/8250*
163F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
1658390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Joe Perches8b58be82009-07-29 15:04:30 -0700166M: Paul Gortmaker <p_gortmaker@yahoo.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700167L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700169F: drivers/net/*8390*
170F: drivers/net/ax88796.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001729P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700173M: Eric Van Hensbergen <ericvh@gmail.com>
174M: Ron Minnich <rminnich@sandia.gov>
175M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100176L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500177W: http://swik.net/v9fs
Joe Perches54e58812009-04-07 21:08:10 -0700178T: git git://git.kernel.org/pub/scm/linux/kernel/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700180F: Documentation/filesystems/9p.txt
181F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183A2232 SERIAL BOARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700184M: Enver Haase <A2232@gmx.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185L: linux-m68k@lists.linux-m68k.org
186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700187F: drivers/char/ser_a2232*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700189AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700190M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700191L: linux-scsi@vger.kernel.org
192W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700194F: Documentation/scsi/aacraid.txt
195F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700197ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700198M: Hans de Goede <j.w.r.degoede@hhs.nl>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200199L: lm-sensors@lm-sensors.org
200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700201F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200202
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700203ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700204M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205L: lm-sensors@lm-sensors.org
206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700207F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700210M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211L: linux-acenic@sunsite.dk
212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700213F: drivers/net/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Peter Feuerere86435e2009-06-21 18:53:03 +0200215ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700216M: Peter Feuerer <peter@piie.net>
Joe Perches4fc26e32009-07-29 15:04:22 -0700217W: http://piie.net/?section=acerhdf
218S: Maintained
219F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200220
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000221ACER WMI LAPTOP EXTRAS
Joe Perches8b58be82009-07-29 15:04:30 -0700222M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000223L: aceracpi@googlegroups.com (subscribers-only)
224W: http://code.google.com/p/aceracpi
225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700226F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700229M: Len Brown <lenb@kernel.org>
Len Brown6968e502005-12-30 00:32:49 -0500230L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400231W: http://www.lesswatts.org/projects/acpi/
Joe Perches54e58812009-04-07 21:08:10 -0700232T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500233S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700234F: drivers/acpi/
235F: drivers/pnp/pnpacpi/
236F: include/linux/acpi.h
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
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700260ACPI PCI HOTPLUG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700261M: Kristen Carlson Accardi <kristen.c.accardi@intel.com>
Jesse Barnes64dab202008-06-10 14:20:03 -0700262L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -0500263S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700264F: drivers/pci/hotplug/acpi*
Len Brown8b59a452007-01-08 19:03:28 -0500265
266ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700267M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500268L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300269W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500270S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700271F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700272
Len Brown359acec2007-02-10 01:59:24 -0500273ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700274M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500275L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300276W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500277S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700278F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500279
Carlos Corbachobff431e2008-02-05 02:17:04 +0000280ACPI WMI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700281M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200282L: linux-acpi@vger.kernel.org
283W: http://www.lesswatts.org/projects/acpi/
284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700285F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000286
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100287AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700288M: Kyle McMartin <kyle@mcmartin.ca>
289M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200290W: http://wiki.parisc-linux.org/AD1889
291L: linux-parisc@vger.kernel.org
292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700293F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700296M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200297L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700299F: Documentation/hwmon/adm1025
300F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Corentin Labbecae2caa2007-02-14 21:15:04 +0100302ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700303M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100304L: lm-sensors@lm-sensors.org
305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700306F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100307
Michael Wucc0b88c2007-08-31 01:15:25 -0400308ADM8211 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700309M: Michael Wu <flamingice@sourmilk.net>
Michael Wucc0b88c2007-08-31 01:15:25 -0400310L: linux-wireless@vger.kernel.org
311W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -0700312T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Michael Wucc0b88c2007-08-31 01:15:25 -0400313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700314F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700317M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700319F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400321ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700322M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400323L: linux-scsi@vger.kernel.org
324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700325F: Documentation/scsi/advansys.txt
326F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700329M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700331F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333AFFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700334M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700336F: Documentation/filesystems/affs.txt
337F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700339AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700340M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700341L: linux-afs@lists.infradead.org
342S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700343F: fs/afs/
344F: include/net/af_rxrpc.h
345F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700348M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700349T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700351F: drivers/char/agp/
352F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700355M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356L: linux-scsi@vger.kernel.org
357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700358F: drivers/scsi/aha152x*
359F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Hannes Reinecke64624d42007-10-19 10:32:29 +0200361AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700362M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200363L: linux-scsi@vger.kernel.org
364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700365F: drivers/scsi/aic7xxx/
366F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200367
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700368AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700369M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700370L: linux-aio@kvack.org
371S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700372F: fs/aio.c
373F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700376M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700377L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378W: http://www.linux-usb.org/SpeedTouch/
379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700380F: drivers/usb/atm/speedtch.c
381F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Pierre Ossman272f1332007-05-14 21:25:26 +0200383ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700384M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700386F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200387
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000388ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700389M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100390L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700392F: Documentation/i2c/busses/i2c-ali1563
393F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700396M: Richard Henderson <rth@twiddle.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397S: Odd Fixes for 2.4; Maintained for 2.6.
Joe Perches8b58be82009-07-29 15:04:30 -0700398M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399S: Maintained for 2.4; PCI support for 2.6.
Cheng Renquana9406692009-03-31 15:23:35 -0700400L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700401F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700403AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700404M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700405L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700406S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700407F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700408
Jordan Crousef90b8112006-01-06 00:12:14 -0800409AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100410P: Jordan Crouse
Jordan Crouse67d76712008-05-12 14:02:22 -0700411L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800412W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
413S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700414F: arch/x86/kernel/geode_32.c
415F: drivers/char/hw_random/geode-rng.c
416F: drivers/crypto/geode*
417F: drivers/video/geode/
418F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800419
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200420AMD IOMMU (AMD-VI)
Joe Perches8b58be82009-07-29 15:04:30 -0700421M: Joerg Roedel <joerg.roedel@amd.com>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200422L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -0700423T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200424S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700425F: arch/x86/kernel/amd_iommu*.c
426F: arch/x86/include/asm/amd_iommu*.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200427
Peter Orubae7f5b302008-07-28 18:44:11 +0200428AMD MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700429M: Andreas Herrmann <andreas.herrmann3@amd.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700430L: amd64-microcode@amd64.org
431S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700432F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200433
Stelian Pop284f42b2006-12-12 18:18:31 +0100434AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700435M: Stelian Pop <stelian@popies.net>
436M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100437S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700438F: drivers/hwmon/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100439
Tom Tuckerf94b5332006-09-22 15:22:48 -0700440AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700441M: Tom Tucker <tom@opengridcomputing.com>
442M: Steve Wise <swise@opengridcomputing.com>
Roland Dreier78526822007-07-09 20:12:26 -0700443L: general@lists.openfabrics.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700445F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700446
Johannes Berg42269062006-07-25 16:15:50 +0200447AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700448M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg42269062006-07-25 16:15:50 +0200449L: linuxppc-dev@ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700450L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700452F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454APM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700455M: Stephen Rothwell <sfr@canb.auug.org.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456L: linux-laptop@vger.kernel.org
457W: http://www.canb.auug.org.au/~sfr/
458S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700459F: arch/x86/kernel/apm_32.c
460F: include/linux/apm_bios.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700462APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700463M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700464L: linux-input@vger.kernel.org
465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700466F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700467
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700468APPLE SMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700469M: Nicolas Boichat <nicolas@boichat.ch>
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700470L: mactel-linux-devel@lists.sourceforge.net
471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700472F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700475M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700477F: drivers/net/appletalk/
478F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400480APPLETOUCH TOUCHPAD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700481M: Johannes Berg <johannes@sipsolutions.net>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -0400482L: linux-input@vger.kernel.org
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700484F: Documentation/input/appletouch.txt
485F: drivers/input/mouse/appletouch.c
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400486
Jaya Kumar1154ea72005-06-21 17:17:04 -0700487ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700488M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700490F: drivers/video/arcfb.c
491F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700494M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700496F: arch/arm/lib/floppydma.S
497F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Russell Kingd4275352009-04-16 14:05:27 +0100499ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700500M: Russell King <linux@arm.linux.org.uk>
Russell Kingd4275352009-04-16 14:05:27 +0100501L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
502W: http://www.arm.linux.org.uk/
503S: Maintained
504F: arch/arm/
505
Russell King2761f5c2007-05-24 06:56:08 +0200506ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200507S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700508F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200509
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800510ARM/ADI ROADRUNNER MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700511M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800512L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700514F: arch/arm/mach-ixp23xx/
515F: arch/arm/mach-ixp23xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800516
517ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700518M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800519L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
520S: Maintained
521
Sergey Lapin9c784f92008-08-03 02:29:48 +0100522ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700523M: Sergey Lapin <slapin@ossfans.org>
Sergey Lapin9c784f92008-08-03 02:29:48 +0100524L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
525S: Maintained
526
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800527ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700528M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800529L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
530S: Maintained
531
Andrew Victord4a89c72006-12-04 13:56:21 +0100532ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700533M: Andrew Victor <linux@maxim.org.za>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200534L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
535W: http://maxim.org.za/at91_26.html
536S: Maintained
Andrew Victord4a89c72006-12-04 13:56:21 +0100537
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800538ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700539M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800540L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
541S: Maintained
542
543ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700544M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800545L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
546S: Maintained
547
Russell Kingd4275352009-04-16 14:05:27 +0100548ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700549M: Russell King <linux@arm.linux.org.uk>
Russell Kingd4275352009-04-16 14:05:27 +0100550L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
551F: arch/arm/common/clkdev.c
552F: arch/arm/include/asm/clkdev.h
553
Mike Rapoportd48134e2008-08-20 09:03:26 +0100554ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700555M: Mike Rapoport <mike@compulab.co.il>
Russell Kinga9da4f72008-07-12 21:42:04 +0100556L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
557S: Maintained
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700560M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561S: Maintained
562
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200563ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700564M: Paulius Zaleckas <paulius.zaleckas@teltonika.lt>
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200565L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -0700566T: git git://gitorious.org/linux-gemini/mainline.git
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200567S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300568F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200569
Russell Kingd4275352009-04-16 14:05:27 +0100570ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700571M: Russell King <linux@arm.linux.org.uk>
Russell Kingd4275352009-04-16 14:05:27 +0100572L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
573W: http://www.arm.linux.org.uk/
574S: Maintained
575F: arch/arm/mach-ebsa110/
576F: drivers/net/arm/am79c961a.*
577
Russell Kinga9da4f72008-07-12 21:42:04 +0100578ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700579M: Daniel Ribeiro <drwyrm@gmail.com>
580M: Stefan Schmidt <stefan@openezx.org>
581M: Harald Welte <laforge@openezx.org>
Russell Kinga9da4f72008-07-12 21:42:04 +0100582L: openezx-devel@lists.openezx.org (subscribers-only)
583W: http://www.openezx.org/
584S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200585T: topgit git://git.openezx.org/openezx.git
586F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100587
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200588ARM/FARADAY FA526 PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700589M: Paulius Zaleckas <paulius.zaleckas@teltonika.lt>
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200590L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
591S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300592F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200593
Russell Kingd4275352009-04-16 14:05:27 +0100594ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700595M: Russell King <linux@arm.linux.org.uk>
Russell Kingd4275352009-04-16 14:05:27 +0100596L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
597W: http://www.arm.linux.org.uk/
598S: Maintained
599F: arch/arm/include/asm/hardware/dec21285.h
600F: arch/arm/mach-footbridge/
601
Sascha Hauer86183a52008-07-24 23:50:35 +0200602ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700603M: Sascha Hauer <kernel@pengutronix.de>
Sascha Hauer86183a52008-07-24 23:50:35 +0200604L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
605S: Maintained
606
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800607ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700608M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800609L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
610S: Maintained
611
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100612ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700613M: Steve Sakoman <sakoman@gmail.com>
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100614L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
615S: Maintained
616
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200617ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700618M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200619S: Maintained
620F: arch/arm/mach-pxa/hx4700.c
621F: arch/arm/mach-pxa/include/mach/hx4700.h
622
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100623ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700624M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200625W: www.jlime.com
626S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700627T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
628F: arch/arm/mach-sa1100/jornada720.c
629F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100630
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800631ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700632M: Lennert Buytenhek <kernel@wantstofly.org>
633M: Dan Williams <dan.j.williams@intel.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800634L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100635S: Supported
636
637ARM/INTEL IOP33X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700638M: Dan Williams <dan.j.williams@intel.com>
Dan Williamse2bdb172007-01-02 18:32:37 +0100639L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
640S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800641
642ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700643M: Lennert Buytenhek <kernel@wantstofly.org>
644M: Dan Williams <dan.j.williams@intel.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800645L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100646S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800647
648ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700649M: Lennert Buytenhek <kernel@wantstofly.org>
650M: Dan Williams <dan.j.williams@intel.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800651L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100652S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800653
654ARM/INTEL IXP2000 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700655M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800656L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
657S: Maintained
658
659ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700660M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800661L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
662S: Maintained
663
664ARM/INTEL IXP23XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700665M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800666L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
667S: Maintained
668
669ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700670M: Lennert Buytenhek <kernel@wantstofly.org>
671M: Dan Williams <dan.j.williams@intel.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800672L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100673S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800674
675ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700676M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800677L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
678S: Maintained
679
680ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700681M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800682L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
683S: Maintained
684
Philipp Zabel3b8861712008-07-09 21:27:15 +0100685ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700686M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100687S: Maintained
688
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200689ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700690M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200691L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
692F: arch/arm/mach-pxa/mioa701.c
693S: Maintained
694
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100695ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700696M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100697S: Maintained
698
Andy Green9d762952009-05-19 06:41:42 -0300699ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700700M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300701L: openmoko-kernel@lists.openmoko.org (subscribers-only)
702W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
703S: Supported
704
Dirk Opfer8459c152005-11-06 14:27:52 +0000705ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700706M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
707M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000708S: Maintained
709
Marek Vasut54088bf2009-03-24 00:29:29 +0100710ARM/PALMTX,PALMT5,PALMLD,PALMTE2 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700711M: Marek Vasut <marek.vasut@gmail.com>
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100712W: http://hackndev.com
713S: Maintained
714
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200715ARM/PALM TREO 680 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700716M: Tomas Cech <sleep_walker@suse.cz>
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200717W: http://hackndev.com
718S: Maintained
719
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100720ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700721M: Sergey Lapin <slapin@ossfans.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700722W: http://hackndev.com
723S: Maintained
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700726M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
728S: Maintained
729
730ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700731M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700732L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733W: http://www.arm.linux.org.uk/
734S: Maintained
735
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800736ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700737M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800738L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
739S: Maintained
740
Russell Kingd4275352009-04-16 14:05:27 +0100741ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700742M: Russell King <linux@arm.linux.org.uk>
Russell Kingd4275352009-04-16 14:05:27 +0100743L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
744W: http://www.arm.linux.org.uk/
745S: Maintained
746F: arch/arm/common/time-acorn.c
747F: arch/arm/include/asm/hardware/entry-macro-iomd.S
748F: arch/arm/include/asm/hardware/ioc.h
749F: arch/arm/include/asm/hardware/iomd.h
750F: arch/arm/include/asm/hardware/memc.h
751F: arch/arm/mach-rpc/
752F: drivers/net/arm/ether*
753F: drivers/scsi/arm/
754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700756M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757W: http://www.shark-linux.de/shark.html
758S: Maintained
759
Ben Dooksb21477f2009-06-13 10:46:34 +0100760ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700761M: Ben Dooks <ben-linux@fluff.org>
Ben Dooksb21477f2009-06-13 10:46:34 +0100762L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
763W: http://www.fluff.org/ben/linux/
764S: Maintained
765F: arch/arm/plat-s3c/
766F: arch/arm/plat-s3c24xx/
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768ARM/S3C2410 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700769M: Ben Dooks <ben-linux@fluff.org>
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700770L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771W: http://www.fluff.org/ben/linux/
772S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +0100773F: arch/arm/mach-s3c2410/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775ARM/S3C2440 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700776M: Ben Dooks <ben-linux@fluff.org>
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700777L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778W: http://www.fluff.org/ben/linux/
779S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +0100780F: arch/arm/mach-s3c2440/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Ben Dooksb21477f2009-06-13 10:46:34 +0100782ARM/S3C2442 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700783M: Ben Dooks <ben-linux@fluff.org>
Ben Dooksb21477f2009-06-13 10:46:34 +0100784L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
785W: http://www.fluff.org/ben/linux/
786S: Maintained
787F: arch/arm/mach-s3c2442/
788
789ARM/S3C2443 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700790M: Ben Dooks <ben-linux@fluff.org>
Ben Dooksb21477f2009-06-13 10:46:34 +0100791L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
792W: http://www.fluff.org/ben/linux/
793S: Maintained
794F: arch/arm/mach-s3c2443/
795
796ARM/S3C6400 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700797M: Ben Dooks <ben-linux@fluff.org>
Ben Dooksb21477f2009-06-13 10:46:34 +0100798L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
799W: http://www.fluff.org/ben/linux/
800S: Maintained
801F: arch/arm/mach-s3c6400/
802
803ARM/S3C6410 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700804M: Ben Dooks <ben-linux@fluff.org>
Ben Dooksb21477f2009-06-13 10:46:34 +0100805L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
806W: http://www.fluff.org/ben/linux/
807S: Maintained
808F: arch/arm/mach-s3c6410/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800810ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700811M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800812L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
813S: Maintained
814
815ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700816M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800817L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
818S: Maintained
819
wanzongshun98ad6e32009-02-13 06:04:32 +0100820ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700821M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700822L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
823W: http://www.mcuos.com
824S: Maintained
wanzongshun98ad6e32009-02-13 06:04:32 +0100825
Russell Kingd4275352009-04-16 14:05:27 +0100826ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700827M: Russell King <linux@arm.linux.org.uk>
Russell Kingd4275352009-04-16 14:05:27 +0100828L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
829W: http://www.arm.linux.org.uk/
830S: Maintained
831F: arch/arm/vfp/
832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833ASUS ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700834M: Corentin Chary <corentincj@iksaif.net>
835M: Karol Kozimor <sziwan@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +0000837W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700839F: arch/x86/kernel/acpi/boot.c
840F: drivers/platform/x86/asus_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400842ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700843M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400844L: lm-sensors@lm-sensors.org
845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700846F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400847
Corentin Chary85091b72007-01-26 14:04:30 +0100848ASUS LAPTOP EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700849M: Corentin Chary <corentincj@iksaif.net>
Corentin Chary85091b72007-01-26 14:04:30 +0100850L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +0000851W: http://acpi4asus.sf.net
Corentin Chary85091b72007-01-26 14:04:30 +0100852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700853F: drivers/platform/x86/asus-laptop.c
Corentin Chary85091b72007-01-26 14:04:30 +0100854
Andrew Morton953a6472008-11-06 12:53:28 -0800855ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Joe Perches8b58be82009-07-29 15:04:30 -0700856M: Dan Williams <dan.j.williams@intel.com>
857M: Maciej Sosnowski <maciej.sosnowski@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -0700858W: http://sourceforge.net/projects/xscaleiop
859S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700860F: Documentation/crypto/async-tx-api.txt
861F: crypto/async_tx/
862F: drivers/dma/
863F: include/linux/dmaengine.h
864F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -0700865
Randy Dunlape7839f22008-10-12 16:11:45 -0700866ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700867M: "Ed L. Cashin" <ecashin@coraid.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868W: http://www.coraid.com/support/linux
869S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700870F: Documentation/aoe/
871F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200873ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700874M: Jiri Slaby <jirislaby@gmail.com>
875M: Nick Kossifidis <mickflemm@gmail.com>
876M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
877M: Bob Copeland <me@bobcopeland.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200878L: linux-wireless@vger.kernel.org
879L: ath5k-devel@lists.ath5k.org
880S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -0700881F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200882
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700883ATHEROS ATH9K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700884M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
885M: Jouni Malinen <jmalinen@atheros.com>
886M: Sujith Manoharan <Sujith.Manoharan@atheros.com>
887M: Vasanthakumar Thiagarajan <vasanth@atheros.com>
888M: Senthil Balasubramanian <senthilkumar@atheros.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700889L: linux-wireless@vger.kernel.org
890L: ath9k-devel@lists.ath9k.org
891S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -0700892F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700893
Christian Lamparter75ca88c2009-03-21 23:11:49 +0100894ATHEROS AR9170 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700895M: Christian Lamparter <chunkeey@web.de>
Christian Lamparter75ca88c2009-03-21 23:11:49 +0100896L: linux-wireless@vger.kernel.org
897W: http://wireless.kernel.org/en/users/Drivers/ar9170
898S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -0700899F: drivers/net/wireless/ath/ar9170/
Christian Lamparter75ca88c2009-03-21 23:11:49 +0100900
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000901ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700902M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700904F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000905
Chris Snook7ae115b2008-09-09 03:26:57 -0400906ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700907M: Jay Cliburn <jcliburn@gmail.com>
908M: Chris Snook <csnook@redhat.com>
909M: Jie Yang <jie.yang@atheros.com>
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600910L: atl1-devel@lists.sourceforge.net
911W: http://sourceforge.net/projects/atl1
912W: http://atl1.sourceforge.net
913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700914F: drivers/net/atlx/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916ATM
Joe Perches8b58be82009-07-29 15:04:30 -0700917M: Chas Williams <chas@cmf.nrl.navy.mil>
Roland Dreierf37bf902006-09-13 20:39:33 -0700918L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Jiri Slaby44ae98b2008-11-30 23:27:11 -0800919L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920W: http://linux-atm.sourceforge.net
921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700922F: drivers/atm/
923F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Pierre Ossman272f1332007-05-14 21:25:26 +0200925ATMEL AT91 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700926M: Nicolas Ferre <nicolas.ferre@atmel.com>
Pierre Ossman81764fa2007-07-15 18:47:38 +0200927L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
928W: http://www.atmel.com/products/AT91/
929W: http://www.at91.com/
930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700931F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200932
Nicolas Ferre04ac2f42009-06-16 13:05:50 +0200933ATMEL AT91 / AT32 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700934M: Nicolas Ferre <nicolas.ferre@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +0200935S: Maintained
936F: drivers/mmc/host/atmel-mci.c
937F: drivers/mmc/host/atmel-mci-regs.h
938
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -0800939ATMEL AT91 / AT32 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700940M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -0800941S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700942F: drivers/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -0800943
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -0800944ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700945M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -0800946L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -0800947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700948F: drivers/video/atmel_lcdfb.c
949F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -0800950
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100951ATMEL MACB ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700952M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100953S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700954F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100955
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -0800956ATMEL SPI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700957M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -0800958S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700959F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -0800960
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -0700961ATMEL USBA UDC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700962M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -0700963L: kernel@avr32linux.org
964W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
965S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700966F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -0700967
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700969M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -0700970L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971W: http://www.thekelleys.org.uk/atmel
972W: http://atmelwlandriver.sourceforge.net/
973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700974F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Chris Wrighta92b7b82005-07-07 18:12:23 -0700976AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700977M: Al Viro <viro@zeniv.linux.org.uk>
978M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -0700979L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +0100980W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -0700981T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700983F: include/linux/audit.h
984F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -0700985
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800986AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700987M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -0700988W: http://miguelojeda.es/auxdisplay.htm
989W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700991F: drivers/auxdisplay/
992F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800993
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700994AVR32 ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700995M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700996W: http://www.atmel.com/products/AVR32/
997W: http://avr32linux.org/
998W: http://avrfreaks.net/
999S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001000F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001001
1002AVR32/AT32AP MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001003M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001004S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001005F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001008M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001010W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001012F: include/linux/ax25.h
1013F: include/net/ax25.h
1014F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001016B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001017M: Michael Buesch <mb@bu3sch.de>
1018M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001019L: linux-wireless@vger.kernel.org
1020W: http://linuxwireless.org/en/users/Drivers/b43
1021S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001022F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001023
1024B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001025M: Larry Finger <Larry.Finger@lwfinger.net>
1026M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001027L: linux-wireless@vger.kernel.org
1028W: http://linuxwireless.org/en/users/Drivers/b43
1029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001030F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001031
Richard Purdie300abeb2007-02-07 22:21:07 +00001032BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001033M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001035F: drivers/video/backlight/
1036F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001037
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001038BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001039M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001040L: linux-hams@vger.kernel.org
1041W: http://www.baycom.org/~tom/ham/ham.html
1042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001043F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001044
1045BEFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001046M: "Sergey S. Kostyliov" <rathamahata@php4.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001048F: Documentation/filesystems/befs.txt
1049F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001050
1051BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001052M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001054F: Documentation/filesystems/bfs.txt
1055F: fs/bfs/
1056F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001057
Bryan Wu1394f032007-05-06 14:50:22 -07001058BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001059M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001060L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001061W: http://blackfin.uclinux.org
1062S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001063F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001064
Bryan Wue190d6b2007-07-17 14:43:44 +08001065BLACKFIN EMAC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001066M: Michael Hennerich <michael.hennerich@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001067L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001068W: http://blackfin.uclinux.org
1069S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001070F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001071
Mike Frysinger566da5b2007-06-11 15:31:30 +08001072BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001073M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001074L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001075W: http://blackfin.uclinux.org
1076S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001077F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001078
Bryan Wu1394f032007-05-06 14:50:22 -07001079BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001080M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001081L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001082W: http://blackfin.uclinux.org
1083S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001084F: drivers/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001085
Bryan Wu1e6d3202007-07-15 02:50:02 +08001086BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001087M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001088L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001089W: http://blackfin.uclinux.org
1090S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001091F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001092
Bryan Wud24ecfc2007-05-01 23:26:32 +02001093BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001094M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001095L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001096W: http://blackfin.uclinux.org/
1097S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001098F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001101M: Jens Axboe <axboe@kernel.dk>
Joe Perches54e58812009-04-07 21:08:10 -07001102T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001104F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Joern Engel2b54aae2008-02-06 01:38:02 -08001106BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001107M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001108L: linux-mtd@lists.infradead.org
1109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001110F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001111
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001112BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001113M: Marcel Holtmann <marcel@holtmann.org>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001114L: linux-bluetooth@vger.kernel.org
1115W: http://www.bluez.org/
1116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001117F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001120M: Marcel Holtmann <marcel@holtmann.org>
Pavel Machek781c2842008-03-20 15:41:02 -07001121L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001122W: http://www.bluez.org/
Joe Perches54e58812009-04-07 21:08:10 -07001123T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001125F: net/bluetooth/
1126F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001129M: Jay Vosburgh <fubar@us.ibm.com>
Jim Cromiece00f852006-11-30 04:49:44 +01001130L: bonding-devel@lists.sourceforge.net
1131W: http://sourceforge.net/projects/bonding/
1132S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001133F: drivers/net/bonding/
1134F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Gary Zambrano39105892006-06-22 17:26:20 -07001136BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001137M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001138L: netdev@vger.kernel.org
1139S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001140F: drivers/net/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001141
Michael Chan948c51e2006-06-04 02:51:39 -07001142BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001143M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001144L: netdev@vger.kernel.org
1145S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001146F: drivers/net/bnx2.*
1147F: drivers/net/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001148
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001149BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001150M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001151L: netdev@vger.kernel.org
1152S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001153F: drivers/net/bnx2x*
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001154
Michael Chan948c51e2006-06-04 02:51:39 -07001155BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001156M: Matt Carlson <mcarlson@broadcom.com>
1157M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001158L: netdev@vger.kernel.org
1159S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001160F: drivers/net/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001161
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001162BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001163M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001164L: linux-scsi@vger.kernel.org
1165S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001166F: block/bsg.c
1167F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001168
Michael Bueschff1d5c22008-07-25 01:46:10 -07001169BT8XXGPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001170M: Michael Buesch <mb@bu3sch.de>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001171W: http://bu3sch.de/btgpio.php
1172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001173F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001174
Joe Percheseb1eb042009-01-21 10:49:16 -05001175BTRFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001176M: Chris Mason <chris.mason@oracle.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001177L: linux-btrfs@vger.kernel.org
1178W: http://btrfs.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07001179T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001181F: Documentation/filesystems/btrfs.txt
1182F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001185M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001186L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001187W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001188T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001190F: Documentation/video4linux/bttv/
1191F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
David Howellsa5432f52009-04-20 15:46:45 +01001193CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001194M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001195L: linux-cachefs@redhat.com
1196S: Supported
1197F: Documentation/filesystems/caching/cachefiles.txt
1198F: fs/cachefiles/
1199
Jonathan Corbet77d51402007-03-22 19:44:17 -03001200CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001201M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001202L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001203T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001205F: Documentation/video4linux/cafe_ccic
1206F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001207
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001208CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001209M: Muli Ben-Yehuda <muli@il.ibm.com>
1210M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001211L: discuss@x86-64.org
1212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001213F: arch/x86/kernel/pci-calgary_64.c
1214F: arch/x86/kernel/tce_64.c
1215F: arch/x86/include/asm/calgary.h
1216F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001217
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001218CAN NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001219M: Urs Thuermann <urs.thuermann@volkswagen.de>
1220M: Oliver Hartkopp <oliver.hartkopp@volkswagen.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001221L: socketcan-core@lists.berlios.de (subscribers-only)
1222W: http://developer.berlios.de/projects/socketcan/
1223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001224F: drivers/net/can/
1225F: include/linux/can/
1226F: include/linux/can.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001227
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001228CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001229M: Wolfgang Grandegger <wg@grandegger.com>
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001230L: socketcan-core@lists.berlios.de (subscribers-only)
1231W: http://developer.berlios.de/projects/socketcan/
1232S: Maintained
1233
Arnd Bergmannb8154542008-05-16 11:10:59 +02001234CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001235M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmannb8154542008-05-16 11:10:59 +02001236L: linuxppc-dev@ozlabs.org
1237L: cbe-oss-dev@ozlabs.org
1238W: http://www.ibm.com/developerworks/power/cell/
1239S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001240F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001241F: arch/powerpc/include/asm/spu*.h
1242F: arch/powerpc/oprofile/*cell*
1243F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001244
David Vrabel18332a82008-09-17 16:34:44 +01001245CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
Joe Perches8b58be82009-07-29 15:04:30 -07001246M: David Vrabel <david.vrabel@csr.com>
David Vrabel18332a82008-09-17 16:34:44 +01001247L: linux-usb@vger.kernel.org
1248S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001249F: Documentation/usb/WUSB-Design-overview.txt
1250F: Documentation/usb/wusb-cbaf
1251F: drivers/usb/wusbcore/
1252F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001253
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001254CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001255M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001256W: http://miguelojeda.es/auxdisplay.htm
1257W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001259F: drivers/auxdisplay/cfag12864b.c
1260F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001261
1262CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001263M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001264W: http://miguelojeda.es/auxdisplay.htm
1265W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001267F: drivers/auxdisplay/cfag12864bfb.c
1268F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001269
Johannes Berg704232c2007-04-23 12:20:05 -07001270CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001271M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001272L: linux-wireless@vger.kernel.org
1273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001274F: include/linux/nl80211.h
1275F: include/net/cfg80211.h
1276F: net/wireless/*
1277X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001278
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001279CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001280M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001281S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001282F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001283
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001284CISCO 10G ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001285M: Scott Feldman <scofeldm@cisco.com>
1286M: Joe Eykholt <jeykholt@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001287S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001288F: drivers/net/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001289
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001290CIRRUS LOGIC EP93XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001291M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001292L: netdev@vger.kernel.org
1293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001294F: drivers/net/arm/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001295
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001296CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001297M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001298L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001300F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001301
Timur Tabid9e9d822008-04-24 08:45:26 +10001302CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001303M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001304L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001305S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001306F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001307
Russell Kingd4275352009-04-16 14:05:27 +01001308CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001309M: Russell King <linux@arm.linux.org.uk>
Russell Kingd4275352009-04-16 14:05:27 +01001310F: include/linux/clk.h
1311
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001312CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001313M: Abhijeet Joglekar <abjoglek@cisco.com>
1314M: Joe Eykholt <jeykholt@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001315L: linux-scsi@vger.kernel.org
1316S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001317F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001320M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321M: coda@cs.cmu.edu
1322L: codalist@coda.cs.cmu.edu
1323W: http://www.coda.cs.cmu.edu/
1324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001325F: Documentation/filesystems/coda.txt
1326F: fs/coda/
1327F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001329COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07001330M: Steve French <sfrench@samba.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001331L: linux-cifs-client@lists.samba.org
1332L: samba-technical@lists.samba.org
1333W: http://linux-cifs.samba.org/
Joe Perches54e58812009-04-07 21:08:10 -07001334T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001335S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001336F: Documentation/filesystems/cifs.txt
1337F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001340M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001341L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001343F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
1345COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001346M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001347L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001349F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001352M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001353L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001355F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001357COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001358M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001360F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362COMPUTONE INTELLIPORT MULTIPORT CARD
Joe Perches8b58be82009-07-29 15:04:30 -07001363M: "Michael H. Warfield" <mhw@wittsend.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001366F: Documentation/serial/computone.txt
1367F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Simon Arlott949be0f2007-03-06 02:47:46 -08001369CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001370M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001371L: accessrunner-general@lists.sourceforge.net
1372W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001374F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001375
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001376CONFIGFS
Joe Perches8b58be82009-07-29 15:04:30 -07001377M: Joel Becker <joel.becker@oracle.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001378S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001379F: fs/configfs/
1380F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001381
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001382CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07001383M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001384L: netdev@vger.kernel.org
1385S: Maintained
1386F: drivers/connector/
1387
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001388CONTROL GROUPS (CGROUPS)
Joe Perches8b58be82009-07-29 15:04:30 -07001389M: Paul Menage <menage@google.com>
1390M: Li Zefan <lizf@cn.fujitsu.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001391L: containers@lists.linux-foundation.org
1392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001393F: include/linux/cgroup*
1394F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07001395F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001396
Rudolf Marekbebe4672007-05-08 17:22:02 +02001397CORETEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001398M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marekbebe4672007-05-08 17:22:02 +02001399L: lm-sensors@lm-sensors.org
1400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001401F: Documentation/hwmon/coretemp
1402F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001405M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406W: http://www.fi.muni.cz/~kas/cosa/
1407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001408F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Florian Fainelli4371ee32009-06-01 02:43:17 -07001410CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001411M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07001412L: netdev@vger.kernel.org
1413S: Maintained
1414F: drivers/net/cpmac.c
1415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416CPU FREQUENCY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001417M: Dave Jones <davej@redhat.com>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001418L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001420T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001422F: arch/x86/kernel/cpu/cpufreq/
1423F: drivers/cpufreq/
1424F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
1426CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001427M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001429F: arch/x86/kernel/cpuid.c
1430F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Paul Jacksoned90fb42005-09-27 21:45:37 -07001432CPUSETS
Joe Perches8b58be82009-07-29 15:04:30 -07001433M: Paul Menage <menage@google.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07001434W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001435W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001436S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001437F: Documentation/cgroups/cpusets.txt
1438F: include/linux/cpuset.h
1439F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001442W: http://sourceforge.net/projects/cramfs/
1443S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001444F: Documentation/filesystems/cramfs.txt
1445F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001448M: Mikael Starvik <starvik@axis.com>
1449M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02001450L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451W: http://developer.axis.com
1452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001453F: arch/cris/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07001456M: Herbert Xu <herbert@gondor.apana.org.au>
1457M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001459T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001461F: Documentation/crypto/
1462F: arch/*/crypto/
1463F: crypto/
1464F: drivers/crypto/
1465F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Neil Horman5b07bd52009-02-05 16:03:04 +11001467CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07001468M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11001469L: linux-crypto@vger.kernel.org
1470S: Maintained
1471
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001472CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07001473M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001475F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001476
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001477CX18 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001478M: Hans Verkuil <hverkuil@xs4all.nl>
1479M: Andy Walls <awalls@radix.net>
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001480L: ivtv-devel@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001481L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001482T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001483W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07001484W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001486F: Documentation/video4linux/cx18.txt
1487F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001488
Steve Wisee5ec3782008-05-20 14:06:33 -07001489CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07001490M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07001491L: netdev@vger.kernel.org
1492W: http://www.chelsio.com
1493S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001494F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001495
1496CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07001497M: Steve Wise <swise@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07001498L: general@lists.openfabrics.org
1499W: http://www.openfabrics.org
1500S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001501F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001504M: Russell King <linux@arm.linux.org.uk>
Russell Kingd4275352009-04-16 14:05:27 +01001505L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506W: http://www.arm.linux.org.uk/
1507S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001508F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001511M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001512W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001514F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
1516CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001518S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001519F: drivers/char/cyclades.c
1520F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
1522CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001524S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001525F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001528M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529W: http://yaina.de/jreuter/
1530W: http://www.qsl.net/dl1bke/
1531L: linux-hams@vger.kernel.org
1532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001533F: net/ax25/af_ax25.c
1534F: net/ax25/ax25_dev.c
1535F: net/ax25/ax25_ds_*
1536F: net/ax25/ax25_in.c
1537F: net/ax25/ax25_out.c
1538F: net/ax25/ax25_timer.c
1539F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001541DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001542M: Tobias Ringstrom <tori@unhappy.mine.nu>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001543L: netdev@vger.kernel.org
1544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001545F: Documentation/networking/dmfe.txt
1546F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001547
1548DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07001549M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001550W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07001551M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001553F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555DC395x SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07001556M: Oliver Neukum <oliver@neukum.name>
1557M: Ali Akcaagac <aliakc@web.de>
1558M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001560L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561L: http://lists.twibble.org/mailman/listinfo/dc395x/
1562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001563F: Documentation/scsi/dc395x.txt
1564F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001566DCCP PROTOCOL
Joe Perches8b58be82009-07-29 15:04:30 -07001567M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001568L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001569W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001571F: include/linux/dccp.h
1572F: include/linux/tfrc.h
1573F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575DECnet NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001576M: Christine Caulfield <christine.caulfield@googlemail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577W: http://linux-decnet.sourceforge.net
1578L: linux-decnet-user@lists.sourceforge.net
1579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001580F: Documentation/networking/decnet.txt
1581F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
1583DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001584M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001586F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001588DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001589M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001591F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001594M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595W: http://www.debian.org/~dz/i8k/
1596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001597F: drivers/char/i8k.c
1598F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Doug Warzecha90563ec2005-09-06 15:17:15 -07001600DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07001601M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07001602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001603F: Documentation/dcdbas.txt
1604F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07001605
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001606DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001607M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001608S: Maintained
1609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07001611M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613S: Maintained
1614
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001615DEVICE-MAPPER (LVM)
1616P: Alasdair Kergon
1617L: dm-devel@redhat.com
1618W: http://sources.redhat.com/dm
1619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001620F: Documentation/device-mapper/
1621F: drivers/md/dm*
1622F: include/linux/device-mapper.h
1623F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001624
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625DIGI INTL. EPCA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001626M: "Digi International, Inc" <Eng.Linux@digi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627L: Eng.Linux@digi.com
1628W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02001629S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001630F: Documentation/serial/digiepca.txt
1631F: drivers/char/epca*
1632F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Randy Dunlape7839f22008-10-12 16:11:45 -07001634DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07001635M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04001636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001637F: Documentation/filesystems/dnotify.txt
1638F: fs/notify/dnotify/
1639F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
1641DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07001642M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1644W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1645W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1646S: Maintained
1647
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001648DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07001649M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001651F: Documentation/filesystems/quota.txt
1652F: fs/quota/
1653F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Randy Dunlape7839f22008-10-12 16:11:45 -07001655DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07001656M: Christine Caulfield <ccaulfie@redhat.com>
1657M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04001658L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001659W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07001660T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001661S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001662F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001663
Dan Williamsb3e5f262007-08-07 10:26:35 -07001664DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001665M: Maciej Sosnowski <maciej.sosnowski@intel.com>
1666M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001667S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001668F: drivers/dma/
1669F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001670
Juerg Haefligerb8250372007-06-09 10:11:16 -04001671DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001672M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04001673L: lm-sensors@lm-sensors.org
1674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001675F: Documentation/hwmon/dme1737
1676F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04001677
Martin Waitzba483d52005-06-17 13:20:59 -07001678DOCBOOK FOR DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07001679M: Randy Dunlap <rdunlap@xenotime.net>
Martin Waitzba483d52005-06-17 13:20:59 -07001680S: Maintained
1681
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001682DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001683M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001684L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001685S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001686F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001687
Joe Perches7d2c86b2009-04-07 20:59:01 -07001688DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07001689M: Randy Dunlap <rdunlap@xenotime.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02001690L: linux-doc@vger.kernel.org
1691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001692F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07001693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001695M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696L: blinux-list@redhat.com
1697S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001698F: drivers/char/dtlk.c
1699F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001701DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001702M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001703L: linux-scsi@vger.kernel.org
1704W: http://www.adaptec.com/
1705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001706F: drivers/scsi/dpt*
1707F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709DRIVER CORE, KOBJECTS, AND SYSFS
Joe Perches8b58be82009-07-29 15:04:30 -07001710M: Greg Kroah-Hartman <gregkh@suse.de>
Jody McIntyre6fb04252005-11-18 09:31:06 -08001711T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001713F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07001714F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07001715F: fs/sysfs/
1716F: include/linux/kobj*
1717F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
1719DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001720M: David Airlie <airlied@linux.ie>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721L: dri-devel@lists.sourceforge.net
Joe Perches54e58812009-04-07 21:08:10 -07001722T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001724F: drivers/gpu/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
1726DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001727M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08001728L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001730F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001732DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001733M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001735F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001738M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07001739L: linux-eata@i-connect.net
1740L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001742F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001745M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746L: linux-scsi@vger.kernel.org
1747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001748F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
1750EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001751M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07001752L: linux-eata@i-connect.net
1753L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001755F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
1757EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07001758M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759L: ebtables-user@lists.sourceforge.net
1760L: ebtables-devel@lists.sourceforge.net
1761W: http://ebtables.sourceforge.net/
1762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001763F: include/linux/netfilter_bridge/ebt_*.h
1764F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Michael Halcrow237fead2006-10-04 02:16:22 -07001766ECRYPT FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001767M: Tyler Hicks <tyhicks@linux.vnet.ibm.com>
1768M: Dustin Kirkland <kirkland@canonical.com>
Michael Halcrow6dc75162008-12-15 13:54:17 -08001769L: ecryptfs-devel@lists.launchpad.net
1770W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07001771S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001772F: Documentation/filesystems/ecryptfs.txt
1773F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07001774
Alan Coxda9bb1d2006-01-18 17:44:13 -08001775EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001776M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001777L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001778W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001779S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001780F: Documentation/edac.txt
1781F: drivers/edac/edac_*
1782F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08001783
Borislav Petkovc476c232009-05-20 20:31:58 +02001784EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07001785M: Doug Thompson <dougthompson@xmission.com>
1786M: Borislav Petkov <borislav.petkov@amd.com>
Borislav Petkovc476c232009-05-20 20:31:58 +02001787L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
1788W: bluesmoke.sourceforge.net
1789S: Supported
1790F: drivers/edac/amd64_edac*
1791
Dave Peterson0e438e32006-03-26 01:38:55 -08001792EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07001793M: Mark Gross <mark.gross@intel.com>
1794M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001795L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001796W: bluesmoke.sourceforge.net
1797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001798F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08001799
1800EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07001801M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001802L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001803W: bluesmoke.sourceforge.net
1804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001805F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08001806
Douglas Thompson6bc78402007-07-19 01:50:12 -07001807EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07001808M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001809L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07001810W: bluesmoke.sourceforge.net
1811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001812F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07001813
1814EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07001815M: Jason Uhlenkott <juhlenko@akamai.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001816L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07001817W: bluesmoke.sourceforge.net
1818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001819F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07001820
1821EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07001822M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001823L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001824W: bluesmoke.sourceforge.net
1825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001826F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001827
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08001828EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07001829M: Mauro Carvalho Chehab <mchehab@redhat.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001830L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08001831W: bluesmoke.sourceforge.net
1832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001833F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08001834
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001835EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07001836M: Ranganathan Desikan <ravi@jetztechnologies.com>
1837M: "Arvind R." <arvind@jetztechnologies.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001838L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001839W: bluesmoke.sourceforge.net
1840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001841F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001842
1843EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07001844M: Egor Martovetsky <egor@pasemi.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001845L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07001846W: bluesmoke.sourceforge.net
1847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001848F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07001849
Dave Peterson0e438e32006-03-26 01:38:55 -08001850EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07001851M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001852L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001853W: bluesmoke.sourceforge.net
1854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001855F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08001856
Eric Coopere59f8792008-03-13 12:55:46 +01001857EEEPC LAPTOP EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001858M: Corentin Chary <corentincj@iksaif.net>
Eric Coopere59f8792008-03-13 12:55:46 +01001859L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +00001860W: http://acpi4asus.sf.net
Eric Coopere59f8792008-03-13 12:55:46 +01001861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001862F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01001863
Josh Triplett0bee8d22006-07-30 03:03:58 -07001864EFS FILESYSTEM
1865W: http://aeschi.ch.eu.org/efs/
1866S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001867F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07001868
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001869EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001870M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
1871M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreier78526822007-07-09 20:12:26 -07001872L: general@lists.openfabrics.org
Heiko J Schickfab97222006-09-22 15:22:22 -07001873S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001874F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07001875
David Woodhouse3e3a7d62008-05-01 04:34:46 -07001876EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07001877M: Paul Gortmaker <paul.gortmaker@windriver.com>
1878M: Matt Mackall <mpm@selenic.com>
1879M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07001880L: linux-embedded@vger.kernel.org
1881S: Maintained
1882
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001883EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001884M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01001885L: linux-scsi@vger.kernel.org
1886W: http://sourceforge.net/projects/lpfcxxxx
1887S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001888F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001889
Michał Mirosław5f5bac82009-05-22 20:33:59 +02001890ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001891M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02001892S: Maintained
1893F: drivers/misc/cb710/
1894F: drivers/mmc/host/cb710-mmc.*
1895F: include/linux/cb710.h
1896
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001898M: Christopher Hoover <ch@murgatroid.com>
1899M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001901F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07001903EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001904M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07001905S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07001906T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07001907F: drivers/video/s1d13xxxfb.c
1908F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07001909
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001911M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07001912L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001914F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
1916ETHERNET BRIDGE
Joe Perches8b58be82009-07-29 15:04:30 -07001917M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07001918L: bridge@lists.linux-foundation.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07001919W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001921F: include/linux/netfilter_bridge/
1922F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
1924ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001925M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001927F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
1929EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001930L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001932F: Documentation/filesystems/ext2.txt
1933F: fs/ext2/
1934F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
1936EXT3 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001937M: Stephen Tweedie <sct@redhat.com>
1938M: Andrew Morton <akpm@linux-foundation.org>
1939M: Andreas Dilger <adilger@sun.com>
Erik Mouw72be2cc2006-12-06 20:40:49 -08001940L: linux-ext4@vger.kernel.org
1941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001942F: Documentation/filesystems/ext3.txt
1943F: fs/ext3/
1944F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08001945
1946EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001947M: "Theodore Ts'o" <tytso@mit.edu>
1948M: Andreas Dilger <adilger@sun.com>
Erik Mouw72be2cc2006-12-06 20:40:49 -08001949L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04001950W: http://ext4.wiki.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001952F: Documentation/filesystems/ext4.txt
1953F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Jean Delvaree53004e2006-01-09 23:26:14 +01001955F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001956M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01001957L: lm-sensors@lm-sensors.org
1958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001959F: Documentation/hwmon/f71805f
1960F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01001961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001963M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964W: http://www.farsite.co.uk/
1965S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001966F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Akinobu Mitac5408b82007-04-23 14:41:20 -07001968FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001969M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07001970S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001971F: Documentation/fault-injection/
1972F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07001973
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001974FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07001975M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001976L: linux-fsdevel@vger.kernel.org
1977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001978F: include/linux/fcntl.h
1979F: include/linux/fs.h
1980F: fs/fcntl.c
1981F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001982
1983FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07001984M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001985L: linux-fsdevel@vger.kernel.org
1986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001987F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001988
Riku Voipiob26e0ed2009-03-03 21:37:17 +02001989FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001990M: Riku Voipio <riku.vipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02001991L: lm-sensors@lm-sensors.org
1992S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07001993F: drivers/hwmon/f75375s.c
1994F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02001995
Joe Perches7d2c86b2009-04-07 20:59:01 -07001996FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001997M: Kristian Hoegsberg <krh@redhat.com>
1998M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001999L: linux1394-devel@lists.sourceforge.net
2000W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002001T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002003F: drivers/firewire/
2004F: include/linux/firewire*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002005
2006FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002007S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002008F: Documentation/firmware_class/
2009F: drivers/base/firmware*.c
2010F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002011
2012FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002013M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07002014W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002016F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002017
2018FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Joe Perches8b58be82009-07-29 15:04:30 -07002019M: Mike McLagan <mike.mclagan@linux.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002020L: netdev@vger.kernel.org
2021S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002022F: drivers/net/wan/dlci.c
2023F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002024
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025FRAMEBUFFER LAYER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002026L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027W: http://linux-fbdev.sourceforge.net/
Andrew Morton36025a82009-06-17 16:25:56 -07002028S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002029F: Documentation/fb/
2030F: drivers/video/fb*
2031F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Zhang Wei173acc72008-03-01 07:42:48 -07002033FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002034M: Li Yang <leoli@freescale.com>
2035M: Zhang Wei <zw@zh-kernel.org>
Li Yang0899d632009-05-22 16:39:59 +08002036L: linuxppc-dev@ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002038F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002039
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002040FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002041M: Jochen Friedrich <jochen@scram.de>
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002042L: linuxppc-dev@ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002043L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002045F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002046
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002047FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002048M: Sascha Hauer <kernel@pengutronix.de>
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002049L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
2050L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
2051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002052F: arch/arm/plat-mxc/include/mach/imxfb.h
2053F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002054
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002055FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002056M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
2057M: Vitaly Bordug <vbordug@ru.mvista.com>
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002058L: linuxppc-dev@ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002059L: netdev@vger.kernel.org
2060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002061F: drivers/net/fs_enet/
2062F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002063
Timur Tabid9e9d822008-04-24 08:45:26 +10002064FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07002065M: Timur Tabi <timur@freescale.com>
Timur Tabid9e9d822008-04-24 08:45:26 +10002066L: linuxppc-dev@ozlabs.org
2067S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002068F: arch/powerpc/sysdev/qe_lib/
2069F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002070
Li Yanga7205b32007-04-23 10:38:18 -07002071FREESCALE HIGHSPEED USB DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002072M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002073L: linux-usb@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002074L: linuxppc-dev@ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002076F: drivers/usb/gadget/fsl_usb2_udc.c
Li Yanga7205b32007-04-23 10:38:18 -07002077
Li Yangbeaf53b2007-05-25 13:54:02 +08002078FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002079M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08002080L: netdev@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002081L: linuxppc-dev@ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002083F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002084
Timur Tabid9e9d822008-04-24 08:45:26 +10002085FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002086M: Timur Tabi <timur@freescale.com>
Timur Tabid9e9d822008-04-24 08:45:26 +10002087L: linuxppc-dev@ozlabs.org
2088S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002089F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002090
2091FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002092M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07002093L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10002094L: linuxppc-dev@ozlabs.org
2095S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002096F: sound/soc/fsl/fsl*
2097F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002098
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002100M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002103F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Pavel Machek71038f52009-01-15 13:51:02 -08002105FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07002106M: Pavel Machek <pavel@ucw.cz>
2107M: "Rafael J. Wysocki" <rjw@sisk.pl>
Pavel Machek71038f52009-01-15 13:51:02 -08002108L: linux-pm@lists.linux-foundation.org
2109S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002110F: Documentation/power/freezing-of-tasks.txt
2111F: include/linux/freezer.h
2112F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002113
David Howellsa5432f52009-04-20 15:46:45 +01002114FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002115M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01002116L: linux-cachefs@redhat.com
2117S: Supported
2118F: Documentation/filesystems/caching/
2119F: fs/fscache/
2120F: include/linux/fscache*.h
2121
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002122FTRACE
Joe Perches8b58be82009-07-29 15:04:30 -07002123M: Steven Rostedt <rostedt@goodmis.org>
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002124S: Maintained
Joe Perchesa65fd8e2009-06-18 16:49:23 -07002125F: Documentation/trace/ftrace.txt
Joe Perches679655d2009-04-07 20:44:32 -07002126F: arch/*/*/*/ftrace.h
2127F: arch/*/kernel/ftrace.c
2128F: include/*/ftrace.h
2129F: kernel/trace/
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002130
David Howells5ab7ffe2007-04-10 15:10:45 +01002131FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002132M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002134F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Jonathan Woithe20b93732008-06-11 10:14:56 +09302136FUJITSU LAPTOP EXTRAS
Joe Perches8b58be82009-07-29 15:04:30 -07002137M: Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
Jonathan Woithe20b93732008-06-11 10:14:56 +09302138L: linux-acpi@vger.kernel.org
2139S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002140F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302141
Miklos Szeredi04578f12005-09-09 13:10:22 -07002142FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07002143M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07002144L: fuse-devel@lists.sourceforge.net
2145W: http://fuse.sourceforge.net/
2146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002147F: fs/fuse/
2148F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002149
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07002151M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002153S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002154F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
2156GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002157M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158L: linux-scsi@vger.kernel.org
2159W: http://www.icp-vortex.com/
2160S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002161F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002163GENERIC GPIO I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002164M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002165S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002166F: drivers/i2c/busses/i2c-gpio.c
2167F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002168
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002169GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002170M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002173F: drivers/net/wan/c101.c
2174F: drivers/net/wan/hd6457*
2175F: drivers/net/wan/hdlc*
2176F: drivers/net/wan/n2.c
2177F: drivers/net/wan/pc300too.c
2178F: drivers/net/wan/pci200syn.c
2179F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002181GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07002182M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002183L: linux-arch@vger.kernel.org
2184T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
2185S: Maintained
2186F: include/asm-generic
2187
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002188GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002189M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002190L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002191W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002192T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2193T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002194S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002195F: Documentation/filesystems/gfs2*.txt
2196F: fs/gfs2/
2197F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002198
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002199GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002200M: Hansjoerg Lipp <hjlipp@web.de>
2201M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002202L: gigaset307x-common@lists.sourceforge.net
2203W: http://gigaset307x.sourceforge.net/
2204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002205F: Documentation/isdn/README.gigaset
2206F: drivers/isdn/gigaset/
2207F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002208
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002209HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002210M: Frank Seidel <frank@f-seidel.de>
Frank Seidel211e3e02009-02-17 19:59:54 +01002211L: lm-sensors@lm-sensors.org
2212W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002214F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002215
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002216HYPERVISOR VIRTUAL CONSOLE DRIVER
2217L: linuxppc-dev@ozlabs.org
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002218S: Odd Fixes
2219F: drivers/char/hvc_*
2220
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002221GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002222M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002223L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002224T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002226F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002227
2228GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002229M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002230L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002231T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002233F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002234
2235GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002236M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002237L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002238T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002240F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002241
2242GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002243M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002244L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002245T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002247F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002248
2249GSPCA USB WEBCAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002250M: Jean-Francois Moine <moinejf@free.fr>
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002251W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002252L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002253T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002255F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002256
Jean Delvare5b543962005-08-15 19:51:02 +02002257HARDWARE MONITORING
Jean Delvare5b543962005-08-15 19:51:02 +02002258L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002259W: http://www.lm-sensors.org/
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002260S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002261F: drivers/hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02002262
Michael Buesch844dd052006-06-26 00:24:59 -07002263HARDWARE RANDOM NUMBER GENERATOR CORE
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002264S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002265F: Documentation/hw_random.txt
2266F: drivers/char/hw_random/
2267F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002268
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269HARMONY SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002270M: Kyle McMartin <kyle@mcmartin.ca>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002271L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002273F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
2275HAYES ESP SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002276M: "Andrew J. Robinson" <arobinso@nyx.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277W: http://www.nyx.net/~arobinso
2278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002279F: Documentation/serial/hayes-esp.txt
2280F: drivers/char/esp.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002281
2282HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002283M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002284L: iss_storagedev@hp.com
2285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002286F: Documentation/blockdev/cpqarray.txt
2287F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002288
2289HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07002290M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002291L: iss_storagedev@hp.com
2292S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002293F: Documentation/blockdev/cciss.txt
2294F: drivers/block/cciss*
2295F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002296
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297HFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002298M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002300F: Documentation/filesystems/hfs.txt
2301F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
2303HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002304M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305L: linux-nvidia@lists.surfsouth.com
2306W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002308F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002310HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07002311M: Pavel Machek <pavel@ucw.cz>
2312M: "Rafael J. Wysocki" <rjw@sisk.pl>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002313L: linux-pm@lists.linux-foundation.org
2314S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002315F: arch/x86/power/
2316F: drivers/base/power/
2317F: kernel/power/
2318F: include/linux/suspend.h
2319F: include/linux/freezer.h
2320F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002321F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002322
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002323HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002324M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002325L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002326T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002328F: drivers/hid/
2329F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002330
Ingo Molnar38bed542007-02-22 09:09:34 +01002331HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07002332M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar38bed542007-02-22 09:09:34 +01002333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002334F: Documentation/timers/
2335F: kernel/hrtimer.c
2336F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002337
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338HIGH-SPEED SCC DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002339M: Klaus Kudielka <klaus.kudielka@ieee.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340L: linux-hams@vger.kernel.org
2341W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002343F: drivers/net/hamradio/dmascc.c
2344F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002346HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002347M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002348W: http://www.highpoint-tech.com
2349S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002350F: Documentation/scsi/hptiop.txt
2351F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002352
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07002354M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355L: linux-hippi@sunsite.dk
2356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002357F: include/linux/hippidevice.h
2358F: include/linux/if_hippi.h
2359F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Jouni Malinenff1d2762005-05-12 22:54:16 -04002361HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002362M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07002363L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002364L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002365W: http://hostap.epitest.fi/
2366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002367F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002368
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002369HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002370M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002371S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002372F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002373
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002374HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07002375M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002377F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002378
Joe Perches7d2c86b2009-04-07 20:59:01 -07002379HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07002380M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08002381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002382F: Documentation/timers/hpet.txt
2383F: drivers/char/hpet.c
2384F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002385
2386HPET: i386
Joe Perches8b58be82009-07-29 15:04:30 -07002387M: "Venkatesh Pallipadi (Venki)" <venkatesh.pallipadi@intel.com>
Bob Piccob9b03322005-11-07 00:59:19 -08002388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002389F: arch/x86/kernel/hpet.c
2390F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002391
2392HPET: x86_64
Joe Perches8b58be82009-07-29 15:04:30 -07002393M: Vojtech Pavlik <vojtech@suse.cz>
Bob Piccob9b03322005-11-07 00:59:19 -08002394S: Maintained
2395
Joe Perches7d2c86b2009-04-07 20:59:01 -07002396HPET: ACPI
Joe Perches8b58be82009-07-29 15:04:30 -07002397M: Bob Picco <bob.picco@hp.com>
Bob Piccob9b03322005-11-07 00:59:19 -08002398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002399F: drivers/char/hpet.c
Bob Piccob9b03322005-11-07 00:59:19 -08002400
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002402M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002405F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
Joe Perches7d2c86b2009-04-07 20:59:01 -07002407HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002408M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002409W: http://www.pharscape.org
2410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002411F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002412
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002413HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002414M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002415L: linux-input@vger.kernel.org
2416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002417F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002418
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002420M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002422F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002424I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002425M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01002426L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002428F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002429
Jean Delvare5b543962005-08-15 19:51:02 +02002430I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002431M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
2432M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01002433L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002434W: http://i2c.wiki.kernel.org/
2435T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002437F: Documentation/i2c/
2438F: drivers/i2c/
2439F: include/linux/i2c.h
2440F: include/linux/i2c-dev.h
2441F: include/linux/i2c-id.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
Till Harbaume8c76ee2007-05-01 23:26:35 +02002443I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002444M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01002445L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002446W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002448F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002449
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07002451M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002453F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
2455i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07002456M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07002457T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458S: Maintained
2459
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07002461M: Tony Luck <tony.luck@intel.com>
2462M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463L: linux-ia64@vger.kernel.org
2464W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002465T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002467F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469IBM MCA SCSI SUBSYSTEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002470M: Michael Lang <langa2@kph.uni-mainz.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471W: http://www.uni-mainz.de/~langm000/linux.html
2472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002473F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
2475IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07002476M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002478F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
2480IBM ServeRAID RAID DRIVER
2481P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07002482M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002484S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002485F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002487IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002488M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489L: linux-ide@vger.kernel.org
David S. Miller920d44e2009-06-21 16:11:33 -07002490T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002492F: Documentation/ide/
2493F: drivers/ide/
2494F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002496IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002497M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002498L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002500F: Documentation/cdrom/ide-cd
2501F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502
Andy Henroid27471fd2008-10-09 11:45:22 -07002503IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07002504M: Andy Henroid <andrew.d.henroid@intel.com>
Andy Henroid27471fd2008-10-09 11:45:22 -07002505L: linux-pm@lists.linux-foundation.org
2506S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002507F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002508
Joe Perches7d2c86b2009-04-07 20:59:01 -07002509IEEE 1394 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002510M: Ben Collins <ben.collins@ubuntu.com>
2511M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512L: linux1394-devel@lists.sourceforge.net
2513W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002514T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002516F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
Joe Perches7d2c86b2009-04-07 20:59:01 -07002518IEEE 1394 RAW I/O DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002519M: Dan Dennedy <dan@dennedy.org>
2520M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07002522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002523F: drivers/ieee1394/raw1394*
Jody McIntyre105d7b32005-09-30 11:59:04 -07002524
Sergey Lapin02cf2282009-06-08 12:18:50 +00002525IEEE 802.15.4 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002526M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2527M: Sergey Lapin <slapin@ossfans.org>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04002528L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00002529W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00002530T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00002531S: Maintained
2532F: net/ieee802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07002533F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00002534
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002535INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07002536M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002537S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002538F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002539
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002541L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Paul Mundt843393d2007-11-19 13:11:04 +09002542S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002543F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544
2545INFINIBAND SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002546M: Roland Dreier <rolandd@cisco.com>
2547M: Sean Hefty <sean.hefty@intel.com>
2548M: Hal Rosenstock <hal.rosenstock@gmail.com>
Randy Dunlap40b0bb12009-02-04 15:12:13 -08002549L: general@lists.openfabrics.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550W: http://www.openib.org/
Joe Perches54e58812009-04-07 21:08:10 -07002551T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002553F: Documentation/infiniband/
2554F: drivers/infiniband/
2555F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Robert Lovec9f04f52005-07-15 12:21:07 -04002557INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07002558M: John McCutchan <john@johnmccutchan.com>
2559M: Robert Love <rlove@rlove.org>
2560M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04002561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002562F: Documentation/filesystems/inotify.txt
2563F: fs/notify/inotify/
2564F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04002565
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002566INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002567M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
2568M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002569L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002570T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002572F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002573
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002574INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Joe Perches8b58be82009-07-29 15:04:30 -07002575M: Sylvain Meyer <sylvain.meyer@worldonline.fr>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002576L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002578F: Documentation/fb/intelfb.txt
2579F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002580
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002582M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002583L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002585F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302587INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002588M: Sujith Thomas <sujith.thomas@intel.com>
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302589L: linux-acpi@vger.kernel.org
2590W: http://www.lesswatts.org/projects/acpi/
2591S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002592F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302593
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002595M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002597F: arch/x86/kernel/microcode_core.c
2598F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002600INTEL I/OAT DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002601M: Maciej Sosnowski <maciej.sosnowski@intel.com>
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002602S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002603F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002604
David Woodhouse6c8909b2008-10-18 16:12:17 +01002605INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07002606M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01002607L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07002608T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01002609S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002610F: drivers/pci/intel-iommu.c
2611F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01002612
Dan Williamsb3e5f262007-08-07 10:26:35 -07002613INTEL IOP-ADMA DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002614M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002615S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002616F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07002617
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002618INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002619M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002621F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
2622F: arch/arm/mach-ixp4xx/include/mach/npe.h
2623F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
2624F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
2625F: drivers/net/arm/ixp4xx_eth.c
2626F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002627
Michael Buesch844dd052006-06-26 00:24:59 -07002628INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002629M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07002630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002631F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07002632
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002633INTEL IXP2000 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002634M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002635L: netdev@vger.kernel.org
2636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002637F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002638
Auke Kokd94e6fe2008-03-03 14:37:47 -08002639INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe)
Joe Perches8b58be82009-07-29 15:04:30 -07002640M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2641M: Jesse Brandeburg <jesse.brandeburg@intel.com>
2642M: Bruce Allan <bruce.w.allan@intel.com>
2643M: PJ Waskiewicz <peter.p.waskiewicz.jr@intel.com>
2644M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08002645L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08002646W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002648F: drivers/net/e100.c
2649F: drivers/net/e1000/
2650F: drivers/net/e1000e/
2651F: drivers/net/igb/
2652F: drivers/net/ixgb/
2653F: drivers/net/ixgbe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654
James Ketrenos826d2ab2005-11-07 18:56:59 -06002655INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002656M: Zhu Yi <yi.zhu@intel.com>
2657M: James Ketrenos <jketreno@linux.intel.com>
2658M: Reinette Chatre <reinette.chatre@intel.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07002659L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07002660L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08002661W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06002662W: http://ipw2100.sourceforge.net
2663S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002664F: Documentation/networking/README.ipw2100
2665F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06002666
2667INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002668M: Zhu Yi <yi.zhu@intel.com>
2669M: James Ketrenos <jketreno@linux.intel.com>
2670M: Reinette Chatre <reinette.chatre@intel.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07002671L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07002672L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08002673W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06002674W: http://ipw2200.sourceforge.net
2675S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002676F: Documentation/networking/README.ipw2200
2677F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06002678
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08002679INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07002680M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08002681M: linux-wimax@intel.com
2682L: wimax@linuxwimax.org
2683S: Supported
2684W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07002685F: Documentation/wimax/README.i2400m
2686F: drivers/net/wimax/i2400m/
2687F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08002688
Zhu Yib481de92007-09-25 17:54:57 -07002689INTEL WIRELESS WIFI LINK (iwlwifi)
Joe Perches8b58be82009-07-29 15:04:30 -07002690M: Zhu Yi <yi.zhu@intel.com>
2691M: Reinette Chatre <reinette.chatre@intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07002692L: linux-wireless@vger.kernel.org
2693L: ipw3945-devel@lists.sourceforge.net
2694W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07002695T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07002696S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002697F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07002698
Ralf Baechlecb109a02007-08-30 23:56:30 -07002699IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002700M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701L: linux-mips@linux-mips.org
2702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002703F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
Ralf Baechlecb109a02007-08-30 23:56:30 -07002705IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002706M: Pat Gefre <pfg@sgi.com>
Joe Perches6650e0a2007-12-10 15:49:32 -08002707L: linux-mips@linux-mips.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07002708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002709F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07002710
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002711IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07002712M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002714F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
Francois Romieu1202d6f2007-09-17 17:13:55 -07002716IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002717M: Francois Romieu <romieu@fr.zoreil.com>
2718M: Sorbica Shieh <sorbica@icplus.com.tw>
2719M: Jesse Huang <jesse@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07002720L: netdev@vger.kernel.org
2721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002722F: drivers/net/ipg.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07002723
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002724IPATH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002725M: Ralph Campbell <infinipath@qlogic.com>
Arthur Jonesf42b6472007-07-09 20:12:26 -07002726L: general@lists.openfabrics.org
2727T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08002728S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002729F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08002730
Corey Minyard4409ebe2006-04-20 02:43:12 -07002731IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002732M: Corey Minyard <minyard@acm.org>
Corey Minyard4409ebe2006-04-20 02:43:12 -07002733L: openipmi-developer@lists.sourceforge.net
2734W: http://openipmi.sourceforge.net/
2735S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002736F: Documentation/IPMI.txt
2737F: drivers/char/ipmi/
2738F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07002739
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002740IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002741M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002742L: linux-scsi@vger.kernel.org
2743W: http://www.adaptec.com/
2744S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002745F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002746
2747IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07002748M: Wensong Zhang <wensong@linux-vs.org>
2749M: Simon Horman <horms@verge.net.au>
2750M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002751L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002752L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002754F: Documentation/networking/ipvs-sysctl.txt
2755F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756
Randy Dunlape7839f22008-10-12 16:11:45 -07002757IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002758M: Jiri Kosina <jkosina@suse.cz>
2759M: David Sterba <dsterba@suse.cz>
David Sterba099dc4f2008-02-07 10:57:12 +01002760S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07002761T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07002762F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01002763
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002764IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002765M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002766L: netdev@vger.kernel.org
2767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002768F: include/linux/ipx.h
2769F: include/net/ipx.h
2770F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002771
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002773M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07002774L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07002776S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02002777T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07002778F: Documentation/networking/irda.txt
2779F: drivers/net/irda/
2780F: include/net/irda/
2781F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002783ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07002784M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002786F: Documentation/isapnp.txt
2787F: drivers/pnp/isapnp/
2788F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002789
Mike Christie14816b1e2007-11-28 16:22:06 -08002790ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07002791M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08002792L: open-iscsi@googlegroups.com
2793W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07002794T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08002795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002796F: drivers/scsi/*iscsi*
2797F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08002798
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002800M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07002801L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07002803T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002805F: Documentation/isdn/
2806F: drivers/isdn/
2807F: include/linux/isdn.h
2808F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
2810ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07002811M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07002812L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813W: http://www.melware.de
2814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002815F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816
Hans Verkuil91821ff2007-12-02 09:35:33 -03002817IVTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002818M: Hans Verkuil <hverkuil@xs4all.nl>
Hans Verkuil91821ff2007-12-02 09:35:33 -03002819L: ivtv-devel@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002820L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002821T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03002822W: http://www.ivtvdriver.org
2823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002824F: Documentation/video4linux/*.ivtv
2825F: drivers/media/video/ivtv/
2826F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03002827
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002828JFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002829M: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002830L: jfs-discussion@lists.sourceforge.net
2831W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07002832T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05002833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002834F: Documentation/filesystems/jfs.txt
2835F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002836
Guo-Fu Tseng95252232008-09-16 01:00:11 +08002837JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002838M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08002839L: netdev@vger.kernel.org
2840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002841F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08002842
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07002844M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04002845L: linux-mtd@lists.infradead.org
2846W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002848F: fs/jffs2/
2849F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850
Josh Triplettde456d32006-07-30 03:04:00 -07002851JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07002852M: Stephen Tweedie <sct@redhat.com>
2853M: Andrew Morton <akpm@linux-foundation.org>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002854L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07002855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002856F: fs/jbd*/
2857F: include/linux/ext*jbd*.h
2858F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07002859
Rudolf Marek4660cb32006-10-08 22:01:26 +02002860K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002861M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02002862L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002864F: Documentation/hwmon/k8temp
2865F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
2867KCONFIG
Joe Perches8b58be82009-07-29 15:04:30 -07002868M: Roman Zippel <zippel@linux-m68k.org>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02002869L: linux-kbuild@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002871F: Documentation/kbuild/kconfig-language.txt
2872F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Vivek Goyalea6c2082006-05-20 14:59:55 -07002874KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07002875M: Vivek Goyal <vgoyal@redhat.com>
2876M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07002877L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07002878W: http://lse.sourceforge.net/kdump/
2879S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07002880F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07002881
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882KERNEL AUTOMOUNTER (AUTOFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002883M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884L: autofs@linux.kernel.org
2885S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002886F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887
2888KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07002889M: Ian Kent <raven@themaw.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890L: autofs@linux.kernel.org
2891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002892F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
Joe Perches7d2c86b2009-04-07 20:59:01 -07002894KERNEL BUILD
Joe Perches8b58be82009-07-29 15:04:30 -07002895M: Sam Ravnborg <sam@ravnborg.org>
Joe Perches54e58812009-04-07 21:08:10 -07002896T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git
2897T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
Sam Ravnborg347d12d2007-10-18 13:23:33 +02002898L: linux-kbuild@vger.kernel.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002900F: Documentation/kbuild/
2901F: Makefile
2902F: scripts/Makefile.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
2904KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07002905L: kernel-janitors@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906W: http://www.kerneljanitors.org/
Joe Perches24725d12009-07-29 15:04:24 -07002907S: Odd fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04002909KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002910M: "J. Bruce Fields" <bfields@fieldses.org>
2911M: Neil Brown <neilb@suse.de>
Neil Brown16141c02007-12-11 16:16:12 -08002912L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08002914S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002915F: fs/nfsd/
2916F: include/linux/nfsd/
2917F: fs/lockd/
2918F: fs/nfs_common/
2919F: net/sunrpc/
2920F: include/linux/lockd/
2921F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
Avi Kivity426d62e2006-12-13 00:34:03 -08002923KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07002924M: Avi Kivity <avi@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03002925L: kvm@vger.kernel.org
2926W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08002927S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002928F: Documentation/*/kvm.txt
2929F: arch/*/kvm/
2930F: arch/*/include/asm/kvm*
2931F: include/linux/kvm*
2932F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08002933
Joerg Roedelad8003d2008-09-10 20:01:07 +02002934KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07002935M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002936L: kvm@vger.kernel.org
2937W: http://kvm.qumranet.com
2938S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002939F: arch/x86/include/asm/svm.h
2940F: arch/x86/kvm/kvm_svm.h
2941F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002942
Hollis Blanchard513014b2008-04-16 23:28:08 -05002943KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Joe Perches8b58be82009-07-29 15:04:30 -07002944M: Hollis Blanchard <hollisb@us.ibm.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03002945L: kvm-ppc@vger.kernel.org
2946W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05002947S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002948F: arch/powerpc/include/asm/kvm*
2949F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05002950
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03002951KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07002952M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03002953L: kvm-ia64@vger.kernel.org
2954W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08002955S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002956F: Documentation/ia64/kvm.txt
2957F: arch/ia64/include/asm/kvm*
2958F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08002959
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01002960KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07002961M: Carsten Otte <cotte@de.ibm.com>
2962M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01002963M: linux390@de.ibm.com
2964L: linux-s390@vger.kernel.org
2965W: http://www.ibm.com/developerworks/linux/linux390/
2966S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002967F: Documentation/s390/kvm.txt
2968F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07002969F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01002970
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002971KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07002972M: Eric Biederman <ebiederm@xmission.com>
Signed-off-by@vergenet.net":Simonb7c698f2007-10-18 03:04:33 -07002973W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
Simon Horman34633992007-05-08 00:31:40 -07002974L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002976F: include/linux/kexec.h
2977F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002978
Jason Wessele3e2aaf2008-03-20 13:43:45 -05002979KGDB
Joe Perches8b58be82009-07-29 15:04:30 -07002980M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessele3e2aaf2008-03-20 13:43:45 -05002981L: kgdb-bugreport@lists.sourceforge.net
2982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002983F: Documentation/DocBook/kgdb.tmpl
2984F: drivers/misc/kgdbts.c
2985F: drivers/serial/kgdboc.c
2986F: include/linux/kgdb.h
2987F: kernel/kgdb.c
Jason Wessele3e2aaf2008-03-20 13:43:45 -05002988
Pekka Enberg456db8c2008-04-28 22:47:29 +03002989KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07002990M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg456db8c2008-04-28 22:47:29 +03002991P Pekka Enberg
2992M: penberg@cs.helsinki.fi
Pekka Enberg456db8c2008-04-28 22:47:29 +03002993S: Maintained
2994
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01002995KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07002996M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01002997S: Maintained
2998F: Documentation/kmemleak.txt
2999F: include/linux/kmemleak.h
3000F: mm/kmemleak.c
3001F: mm/kmemleak-test.c
3002
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003003KMEMTRACE
Joe Perches8b58be82009-07-29 15:04:30 -07003004M: Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003005S: Maintained
Joe Perchesdc8c7f82009-04-21 12:24:45 -07003006F: Documentation/trace/kmemtrace.txt
Joe Perches898f96f2009-06-18 16:49:25 -07003007F: include/linux/kmemtrace.h
Joe Perches679655d2009-04-07 20:44:32 -07003008F: kernel/trace/kmemtrace.c
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003009
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003010KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07003011M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
3012M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
3013M: "David S. Miller" <davem@davemloft.net>
3014M: Masami Hiramatsu <mhiramat@redhat.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003016F: Documentation/kprobes.txt
3017F: include/linux/kprobes.h
3018F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003019
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003020KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003021M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07003022W: http://miguelojeda.es/auxdisplay.htm
3023W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003025F: Documentation/auxdisplay/ks0108
3026F: drivers/auxdisplay/ks0108.c
3027F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003028
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003031S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003032F: Documentation/networking/lapb-module.txt
3033F: include/*/lapb.h
3034F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
3036LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07003037M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038L: linux-scsi@vger.kernel.org
3039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003040F: Documentation/scsi/53c700.txt
3041F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
Richard Purdie263de9b2006-05-15 09:44:16 -07003043LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003044M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie263de9b2006-05-15 09:44:16 -07003045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003046F: drivers/leds/
3047F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003048
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07003050M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051L: legousb-devel@lists.sourceforge.net
3052W: http://legousb.sourceforge.net/
3053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003054F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
Rusty Russell568a17f2007-10-25 14:12:24 +10003056LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07003057M: Rusty Russell <rusty@rustcorp.com.au>
Rusty Russell568a17f2007-10-25 14:12:24 +10003058L: lguest@ozlabs.org
3059W: http://lguest.ozlabs.org/
3060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003061F: Documentation/lguest/
3062F: arch/x86/lguest/
3063F: drivers/lguest/
3064F: include/linux/lguest*.h
3065F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003066
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07003068M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069W: http://www.ibm.com/linux/ltc/projects/ppc
3070S: Supported
3071
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003072LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07003073M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
3074M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075W: http://www.penguinppc.org/
3076L: linuxppc-dev@ozlabs.org
Joe Perches54e58812009-04-07 21:08:10 -07003077T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078S: Supported
3079
3080LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07003081M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082W: http://www.penguinppc.org/
3083L: linuxppc-dev@ozlabs.org
3084S: Maintained
3085
Grant Likely77a76362008-07-12 12:11:43 -06003086LINUX FOR POWERPC EMBEDDED MPC5XXX
Joe Perches8b58be82009-07-29 15:04:30 -07003087M: Grant Likely <grant.likely@secretlab.ca>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003089T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090S: Maintained
3091
3092LINUX FOR POWERPC EMBEDDED PPC4XX
Joe Perches8b58be82009-07-29 15:04:30 -07003093M: Josh Boyer <jwboyer@linux.vnet.ibm.com>
3094M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003096L: linuxppc-dev@ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003097T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098S: Maintained
3099
Grant Likely260c02a2007-10-02 12:15:34 +10003100LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07003101M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06003102W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Grant Likely260c02a2007-10-02 12:15:34 +10003103L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003104T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105S: Maintained
3106
Tom Rinie93adf12005-07-26 12:49:53 -07003107LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07003108M: Vitaly Bordug <vitb@kernel.crashing.org>
3109M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07003110W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003111L: linuxppc-dev@ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003112S: Maintained
3113
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07003115M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01003116W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003117L: linuxppc-dev@ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003118S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
Olof Johanssonab06ff32006-09-06 14:44:54 -05003120LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07003121M: Olof Johansson <olof@lixom.net>
Olof Johanssonab06ff32006-09-06 14:44:54 -05003122W: http://www.pasemi.com/
3123L: linuxppc-dev@ozlabs.org
3124S: Supported
3125
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07003127M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08003128L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003129T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130S: Supported
3131
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003132LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07003133M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003135F: include/linux/llc.h
3136F: include/net/llc*
3137F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003138
Pavel Machek455fbdd2008-11-12 13:27:02 -08003139LIS3LV02D ACCELEROMETER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003140M: Eric Piel <eric.piel@tremplin-utc.net>
Pavel Machek455fbdd2008-11-12 13:27:02 -08003141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003142F: Documentation/hwmon/lis3lv02d
3143F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003144
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003146M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003147L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003149F: Documentation/hwmon/lm83
3150F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151
3152LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003153M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003154L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003156F: Documentation/hwmon/lm90
3157F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003159LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07003160M: Peter Zijlstra <peterz@infradead.org>
3161M: Ingo Molnar <mingo@redhat.com>
Joe Perches54e58812009-04-07 21:08:10 -07003162T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003164F: Documentation/lockdep*.txt
3165F: Documentation/lockstat.txt
3166F: include/linux/lockdep.h
3167F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003168
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003169LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07003170M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003171L: linux-ntfs-dev@lists.sourceforge.net
3172W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003174F: Documentation/ldm.txt
3175F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003177LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07003178M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08003179M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003180L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003181L: linux-scsi@vger.kernel.org
3182W: http://www.lsilogic.com/support
3183S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003184F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003185
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07003187M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188L: linux-scsi@vger.kernel.org
3189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003190F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191
Mike Frysinger81365c32008-10-29 14:01:12 -07003192LTP (Linux Test Project)
Joe Perches8b58be82009-07-29 15:04:30 -07003193M: Subrata Modak <subrata@linux.vnet.ibm.com>
3194M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger81365c32008-10-29 14:01:12 -07003195L: ltp-list@lists.sourceforge.net (subscribers-only)
3196W: http://ltp.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003197T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07003198S: Maintained
3199
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003200M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003201M: Hirokazu Takata <takata@linux-m32r.org>
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003202L: linux-m32r@ml.linux-m32r.org
3203L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3204W: http://www.linux-m32r.org/
3205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003206F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003207
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003209M: Geert Uytterhoeven <geert@linux-m68k.org>
3210M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211L: linux-m68k@lists.linux-m68k.org
3212W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003213T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003215F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003216F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217
3218M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07003219M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003221L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003223F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224
3225M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07003226M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227W: http://www.tazenda.demon.co.uk/phil/linux-hp
3228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003229F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230
Jiri Benc64a327a2007-05-05 11:47:08 -07003231MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07003232M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07003233L: linux-wireless@vger.kernel.org
3234W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003235T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003237F: Documentation/networking/mac80211-injection.txt
3238F: include/net/mac80211.h
3239F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003240
Stefano Brivio1036d862007-12-23 04:46:27 +01003241MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07003242M: Stefano Brivio <stefano.brivio@polimi.it>
3243M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01003244L: linux-wireless@vger.kernel.org
3245W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003246T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003248F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003249
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003250MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003251M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003252L: netdev@vger.kernel.org
3253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003254F: drivers/net/macvlan.c
3255F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003256
Michael Kerriskfaf16682005-07-31 22:34:47 -07003257MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07003258M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003259W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003260L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003261S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003262
Stefano Brivio74cda162007-11-19 20:27:46 +01003263MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003264M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01003265L: libertas-dev@lists.infradead.org
3266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003267F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003268
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003269MARVELL MV643XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003270M: Lennert Buytenhek <buytenh@marvell.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003271L: netdev@vger.kernel.org
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003272S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003273F: drivers/net/mv643xx_eth.*
3274F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275
Pierre Ossman2a695672009-03-16 19:52:26 +01003276MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003277M: Nicolas Pitre <nico@cam.org>
Pierre Ossman2a695672009-03-16 19:52:26 +01003278S: Maintained
3279
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003280MARVELL YUKON / SYSKONNECT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003281M: Mirko Lindner <mlindner@syskonnect.de>
3282M: Ralph Roesler <rroesler@syskonnect.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003283W: http://www.syskonnect.com
3284S: Supported
3285
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286MATROX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003287M: Petr Vandrovec <vandrove@vc.cvut.cz>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003288L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003290F: drivers/video/matrox/matroxfb_*
3291F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003293MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003294M: "Hans J. Koch" <hjk@linutronix.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003295L: lm-sensors@lm-sensors.org
3296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003297F: Documentation/hwmon/max6650
3298F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003299
Joe Perches127c49a2009-04-08 08:34:04 -07003300MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07003301M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07003302P: LinuxTV.org Project
3303L: linux-media@vger.kernel.org
3304W: http://linuxtv.org
3305T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3306S: Maintained
3307F: Documentation/dvb/
3308F: Documentation/video4linux/
3309F: drivers/media/
3310F: include/media/
3311F: include/linux/dvb/
3312F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003313
3314MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003315M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003316L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003317W: http://megaraid.lsilogic.com
3318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003319F: Documentation/scsi/megaraid.txt
3320F: drivers/scsi/megaraid.*
3321F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003322
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003323MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325W: http://www.linux-mm.org
3326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003327F: include/linux/mm.h
3328F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003329
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003330MEMORY RESOURCE CONTROLLER
Joe Perches8b58be82009-07-29 15:04:30 -07003331M: Balbir Singh <balbir@linux.vnet.ibm.com>
3332M: Pavel Emelyanov <xemul@openvz.org>
3333M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003334L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003336F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003337
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07003339M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340W: http://www.linux-mtd.infradead.org/
3341L: linux-mtd@lists.infradead.org
Josh Boyer2c560ac2005-11-23 15:43:57 -08003342T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003344F: drivers/mtd/
3345F: include/linux/mtd/
3346F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
Michal Simekc6375b02009-03-27 14:25:52 +01003348MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003349M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01003350L: microblaze-uclinux@itee.uq.edu.au
3351W: http://www.monstr.eu/fdt/
3352T: git git://git.monstr.eu/linux-2.6-microblaze.git
3353S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02003354F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355
3356MICROTEK X6 SCANNER
Joe Perches8b58be82009-07-29 15:04:30 -07003357M: Oliver Neukum <oliver@neukum.name>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003359F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360
3361MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07003362M: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003363W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003365T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003366S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003367F: Documentation/mips/
3368F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369
3370MISCELLANEOUS MCA-SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003371M: James Bottomley <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003373F: Documentation/ia64/mca.txt
3374F: Documentation/mca.txt
3375F: drivers/mca/
3376F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377
3378MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003379M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003381F: include/linux/module.h
3382F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383
3384MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003385M: Stelian Pop <stelian@popies.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386W: http://popies.net/meye/
3387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003388F: Documentation/video4linux/meye.txt
3389F: drivers/media/video/meye.*
3390F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391
Pavel Pisac58ff042007-05-16 01:10:41 +02003392MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003393M: Pavel Pisa <ppisa@pikron.com>
Pavel Pisac58ff042007-05-16 01:10:41 +02003394L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Pavel Pisac58ff042007-05-16 01:10:41 +02003395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003396F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003397
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398MOUSE AND MISC DEVICES [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07003399M: Alessandro Rubini <rubini@ipvvis.unipv.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003401F: drivers/input/mouse/
3402F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403
Jiri Slabyb9705b62008-04-30 00:53:48 -07003404MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07003405M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08003406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003407F: Documentation/serial/moxa-smartio
3408F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003409
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003410MSI LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003411M: Lennart Poettering <mzxreary@0pointer.de>
Joe Perches04bdfb92007-12-22 14:03:27 -08003412W: https://tango.0pointer.de/mailman/listinfo/s270-linux
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003413W: http://0pointer.de/lennart/tchibo.html
3414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003415F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003416
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003417MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07003418M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07003419T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003420S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003421F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003422
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003423MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003424M: Pierre Ossman <pierre@ossman.eu>
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003426F: drivers/mmc/
3427F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01003428
David Brownell15a05802007-08-08 09:12:54 -07003429MULTIMEDIA CARD (MMC) ETC. OVER SPI
Joe Perches8b58be82009-07-29 15:04:30 -07003430M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003431S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003432F: drivers/mmc/host/mmc_spi.c
3433F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07003434
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003436M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003438F: Documentation/sound/oss/MultiSound
3439F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
Jiri Slabyd7354102006-12-08 02:38:35 -08003441MULTITECH MULTIPORT CARD (ISICOM)
Joe Perches8b58be82009-07-29 15:04:30 -07003442M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08003443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003444F: drivers/char/isicom.c
3445F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08003446
Felipe Balbi550a7372008-07-24 12:27:36 +03003447MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Joe Perches8b58be82009-07-29 15:04:30 -07003448M: Felipe Balbi <felipe.balbi@nokia.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003449L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003450T: git git://gitorious.org/musb/mainline.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02003451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003452F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03003453
Brice Goglin2d3cf582008-05-17 12:45:36 +02003454MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07003455M: Andrew Gallatin <gallatin@myri.com>
3456M: Brice Goglin <brice@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02003457L: netdev@vger.kernel.org
3458W: http://www.myri.com/scs/download-Myri10GE.html
3459S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003460F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02003461
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462NATSEMI ETHERNET DRIVER (DP8381x)
Joe Perches8b58be82009-07-29 15:04:30 -07003463M: Tim Hockin <thockin@hockin.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003465F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466
3467NCP FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003468M: Petr Vandrovec <vandrove@vc.cvut.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469L: linware@sh.cvut.cz
3470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003471F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
3473NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07003474M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475L: linux-scsi@vger.kernel.org
3476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003477F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003479NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07003480M: Faisal Latif <faisal.latif@intel.com>
3481M: Chien Tung <chien.tin.tung@intel.com>
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003482L: general@lists.openfabrics.org
3483W: http://www.neteffect.com
3484S: Supported
3485F: drivers/infiniband/hw/nes/
3486
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003487NETEM NETWORK EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003488M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07003489L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003491F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003492
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003493NETERION (S2IO) 10GbE DRIVER (xframe/vxge)
Joe Perches8b58be82009-07-29 15:04:30 -07003494M: Ramkrishna Vepa <ram.vepa@neterion.com>
3495M: Rastapur Santosh <santosh.rastapur@neterion.com>
3496M: Sivakumar Subramani <sivakumar.subramani@neterion.com>
3497M: Sreenivasa Honnur <sreenivasa.honnur@neterion.com>
3498M: Anil Murthy <anil.murthy@neterion.com>
Jiri Slaby4a584482007-08-30 23:56:39 -07003499L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003500W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
3501W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07003502S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003503F: Documentation/networking/s2io.txt
3504F: drivers/net/s2io*
Jiri Slaby4a584482007-08-30 23:56:39 -07003505
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506NETFILTER/IPTABLES/IPCHAINS
3507P: Rusty Russell
3508P: Marc Boucher
3509P: James Morris
3510P: Harald Welte
3511P: Jozsef Kadlecsik
Joe Perches8b58be82009-07-29 15:04:30 -07003512M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07003513L: netfilter-devel@vger.kernel.org
3514L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07003515L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516W: http://www.netfilter.org/
3517W: http://www.iptables.org/
Joe Perches3f1f7cf2009-07-01 11:32:10 +02003518T: git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003520F: include/linux/netfilter*
3521F: include/linux/netfilter/
3522F: include/net/netfilter/
3523F: net/*/netfilter.c
3524F: net/*/netfilter/
3525F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526
Paul Moore4cc67732006-09-25 15:57:13 -07003527NETLABEL
Joe Perches8b58be82009-07-29 15:04:30 -07003528M: Paul Moore <paul.moore@hp.com>
Paul Moore4cc67732006-09-25 15:57:13 -07003529W: http://netlabel.sf.net
3530L: netdev@vger.kernel.org
3531S: Supported
Joe Perches80811492009-04-08 20:20:27 -07003532F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07003533F: include/net/netlabel.h
3534F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07003535
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003537M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02003539W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003541F: include/linux/netrom.h
3542F: include/net/netrom.h
3543F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544
Pavel Machek5ddb88c2006-09-29 02:01:29 -07003545NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07003546M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003548F: Documentation/blockdev/nbd.txt
3549F: drivers/block/nbd.c
3550F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551
3552NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07003553M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003554L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00003555W: http://www.linuxfoundation.org/en/Net
3556T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003558F: net/
3559F: include/net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560
3561NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07003562M: "David S. Miller" <davem@davemloft.net>
3563M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
3564M: "Pekka Savola (ipv6)" <pekkas@netcore.fi>
3565M: James Morris <jmorris@namei.org>
3566M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
3567M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003568L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003569T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003571F: net/ipv4/
3572F: net/ipv6/
3573F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574
James Morris10e2ff12007-08-25 14:41:28 -07003575NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Joe Perches8b58be82009-07-29 15:04:30 -07003576M: Paul Moore <paul.moore@hp.com>
James Morris10e2ff12007-08-25 14:41:28 -07003577L: netdev@vger.kernel.org
3578S: Maintained
3579
John W. Linville29f8f632006-01-18 14:52:48 -08003580NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07003581M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08003582L: linux-wireless@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003583T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08003584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003585F: net/wireless/
3586F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07003587F: include/linux/wireless.h
John W. Linville29f8f632006-01-18 14:52:48 -08003588
Joe Perches788873a2009-04-16 09:38:45 +00003589NETWORKING DRIVERS
3590L: netdev@vger.kernel.org
3591W: http://www.linuxfoundation.org/en/Net
3592T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
3593S: Odd Fixes
3594F: drivers/net/
3595
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003596NETXEN (1/10) GbE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003597M: Dhananjay Phadke <dhananjay@netxen.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003598L: netdev@vger.kernel.org
3599W: http://www.netxen.com
3600S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003601F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003602
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003603NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07003604M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05003605L: linux-nfs@vger.kernel.org
3606W: http://client.linux-nfs.org
3607T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003609F: fs/lockd/
3610F: fs/nfs/
3611F: fs/nfs_common/
3612F: net/sunrpc/
3613F: include/linux/lockd/
3614F: include/linux/nfs*
3615F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616
3617NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003618M: Jan-Pascal van Best <janpascal@vanbest.org>
3619M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003620L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003622F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07003624NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003625M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07003626L: users@nilfs.org
3627W: http://www.nilfs.org/en/
3628S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003629F: Documentation/filesystems/nilfs2.txt
3630F: fs/nilfs2/
3631F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07003632
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003634M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
3636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003637F: Documentation/scsi/NinjaSCSI.txt
3638F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639
3640NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003641M: GOTO Masanori <gotom@debian.or.jp>
3642M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
3644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003645F: Documentation/scsi/NinjaSCSI.txt
3646F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648NTFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003649M: Anton Altaparmakov <aia21@cantab.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07003651W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07003652T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003654F: Documentation/filesystems/ntfs.txt
3655F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003657NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003658M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003659L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01003660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003661F: drivers/video/riva/
3662F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663
Tony Lindgrenf5525782009-05-28 13:23:53 -07003664OMAP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003665M: "Tony Lindgren <tony@atomide.com>" <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003666L: linux-omap@vger.kernel.org
3667W: http://www.muru.com/linux/omap/
3668W: http://linux.omap.com/
3669T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
3670S: Maintained
3671F: arch/arm/*omap*
3672
3673OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003674M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003675L: linux-omap@vger.kernel.org
3676S: Maintained
3677F: arch/arm/*omap*/*clock*
3678
3679OMAP POWER MANAGEMENT SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003680M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003681L: linux-omap@vger.kernel.org
3682S: Maintained
3683F: arch/arm/*omap*/*pm*
3684
3685OMAP AUDIO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003686M: Jarkko Nikula <jhnikula@gmail.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003687L: alsa-devel@alsa-project.org (subscribers-only)
3688L: linux-omap@vger.kernel.org
3689S: Maintained
3690F: sound/soc/omap/
3691
3692OMAP FRAMEBUFFER SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003693M: Imre Deak <imre.deak@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003694L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
3695L: linux-omap@vger.kernel.org
3696S: Maintained
3697F: drivers/video/omap/
3698
3699OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003700M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003701L: linux-omap@vger.kernel.org
3702S: Maintained
3703F: drivers/mmc/host/*omap*
3704
3705OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003706M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003707S: Maintained
3708F: drivers/char/hw_random/omap-rng.c
3709
3710OMAP USB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003711M: Felipe Balbi <felipe.balbi@nokia.com>
3712M: David Brownell <dbrownell@users.sourceforge.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003713L: linux-usb@vger.kernel.org
3714L: linux-omap@vger.kernel.org
3715S: Maintained
3716
Bob Copeland0ad122d2008-07-25 19:45:18 -07003717OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003718M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07003719L: linux-karma-devel@lists.sourceforge.net
3720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003721F: Documentation/filesystems/omfs.txt
3722F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07003723
Harald Weltec1986ee2005-11-13 16:06:29 -08003724OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003725M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08003726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003727F: drivers/char/pcmcia/cm4000_cs.c
3728F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08003729
Harald Welte77c44ab2005-11-13 16:06:26 -08003730OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003731M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08003732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003733F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08003734
Jonathan Corbet77d51402007-03-22 19:44:17 -03003735OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003736M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003737L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003738T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03003739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003740F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03003741
Thomas Gleixner431bca72007-05-02 09:31:35 +02003742ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003743M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02003744L: linux-mtd@lists.infradead.org
3745S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003746F: drivers/mtd/onenand/
3747F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02003748
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003750M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751L: osst-users@lists.sourceforge.net
3752L: linux-scsi@vger.kernel.org
3753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003754F: drivers/scsi/osst*
3755F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003757OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003758M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01003759L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003761F: Documentation/i2c/busses/i2c-ocores
3762F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003763
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07003765M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766L: oprofile-list@lists.sf.net
3767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003768F: arch/*/oprofile/
3769F: drivers/oprofile/
3770F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003772ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07003773M: Mark Fasheh <mfasheh@suse.com>
3774M: Joel Becker <joel.becker@oracle.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003775L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
3776W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07003777T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003778S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003779F: Documentation/filesystems/ocfs2.txt
3780F: Documentation/filesystems/dlmfs.txt
3781F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003782
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783ORINOCO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003784M: Pavel Roskin <proski@gnu.org>
3785M: David Gibson <hermes@gibson.dropbear.id.au>
Johannes Berg724c6b32007-04-23 12:18:20 -07003786L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07003787L: orinoco-users@lists.sourceforge.net
3788L: orinoco-devel@lists.sourceforge.net
3789W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003791F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03003793OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003794M: Boaz Harrosh <bharrosh@panasas.com>
3795M: Benny Halevy <bhalevy@panasas.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02003796L: osd-dev@open-osd.org
3797W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07003798T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02003799S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03003800F: drivers/scsi/osd/
3801F: drivers/include/scsi/osd_*
3802F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02003803
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003804P54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003805M: Michael Wu <flamingice@sourmilk.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003806L: linux-wireless@vger.kernel.org
3807W: http://prism54.org
Joe Perches54e58812009-04-07 21:08:10 -07003808T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003810F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003811
Olof Johanssonf5cd7872007-01-31 21:43:54 -06003812PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003813M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06003814L: netdev@vger.kernel.org
3815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003816F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06003817
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01003818PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003819M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01003820L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01003821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003822F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01003823
Harald Welte709ee532008-09-23 17:46:57 +02003824PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003825M: Harald Welte <laforge@gnumonks.org>
Harald Welte709ee532008-09-23 17:46:57 +02003826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003827F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02003828
David Howells4fa97182008-10-13 10:42:44 +01003829PANASONIC MN10300/AM33 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003830M: David Howells <dhowells@redhat.com>
3831M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01003832L: linux-am33-list@redhat.com (moderated for non-subscribers)
3833W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
3834S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003835F: Documentation/mn10300/
3836F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01003837
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07003839L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08003840S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003841F: drivers/parport/
3842F: include/linux/parport*.h
3843F: drivers/char/ppdev.c
3844F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003846PARAVIRT_OPS INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07003847M: Jeremy Fitzhardinge <jeremy@xensource.com>
3848M: Chris Wright <chrisw@sous-sol.org>
3849M: Alok Kataria <akataria@vmware.com>
3850M: Rusty Russell <rusty@rustcorp.com.au>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003851L: virtualization@lists.osdl.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003852S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003853F: Documentation/ia64/paravirt_ops.txt
3854F: arch/*/kernel/paravirt*
3855F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003856
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07003858M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07003859L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860W: http://www.torque.net/linux-pp.html
3861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003862F: Documentation/blockdev/paride.txt
3863F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864
3865PARISC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003866M: Kyle McMartin <kyle@mcmartin.ca>
3867M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003868L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869W: http://www.parisc-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07003870T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003872F: arch/parisc/
3873F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
Jim Cromie1662d322006-10-06 00:43:59 -07003875PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003876M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07003877L: lm-sensors@lm-sensors.org
3878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003879F: Documentation/hwmon/pc87360
3880F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07003881
3882PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003883M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07003884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003885F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07003886
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003887PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003888M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003889S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003890F: drivers/leds/leds-pca9532.c
3891F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003892
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06003893PCI ERROR RECOVERY
Joe Perches8b58be82009-07-29 15:04:30 -07003894M: Linas Vepstas <linas@austin.ibm.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07003895L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06003896S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003897F: Documentation/PCI/pci-error-recovery.txt
3898F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06003899
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900PCI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003901M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes29054742008-05-03 08:35:49 -07003902L: linux-pci@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003903T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003905F: Documentation/PCI/
3906F: drivers/pci/
3907F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003909PCIE HOTPLUG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003910M: Kristen Carlson Accardi <kristen.c.accardi@intel.com>
Jesse Barnes64dab202008-06-10 14:20:03 -07003911L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05003912S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003913F: drivers/pci/pcie/
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003914
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07003916P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07003917L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08003918W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07003919T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07003920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003921F: Documentation/pcmcia/
3922F: drivers/pcmcia/
3923F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924
3925PCNET32 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003926M: Don Fry <pcnet32@verizon.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003927L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003929F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003931PER-TASK DELAY ACCOUNTING
Joe Perches8b58be82009-07-29 15:04:30 -07003932M: Balbir Singh <balbir@linux.vnet.ibm.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003934F: include/linux/delayacct.h
3935F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003936
Paul Mackerras6c0b3242009-04-09 09:27:37 +10003937PERFORMANCE COUNTER SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003938M: Peter Zijlstra <a.p.zijlstra@chello.nl>
3939M: Paul Mackerras <paulus@samba.org>
3940M: Ingo Molnar <mingo@elte.hu>
Paul Mackerras6c0b3242009-04-09 09:27:37 +10003941S: Supported
3942
Jim Cromiedd49d0f2006-03-24 18:08:17 +01003943PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07003944M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01003945L: linux-abi-devel@lists.sourceforge.net
3946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003947F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01003948
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003950M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951L: linux-mtd@lists.infradead.org
3952S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003953F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954
Peter Osterlund249a6772005-09-27 21:45:30 -07003955PKTCDVD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003956M: Peter Osterlund <petero2@telia.com>
Peter Osterlund249a6772005-09-27 21:45:30 -07003957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003958F: drivers/block/pktcdvd.c
3959F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07003960
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07003962M: Thomas Gleixner <tglx@linutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003964F: fs/timerfd.c
3965F: include/linux/timer*
3966F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967
Anton Vorontsov3be86142007-07-15 04:43:36 +04003968POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003969M: Anton Vorontsov <cbou@mail.ru>
3970M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07003971T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04003972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003973F: include/linux/power_supply.h
3974F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04003975
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003977M: Adam Belay <abelay@mit.edu>
3978M: Bjorn Helgaas <bjorn.helgaas@hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003980F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981
Vitaly Wool999445d2007-01-04 13:07:03 +01003982PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003983M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003984L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01003985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003986F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01003987
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07003989M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990L: linux-ppp@vger.kernel.org
3991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003992F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993
3994PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07003995M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003997F: net/atm/pppoatm.c
3998F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999
4000PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07004001M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004003F: drivers/net/pppoe.c
4004F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005
James Chapmana6d23702007-06-27 15:53:17 -07004006PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07004007M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07004008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004009F: drivers/net/pppol2tp.c
4010F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004011
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004012PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004013M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004014W: http://wiki.enneenne.com/index.php/LinuxPPS_support
4015L: linuxpps@ml.enneenne.com (subscribers-only)
4016S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07004017F: Documentation/pps/
4018F: drivers/pps/
4019F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004020
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07004022M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023L: kpreempt-tech@lists.sourceforge.net
4024W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4025S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004026F: Documentation/preempt-locking.txt
4027F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028
4029PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004030M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004031L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032W: http://prism54.org
4033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004034F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035
4036PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004037M: Peter Denison <promise@pnd-pc.demon.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038W: http://www.pnd-pc.demon.co.uk/promise/
4039S: Maintained
4040
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004041PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004042M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004043L: linux-ide@vger.kernel.org
4044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004045F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004046
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004047PS3 NETWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004048M: Geoff Levand <geoffrey.levand@am.sony.com>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004049L: netdev@vger.kernel.org
4050L: cbe-oss-dev@ozlabs.org
4051S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004052F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004053
Geoff Levandf58a9d12006-11-23 00:46:51 +01004054PS3 PLATFORM SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004055M: Geoff Levand <geoffrey.levand@am.sony.com>
Geoff Levandf58a9d12006-11-23 00:46:51 +01004056L: linuxppc-dev@ozlabs.org
4057L: cbe-oss-dev@ozlabs.org
4058S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004059F: arch/powerpc/boot/ps3*
4060F: arch/powerpc/include/asm/lv1call.h
4061F: arch/powerpc/include/asm/ps3*.h
4062F: arch/powerpc/platforms/ps3/
4063F: drivers/*/ps3*
4064F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00004065F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07004066F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00004067F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01004068
Jim Pariscffb4add2009-01-06 11:32:10 +00004069PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004070M: Jim Paris <jim@jtan.com>
Jim Pariscffb4add2009-01-06 11:32:10 +00004071L: cbe-oss-dev@ozlabs.org
4072S: Maintained
4073
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004074PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004075M: Roland McGrath <roland@redhat.com>
4076M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004077S: Maintained
4078F: include/asm-generic/syscall.h
4079F: include/linux/ptrace.h
4080F: include/linux/regset.h
4081F: include/linux/tracehook.h
4082F: kernel/ptrace.c
4083
Michael Krufky83202042006-07-03 00:24:18 -07004084PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004085M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03004086L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004087L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004088W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004089T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004091F: Documentation/video4linux/README.pvrusb2
4092F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004093
Eric Miao30ec2612008-06-12 15:21:41 -07004094PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004095M: Eric Miao <eric.y.miao@gmail.com>
4096M: Russell King <linux@arm.linux.org.uk>
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07004097L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004099F: arch/arm/mach-pxa/
4100F: drivers/pcmcia/pxa2xx*
4101F: drivers/spi/pxa2xx*
4102F: drivers/usb/gadget/pxa2*
4103F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01004104F: sound/arm/pxa*
4105F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004107PXA168 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004108M: Eric Miao <eric.y.miao@gmail.com>
4109M: Jason Chagas <jason.chagas@marvell.com>
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004110L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004111T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004112S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004113
Eric Miao5fa82eb2009-03-20 12:52:24 +08004114PXA910 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004115M: Eric Miao <eric.y.miao@gmail.com>
Eric Miao5fa82eb2009-03-20 12:52:24 +08004116L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004117T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004118S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08004119
Pierre Ossman272f1332007-05-14 21:25:26 +02004120PXA MMCI DRIVER
4121S: Orphan
4122
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004123PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004124M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004125L: rtc-linux@googlegroups.com
4126S: Maintained
4127
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004129M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004130M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131L: linux-scsi@vger.kernel.org
4132S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004133F: Documentation/scsi/LICENSE.qla2xxx
4134F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135
Ron Mercer5a4faa872006-07-25 00:40:21 -07004136QLOGIC QLA3XXX NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004137M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07004138M: linux-driver@qlogic.com
4139L: netdev@vger.kernel.org
4140S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004141F: Documentation/networking/LICENSE.qla3xxx
4142F: drivers/net/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07004143
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004144QLOGIC QLGE 10Gb ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004145M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07004146M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004147L: netdev@vger.kernel.org
4148S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004149F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004150
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004152M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153W: http://www.alarsen.net/linux/qnx4fs/
4154S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004155F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07004156F: include/linux/qnx4_fs.h
4157F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158
4159RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004160M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004161L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004163F: drivers/video/aty/radeon*
4164F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165
4166RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004167M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004168L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004170F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171
Randy Dunlape7839f22008-10-12 16:11:45 -07004172RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004173P: rt2x00 project
4174L: linux-wireless@vger.kernel.org
Ivo van Doorn6d5eaaf2009-03-17 11:29:19 +01004175L: users@rt2x00.serialmonkey.com
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004176W: http://rt2x00.serialmonkey.com/
4177S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004178T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004179F: drivers/net/wireless/rt2x00/
4180
Nick Piggin9db55792008-02-08 04:19:49 -08004181RAMDISK RAM BLOCK DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004182M: Nick Piggin <npiggin@suse.de>
Nick Piggin9db55792008-02-08 04:19:49 -08004183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004184F: Documentation/blockdev/ramdisk.txt
4185F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004186
Matt Mackall9e95ce22005-04-16 15:25:56 -07004187RANDOM NUMBER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004188M: Matt Mackall <mpm@selenic.com>
Matt Mackall9e95ce22005-04-16 15:25:56 -07004189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004190F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004191
Matt Porter394b7012005-11-07 01:00:15 -08004192RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004193M: Matt Porter <mporter@kernel.crashing.org>
Matt Porter394b7012005-11-07 01:00:15 -08004194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004195F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004196
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004197RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004198M: Corey Thomas <coreythomas@charter.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004199L: linux-wireless@vger.kernel.org
4200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004201F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004202
4203RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07004204M: Josh Triplett <josh@freedesktop.org>
4205M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004207F: Documentation/RCU/torture.txt
4208F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004209
Florian Fainellic1f766b2008-02-06 22:39:44 +01004210RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07004211M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01004212S: Maintained
4213
Florian Fainellidb17f392007-12-19 11:30:30 +01004214RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004215M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01004216L: netdev@vger.kernel.org
4217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004218F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004219
Andy Grovera09ed662009-02-24 15:30:41 +00004220RDS - RELIABLE DATAGRAM SOCKETS
Joe Perches8b58be82009-07-29 15:04:30 -07004221M: Andy Grover <andy.grover@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00004222L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00004223S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004224F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004225
Josh Triplett595182b2006-10-04 02:17:21 -07004226READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07004227M: Dipankar Sarma <dipankar@in.ibm.com>
4228M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Josh Triplett595182b2006-10-04 02:17:21 -07004229W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07004230S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004231F: Documentation/RCU/rcu.txt
4232F: Documentation/RCU/rcuref.txt
4233F: include/linux/rcupdate.h
4234F: include/linux/srcu.h
4235F: kernel/rcupdate.c
Josh Triplett595182b2006-10-04 02:17:21 -07004236
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237REAL TIME CLOCK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004238M: Paul Gortmaker <p_gortmaker@yahoo.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004240F: Documentation/rtc.txt
4241F: drivers/rtc/
4242F: include/linux/rtc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004244REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004245M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08004246L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004248F: Documentation/rtc.txt
4249F: drivers/rtc/
4250F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004251
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004253L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004255F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256
Ivo van Doorne08976452008-04-12 19:23:55 +02004257RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07004258M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02004259L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02004260S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004261F Documentation/rfkill.txt
4262F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02004263
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004264RISCOM8 DRIVER
4265S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004266F: Documentation/serial/riscom8.txt
4267F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004268
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269ROCKETPORT DRIVER
4270P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271W: http://www.comtrol.com
4272S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004273F: Documentation/serial/rocket.txt
4274F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275
4276ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004277M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004279W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004281F: include/linux/rose.h
4282F: include/net/rose.h
4283F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284
Larry Finger59840482008-11-12 17:13:09 -06004285RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004286M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04004287L: linux-wireless@vger.kernel.org
4288W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004289T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04004290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004291F: drivers/net/wireless/rtl818*
Michael Wu605bebe2007-05-14 01:41:02 -04004292
Larry Finger59840482008-11-12 17:13:09 -06004293RTL8187 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004294M: Herton Ronaldo Krzesinski <herton@mandriva.com.br>
4295M: Hin-Tak Leung <htl10@users.sourceforge.net>
4296M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07004297L: linux-wireless@vger.kernel.org
4298W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004299T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07004300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004301F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06004302
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004303S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004304M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004305L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004307F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004308
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309S390
Joe Perches8b58be82009-07-29 15:04:30 -07004310M: Martin Schwidefsky <schwidefsky@de.ibm.com>
4311M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004313L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004314W: http://www.ibm.com/developerworks/linux/linux390/
4315S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004316F: arch/s390/
Heiko Carstens5238da42006-02-11 17:56:01 -08004317
4318S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004319M: Ursula Braun <ursula.braun@de.ibm.com>
4320M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08004321M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004322L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004323W: http://www.ibm.com/developerworks/linux/linux390/
4324S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004325F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08004326
Felix Beckfeed9b62009-03-26 15:24:23 +01004327S390 ZCRYPT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004328M: Felix Beck <felix.beck@de.ibm.com>
4329M: Ralph Wuerthner <ralph.wuerthner@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01004330M: linux390@de.ibm.com
4331L: linux-s390@vger.kernel.org
4332S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004333F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01004334
Heiko Carstens5238da42006-02-11 17:56:01 -08004335S390 ZFCP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004336M: Christof Schmitt <christof.schmitt@de.ibm.com>
4337M: Martin Peschke <mp3@de.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08004338M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004339L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004340W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004342F: Documentation/s390/zfcpdump.txt
4343F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344
Ursula Braundd96df22007-09-19 13:09:02 +02004345S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004346M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02004347M: linux390@de.ibm.com
4348L: linux-s390@vger.kernel.org
4349W: http://www.ibm.com/developerworks/linux/linux390/
4350S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004351F: drivers/s390/net/*iucv*
4352F: include/net/iucv/
4353F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02004354
Ben Dooks4dde7f72008-06-30 22:40:38 +01004355S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07004356M: Ben Dooks <ben-linux@fluff.org>
Ben Dooks4dde7f72008-06-30 22:40:38 +01004357L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Ben Dooks4dde7f72008-06-30 22:40:38 +01004358S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004359F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01004360
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004362M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004363L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004364T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365W: http://www.mihu.de/linux/saa7146
4366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004367F: drivers/media/common/saa7146*
4368F: drivers/media/video/*7146*
4369F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004372M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004374F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375
4376SCHEDULER
Joe Perches8b58be82009-07-29 15:04:30 -07004377M: Ingo Molnar <mingo@elte.hu>
4378M: Peter Zijlstra <peterz@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004380F: kernel/sched*
4381F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382
4383SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004384M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385L: linux-scsi@vger.kernel.org
4386W: http://www.kernel.dk
4387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004388F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389
4390SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004391M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392L: linux-scsi@vger.kernel.org
4393W: http://www.torque.net/sg
4394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004395F: drivers/scsi/sg.c
4396F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397
4398SCSI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004399M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004401T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
4402T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
4403T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004405F: drivers/scsi/
4406F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407
4408SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004409M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410L: linux-scsi@vger.kernel.org
4411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004412F: Documentation/scsi/st.txt
4413F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414
4415SCTP PROTOCOL
Joe Perches8b58be82009-07-29 15:04:30 -07004416M: Vlad Yasevich <vladislav.yasevich@hp.com>
4417M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07004418L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07004419W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01004420S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004421F: Documentation/networking/sctp.txt
4422F: include/linux/sctp.h
4423F: include/net/sctp/
4424F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425
4426SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004427M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004428S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004429F: Documentation/i2c/busses/scx200_acb
4430F: arch/x86/kernel/scx200_32.c
4431F: drivers/watchdog/scx200_wdt.c
4432F: drivers/i2c/busses/scx200*
4433F: drivers/mtd/maps/scx200_docflash.c
4434F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07004435
4436SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004437M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004439F: drivers/char/scx200_gpio.c
4440F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07004441
4442SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004443M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004445F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446
Sascha Sommer6a369132008-07-15 14:21:29 +02004447SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004448M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02004449L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
4450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004451F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02004452
Randy Dunlape7839f22008-10-12 16:11:45 -07004453SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004454M: Pierre Ossman <pierre@ossman.eu>
Pierre Ossmanb8e20062009-03-14 21:17:32 +01004455L: sdhci-devel@lists.ossman.eu
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004456S: Maintained
4457
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03004458SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07004459M: Anton Vorontsov <avorontsov@ru.mvista.com>
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03004460L: linuxppc-dev@ozlabs.org
4461L: sdhci-devel@lists.ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004463F: drivers/mmc/host/sdhci.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464
Ben Dooks0d1bb412009-06-14 13:52:37 +01004465SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004466M: Ben Dooks <ben-linux@fluff.org>
Ben Dooks0d1bb412009-06-14 13:52:37 +01004467L: sdhci-devel@lists.ossman.eu
4468S: Maintained
4469F: drivers/mmc/host/sdhci-s3c.c
4470
James Morris8711cca2008-12-04 03:19:45 +11004471SECURITY SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004472M: James Morris <jmorris@namei.org>
James Morris8711cca2008-12-04 03:19:45 +11004473L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perches54e58812009-04-07 21:08:10 -07004474T: git git://www.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11004475W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11004476S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07004477F: security/
James Morris8711cca2008-12-04 03:19:45 +11004478
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07004480M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481S: Supported
4482
4483SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07004484M: Stephen Smalley <sds@tycho.nsa.gov>
4485M: James Morris <jmorris@namei.org>
4486M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07004487L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04004488W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07004489T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004491F: include/linux/selinux*
4492F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493
Jiri Slabycef2cf02007-05-08 00:31:45 -07004494SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07004495M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07004496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004497F: drivers/misc/phantom.c
4498F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07004499
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004500SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004501M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004503T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004505F: drivers/ata/
4506F: include/linux/ata.h
4507F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004509SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004510M: Sathya Perla <sathyap@serverengines.com>
4511M: Subbu Seetharaman <subbus@serverengines.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07004512L: netdev@vger.kernel.org
4513W: http://www.serverengines.com
4514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004515F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004516
Ben Hutchings8ceee662008-04-27 12:55:59 +01004517SFC NETWORK DRIVER
4518P: Steve Hodgson
4519P: Ben Hutchings
Joe Perches8b58be82009-07-29 15:04:30 -07004520M: Robert Stonehouse <linux-net-drivers@solarflare.com>
Ben Hutchings8ceee662008-04-27 12:55:59 +01004521S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004522F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01004523
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004524SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004525M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004527F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004528
4529SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004530M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004531L: linux-ia64@vger.kernel.org
4532S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004533F: Documentation/ia64/serial.txt
4534F: drivers/serial/ioc?_serial.c
4535F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004536
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07004538M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539L: linux-visws-devel@lists.sf.net
4540W: http://linux-visws.sf.net
4541S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07004542F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543
Jack Steiner75312612008-08-15 00:40:42 -07004544SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004545M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07004546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004547F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07004548
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004549SHARP LH SUPPORT (LH7952X & LH7A40X)
Joe Perches8b58be82009-07-29 15:04:30 -07004550M: Marc Singer <elf@buici.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004551W: http://projects.buici.com/arm
4552L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
4553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004554F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
4555F: arch/arm/mach-lh7a40x/
4556F: drivers/serial/serial_lh7a40x.c
4557F: drivers/usb/gadget/lh7a40*
4558F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004559
4560SHPC HOTPLUG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004561M: Kristen Carlson Accardi <kristen.c.accardi@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004562L: linux-pci@vger.kernel.org
4563S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004564F: drivers/pci/hotplug/shpchp*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004565
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566SIMTEC EB110ATX (Chalice CATS)
4567P: Ben Dooks
Joe Perches8b58be82009-07-29 15:04:30 -07004568M: Vincent Sanders <support@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569W: http://www.simtec.co.uk/products/EB110ATX/
4570S: Supported
4571
4572SIMTEC EB2410ITX (BAST)
4573P: Ben Dooks
Joe Perches8b58be82009-07-29 15:04:30 -07004574M: Vincent Sanders <support@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575W: http://www.simtec.co.uk/products/EB2410ITX/
4576S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004577F: arch/arm/mach-s3c2410/
4578F: drivers/*/*s3c2410*
4579F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580
Francois Romieu92aab3c2005-07-30 13:11:18 +02004581SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004582M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02004583L: netdev@vger.kernel.org
4584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004585F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02004586
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004588M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07004590L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004592F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004594SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004595M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01004596L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004598F: Documentation/i2c/busses/i2c-sis96x
4599F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004600
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004602M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03004604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004605F: Documentation/fb/sisfb.txt
4606F: drivers/video/sis/
4607F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608
4609SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004610M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611W: http://www.winischhofer.at/linuxsisusbvga.shtml
4612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004613F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004615SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004616M: Stephen Hemminger <shemminger@linux-foundation.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004617L: netdev@vger.kernel.org
4618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004619F: drivers/net/skge.*
4620F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004621
Christoph Lameter415ad26d2007-07-26 10:40:56 -07004622SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07004623M: Christoph Lameter <cl@linux-foundation.org>
4624M: Pekka Enberg <penberg@cs.helsinki.fi>
4625M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07004626L: linux-mm@kvack.org
4627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004628F: include/linux/sl?b*.h
4629F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07004630
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631SMC91x ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004632M: Nicolas Pitre <nico@cam.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004634F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004636SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004637M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004638L: lm-sensors@lm-sensors.org
4639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004640F: Documentation/hwmon/smsc47b397
4641F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004642
Steve Glendinningfd9abb32008-11-05 00:35:37 +00004643SMSC911x ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004644M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00004645L: netdev@vger.kernel.org
4646S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004647F: include/linux/smsc911x.h
4648F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00004649
Steve Glendinning2cb37722008-12-11 20:54:30 -08004650SMSC9420 PCI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004651M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2cb37722008-12-11 20:54:30 -08004652L: netdev@vger.kernel.org
4653S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004654F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08004655
Ben Nizetteb54f2862008-03-13 22:27:30 +11004656SMX UIO Interface
Joe Perches8b58be82009-07-29 15:04:30 -07004657M: Ben Nizette <bn@niasdigital.com>
Ben Nizetteb54f2862008-03-13 22:27:30 +11004658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004659F: drivers/uio/uio_smx.c
Ben Nizetteb54f2862008-03-13 22:27:30 +11004660
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004661SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07004662M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004663L: linux-altix@sgi.com
4664L: linux-ia64@vger.kernel.org
4665W: http://www.sgi.com/altix
4666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004667F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004668
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03004669SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004670M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004671L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004672T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004674F: include/media/v4l2*
4675F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03004676
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004677SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004678M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004680F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004681
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004683M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08004685S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004686F: drivers/md/
4687F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004690M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004691L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004693F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694
Michael Buesch61e115a2007-09-18 15:12:50 -04004695SONICS SILICON BACKPLANE DRIVER (SSB)
Joe Perches8b58be82009-07-29 15:04:30 -07004696M: Michael Buesch <mb@bu3sch.de>
Michael Buesch61e115a2007-09-18 15:12:50 -04004697L: netdev@vger.kernel.org
4698S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004699F: drivers/ssb/
4700F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04004701
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004703M: Mattia Dongili <malattia@linux.it>
Mattia Dongili5b181672007-03-12 21:43:57 +01004704L: linux-acpi@vger.kernel.org
4705W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004707F: Documentation/laptops/sony-laptop.txt
4708F: drivers/char/sonypi.c
4709F: drivers/platform/x86/sony-laptop.c
4710F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711
Alex Dubovbaf85322008-02-09 10:20:54 -08004712SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004713M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08004714W: http://tifmxx.berlios.de/
4715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004716F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08004717
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07004719M: Jaroslav Kysela <perex@perex.cz>
4720M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07004721L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07004722W: http://www.alsa-project.org/
4723T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
4724T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07004726F: Documentation/sound/
4727F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07004728F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729
Mark Brownbd903bd2008-11-19 19:16:05 +00004730SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Joe Perches8b58be82009-07-29 15:04:30 -07004731M: Liam Girdwood <lrg@slimlogic.co.uk>
4732M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownbb74a6e2009-05-13 17:23:54 +01004733T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07004734L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01004735W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02004736S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004737F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01004738F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02004739
Sam Ravnborg473321f2009-01-04 15:47:49 -08004740SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07004741M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742L: sparclinux@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004743T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
4744T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004746F: arch/sparc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747
4748SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004749M: Roger Wolff <R.E.Wolff@BitWizard.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004751F: Documentation/serial/specialix.txt
4752F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004754SPI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004755M: David Brownell <dbrownell@users.sourceforge.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004756L: spi-devel-general@lists.sourceforge.net
4757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004758F: Documentation/spi/
4759F: drivers/spi/
4760F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004761
Jim Lewis2752e402006-09-29 02:01:19 -07004762SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07004763M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
4764M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07004765L: netdev@vger.kernel.org
4766S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004767F: Documentation/networking/spider_net.txt
4768F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07004769
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004770SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004771M: Jeremy Kerr <jk@ozlabs.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004772L: linuxppc-dev@ozlabs.org
4773L: cbe-oss-dev@ozlabs.org
4774W: http://www.ibm.com/developerworks/power/cell/
4775S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004776F: Documentation/filesystems/spufs.txt
4777F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004778
Phillip Lougherfc555842009-01-05 08:46:29 +00004779SQUASHFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004780M: Phillip Lougher <phillip@lougher.demon.co.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00004781L: squashfs-devel@lists.sourceforge.net (subscribers-only)
4782W: http://squashfs.org.uk
4783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004784F: Documentation/filesystems/squashfs.txt
4785F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00004786
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07004788M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004790F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791
Linus Torvalds26e9a392008-10-17 09:50:12 -07004792STABLE BRANCH
Joe Perches8b58be82009-07-29 15:04:30 -07004793M: Greg Kroah-Hartman <greg@kroah.com>
4794M: Chris Wright <chrisw@sous-sol.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004795L: stable@kernel.org
4796S: Maintained
4797
Linus Torvalds26e9a392008-10-17 09:50:12 -07004798STAGING SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004799M: Greg Kroah-Hartman <gregkh@suse.de>
Linus Torvalds26e9a392008-10-17 09:50:12 -07004800T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07004801L: devel@driverdev.osuosl.org
Linus Torvalds26e9a392008-10-17 09:50:12 -07004802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004803F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07004804
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004806M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07004807S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004808F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809
4810STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004811S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004812F: drivers/net/wireless/strip.c
4813F: include/linux/if_strip.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814
4815STRADIS MPEG-2 DECODER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004816M: Nathan Laredo <laredo@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817W: http://www.stradis.com/
4818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004819F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004821SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07004822M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004823W: http://sammy.net/sun3/
4824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004825F: arch/m68k/kernel/*sun3*
4826F: arch/m68k/sun3*/
4827F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004828
Paul Mundt2cbb12a2007-11-19 13:08:37 +09004829SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07004830M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09004831L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832W: http://www.linux-sh.org
Joe Perches54e58812009-04-07 21:08:10 -07004833T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09004834S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09004835F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07004836F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09004837F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004839SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07004840M: Len Brown <len.brown@intel.com>
4841M: Pavel Machek <pavel@ucw.cz>
4842M: "Rafael J. Wysocki" <rjw@sisk.pl>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004843L: linux-pm@lists.linux-foundation.org
4844S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004845F: Documentation/power/
4846F: arch/x86/kernel/acpi/
4847F: drivers/base/power/
4848F: kernel/power/
4849F: include/linux/suspend.h
4850F: include/linux/freezer.h
4851F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852
4853SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07004854M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855L: linux-video@atrey.karlin.mff.cuni.cz
4856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004857F: Documentation/svga.txt
4858F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859
4860SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004861M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004863F: Documentation/filesystems/sysv-fs.txt
4864F: fs/sysv/
4865F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866
Alan Cox4e688522008-04-30 00:52:11 -07004867TASKSTATS STATISTICS INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07004868M: Balbir Singh <balbir@linux.vnet.ibm.com>
Alan Cox4e688522008-04-30 00:52:11 -07004869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004870F: Documentation/accounting/taskstats*
4871F: include/linux/taskstats*
4872F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07004873
Stephen Hemminger781b456a2006-07-10 20:25:29 -07004874TC CLASSIFIER
Joe Perches8b58be82009-07-29 15:04:30 -07004875M: Jamal Hadi Salim <hadi@cyberus.ca>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07004876L: netdev@vger.kernel.org
4877S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004878F: include/linux/pkt_cls.h
4879F: include/net/pkt_cls.h
4880F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07004881
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07004882TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07004883M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
4884M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07004885W: http://tcp-lp-mod.sourceforge.net/
4886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004887F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07004888
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07004889TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004890M: Alexander Indenbaum <baum@tehutinetworks.net>
4891M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07004892L: netdev@vger.kernel.org
4893S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004894F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07004895
Alan Cox4e688522008-04-30 00:52:11 -07004896Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07004897M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07004898S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004899F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07004900
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004901TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07004902M: Chris Zankel <chris@zankel.net>
Alan Cox4e688522008-04-30 00:52:11 -07004903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004904F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07004905
4906THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004907M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07004908L: ibm-acpi-devel@lists.sourceforge.net
4909W: http://ibm-acpi.sourceforge.net
4910W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07004911T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07004912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004913F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07004914
Alex Dubov4020f2d2006-10-04 02:15:37 -07004915TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004916M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004918F: drivers/misc/tifm*
4919F: drivers/mmc/host/tifm_sd.c
4920F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07004921
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03004922TI TWL4030 SERIES SOC CODEC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004923M: Peter Ujfalusi <peter.ujfalusi@nokia.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03004924L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4925S: Maintained
4926F: sound/soc/codecs/twl4030*
4927
Per Lidene86eaa32006-01-12 16:45:18 +01004928TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004929M: Per Liden <per.liden@ericsson.com>
4930M: Jon Maloy <jon.maloy@ericsson.com>
4931M: Allan Stephens <allan.stephens@windriver.com>
Per Lidene86eaa32006-01-12 16:45:18 +01004932L: tipc-discussion@lists.sourceforge.net
4933W: http://tipc.sourceforge.net/
4934W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07004935T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01004936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004937F: include/linux/tipc*.h
4938F: include/net/tipc/
4939F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01004940
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004942M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08004943L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944W: http://sourceforge.net/projects/tlan/
4945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004946F: Documentation/networking/tlan.txt
4947F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948
Kentaro Takedad74db3b2009-02-05 17:18:18 +09004949TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07004950M: Kentaro Takeda <takedakn@nttdata.co.jp>
4951M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Kentaro Takedad74db3b2009-02-05 17:18:18 +09004952L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
4953L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
4954L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
4955W: http://tomoyo.sourceforge.jp/
4956T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/
4957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004958F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09004959
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960TOSHIBA ACPI EXTRAS DRIVER
Johannes Berg15065532009-03-30 12:02:35 +02004961S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004962F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963
4964TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004965M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966L: tlinux-users@tce.toshiba-dme.co.jp
4967W: http://www.buzzard.org.uk/toshiba/
4968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004969F: drivers/char/toshiba.c
4970F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971
Pierre Ossmand719f902009-03-24 21:06:09 +01004972TMIO MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004973M: Ian Molton <ian@mnementh.co.uk>
Pierre Ossmand719f902009-03-24 21:06:09 +01004974S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004975F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01004976
Hugh Dickins98f32602009-05-21 20:33:58 +01004977TMPFS (SHMEM FILESYSTEM)
Joe Perches8b58be82009-07-29 15:04:30 -07004978M: Hugh Dickins <hugh.dickins@tiscali.co.uk>
Hugh Dickins98f32602009-05-21 20:33:58 +01004979L: linux-mm@kvack.org
4980S: Maintained
4981F: include/linux/shmem_fs.h
4982F: mm/shmem.c
4983
Alan Cox4e688522008-04-30 00:52:11 -07004984TPM DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004985M: Debora Velarde <debora@linux.vnet.ibm.com>
4986M: Rajiv Andrade <srajiv@linux.vnet.ibm.com>
Alan Cox4e688522008-04-30 00:52:11 -07004987W: http://tpmdd.sourceforge.net
Joe Perches8b58be82009-07-29 15:04:30 -07004988M: Marcel Selhorst <m.selhorst@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08004989W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07004990L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07004991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004992F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07004993
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07004995M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07004996T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997S: Maintained
4998
Alan Cox4e688522008-04-30 00:52:11 -07004999TTY LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005000M: Alan Cox <alan@lxorguk.ukuu.org.uk>
Alan Cox4e688522008-04-30 00:52:11 -07005001S: Maintained
Alan Coxe960bf72009-06-11 14:04:57 +01005002T: stgit http://zeniv.linux.org.uk/~alan/ttydev/
Alan Coxe3288772009-07-07 16:39:54 +01005003F: drivers/char/tty_*
5004F: drivers/serial/serial_core.c
5005F: include/linux/serial_core.h
5006F: include/linux/serial.h
5007F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07005008
Grant Grundler740db6d2008-02-17 11:53:49 -07005009TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005010M: Grant Grundler <grundler@parisc-linux.org>
5011M: Kyle McMartin <kyle@mcmartin.ca>
Grant Grundler740db6d2008-02-17 11:53:49 -07005012L: netdev@vger.kernel.org
5013S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005014F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015
5016TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07005017M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018L: vtun@office.satix.net
5019W: http://vtun.sourceforge.net/tun
5020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005021F: Documentation/networking/tuntap.txt
5022F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005024TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005025M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005027F: drivers/tc/
5028F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005029
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005031M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032L: linux-scsi@vger.kernel.org
5033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005034F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005036UBI FILE SYSTEM (UBIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07005037M: Artem Bityutskiy <dedekind@infradead.org>
5038M: Adrian Hunter <adrian.hunter@nokia.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005039L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005040T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005041W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005043F: Documentation/filesystems/ubifs.txt
5044F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005045
Alan Coxcc2020e2008-05-19 14:21:51 +01005046UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07005047M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01005048W: http://www.uclinux.org/
5049L: uclinux-dev@uclinux.org (subscribers-only)
5050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005051F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005052
Robert P. J. Day14fadca2009-04-21 12:24:47 -07005053UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07005054M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01005055W: http://uclinux-h8.sourceforge.jp/
5056S: Supported
5057
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005059M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060W: http://linux-udf.sourceforge.net
5061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005062F: Documentation/filesystems/udf.txt
5063F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064
Alan Coxcc2020e2008-05-19 14:21:51 +01005065UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005066M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01005067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005068F: Documentation/filesystems/ufs.txt
5069F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005070
David Vrabel18332a82008-09-17 16:34:44 +01005071ULTRA-WIDEBAND (UWB) SUBSYSTEM:
Joe Perches8b58be82009-07-29 15:04:30 -07005072M: David Vrabel <david.vrabel@csr.com>
David Vrabel18332a82008-09-17 16:34:44 +01005073L: linux-usb@vger.kernel.org
5074S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005075F: drivers/uwb/*
5076F: include/linux/uwb.h
5077F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005078
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005080M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005081W: http://www.kernel.dk
5082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005083F: Documentation/cdrom/
5084F: drivers/cdrom/cdrom.c
5085F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005087UNSORTED BLOCK IMAGES (UBI)
Joe Perches8b58be82009-07-29 15:04:30 -07005088M: Artem Bityutskiy <dedekind@infradead.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005089W: http://www.linux-mtd.infradead.org/
5090L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005091T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005092S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005093F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07005094F: include/linux/mtd/ubi.h
5095F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005096
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097USB ACM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005098M: Oliver Neukum <oliver@neukum.name>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005099L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005101F: Documentation/usb/acm.txt
5102F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103
5104USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07005105M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005106L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005108F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110USB CDC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005111M: Greg Kroah-Hartman <greg@kroah.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005112L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113S: Maintained
5114W: http://www.kroah.com/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005115F: drivers/net/usb/cdc_*.c
5116F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005118USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005119M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005120L: linux-usb@vger.kernel.org
5121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005122F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005123
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005124USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005125M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02005126L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005127W: http://www.linux-usb.org/usbnet
5128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005129F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005130
Alan Coxcc2020e2008-05-19 14:21:51 +01005131USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005132M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01005133L: rio500-users@lists.sourceforge.net
5134W: http://rio500.sourceforge.net
5135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005136F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005137
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138USB EHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005139M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005140L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005141S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005142F: Documentation/usb/ehci.txt
5143F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144
Luca Risolia7ce08c92006-01-11 02:06:59 +00005145USB ET61X[12]51 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005146M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005147L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005148L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005149T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00005150W: http://www.linux-projects.org
5151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005152F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00005153
David Brownell69ae9e32006-11-14 02:03:31 -08005154USB GADGET/PERIPHERAL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005155M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005156L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005157W: http://www.linux-usb.org/gadget
5158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005159F: drivers/usb/gadget/
5160F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08005161
Jiri Kosina2dea64b2007-07-11 12:12:11 +02005162USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07005163M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005164L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005165T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005167F: Documentation/usb/hiddev.txt
5168F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169
Olav Kongas959eea22005-11-03 17:38:14 +02005170USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005171M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005172L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02005173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005174F: drivers/usb/host/isp116x*
5175F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02005176
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177USB KAWASAKI LSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005178M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005179L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005181F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182
5183USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005184M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005185L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08005186L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187S: Maintained
5188W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005189F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190
5191USB OHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005192M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005193L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005194S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005195F: Documentation/usb/ohci.txt
5196F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197
Matthias Urlichsba460e42005-07-14 00:33:47 -07005198USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005199M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005200L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07005201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005202F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07005203
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204USB OV511 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005205M: Mark McClelland <mmcclell@bigfoot.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005206L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207W: http://alpha.dyndns.org/ov511/
5208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005209F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210
5211USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005212M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005213L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005214L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215W: http://pegasus2.sourceforge.net/
5216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005217F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005219USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07005220M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005221L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005222S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005223F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224
5225USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005226M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005227L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005228L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229W: http://pegasus2.sourceforge.net/
5230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005231F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232
5233USB SE401 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005234M: Jeroen Vreeken <pe1rxq@amsat.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005235L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236W: http://www.chello.nl/~j.vreeken/se401/
5237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005238F: Documentation/video4linux/se401.txt
5239F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005240
Alan Cox4e688522008-04-30 00:52:11 -07005241USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005242M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005243L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005244S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005245F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07005246
5247USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005248M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005249L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005250S: Maintained
5251W: http://geocities.com/i0xox0i
5252W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07005253F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07005254
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005256M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257W: http://www.reiner-sct.de/support/treiber_cyberjack.php
5258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005259F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260
5261USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005262M: Peter Berger <pberger@brimson.com>
5263M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005264L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005266F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267
5268USB SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005269M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005270L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005272F: Documentation/usb/usb-serial.txt
5273F: drivers/usb/serial/generic.c
5274F: drivers/usb/serial/usb-serial.c
5275F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005278M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005279L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005281F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282
5283USB SERIAL KEYSPAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005284M: Greg Kroah-Hartman <greg@kroah.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005285L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286W: http://www.kroah.com/linux/
5287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005288F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289
5290USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005291M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005292L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005293W: http://www.connecttech.com
5294S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005295F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005297USB SMSC95XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005298M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005299L: netdev@vger.kernel.org
5300S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005301F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005302
Luca Risoliaf423b9a2007-03-26 16:12:04 -03005303USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005304M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005305L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005306L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005307T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308W: http://www.linux-projects.org
5309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005310F: Documentation/video4linux/sn9c102.txt
5311F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312
5313USB SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005314M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005315L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08005317T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005319F: Documentation/usb/
5320F: drivers/net/usb/
5321F: drivers/usb/
5322F: include/linux/usb.h
5323F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324
5325USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005326M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005327L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005329F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330
David Brownell69ae9e32006-11-14 02:03:31 -08005331USB "USBNET" DRIVER FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07005332M: David Brownell <dbrownell@users.sourceforge.net>
Peter Korsgaard043600a2007-06-27 21:18:18 +02005333L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005334W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005336F: drivers/net/usb/usbnet.c
5337F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338
Laurent Pinchartc0efd232008-06-30 15:04:50 -03005339USB VIDEO CLASS
Joe Perches8b58be82009-07-29 15:04:30 -07005340M: Laurent Pinchart <laurent.pinchart@skynet.be>
Jiri Slabya67534a2008-12-10 09:09:27 -03005341L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005342L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005343T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchartc0efd232008-06-30 15:04:50 -03005344W: http://linux-uvc.berlios.de
5345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005346F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03005347
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348USB W996[87]CF DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005349M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005350L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005351L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005352T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353W: http://www.linux-projects.org
5354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005355F: Documentation/video4linux/w9968cf.txt
5356F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02005358USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07005359M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02005360L: linux-wireless@vger.kernel.org
5361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005362F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02005363
Sarah Sharpeb6bab12009-04-29 19:07:13 -07005364USB XHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005365M: Sarah Sharp <sarah.a.sharp@intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07005366L: linux-usb@vger.kernel.org
5367S: Supported
5368
Luca Risolia60f78052006-02-06 16:29:35 +00005369USB ZC0301 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005370M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005371L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005372L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005373T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00005374W: http://www.linux-projects.org
5375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005376F: Documentation/video4linux/zc0301.txt
5377F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00005378
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379USB ZD1201 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005380M: Jeroen Vreeken <pe1rxq@amsat.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005381L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382W: http://linux-lc100020.sourceforge.net
5383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005384F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005386USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005387M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005388L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005389L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005390T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005391W: http://royale.zerezo.com/zr364xx/
5392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005393F: Documentation/video4linux/zr364xx.txt
5394F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005395
Randy Dunlape7839f22008-10-12 16:11:45 -07005396USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07005397M: Jeff Dike <jdike@addtoit.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398L: user-mode-linux-devel@lists.sourceforge.net
5399L: user-mode-linux-user@lists.sourceforge.net
5400W: http://user-mode-linux.sourceforge.net
5401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005402F: Documentation/uml/
5403F: arch/um/
5404F: fs/hostfs/
5405F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005406
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01005407USERSPACE I/O (UIO)
Joe Perches8b58be82009-07-29 15:04:30 -07005408M: "Hans J. Koch" <hjk@linutronix.de>
5409M: Greg Kroah-Hartman <gregkh@suse.de>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01005410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005411F: Documentation/DocBook/uio-howto.tmpl
5412F: drivers/uio/
5413F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01005414
Karel Zakf899b0a2008-05-23 13:04:21 -07005415UTIL-LINUX-NG PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07005416M: Karel Zak <kzak@redhat.com>
Karel Zakf899b0a2008-05-23 13:04:21 -07005417L: util-linux-ng@vger.kernel.org
5418W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07005419T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07005420S: Maintained
5421
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07005422UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005423M: Michal Januszewski <spock@gentoo.org>
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07005424L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
5425W: http://dev.gentoo.org/~spock/projects/uvesafb/
5426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005427F: Documentation/fb/uvesafb.txt
5428F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07005429
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005430VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005431M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005433F: Documentation/filesystems/vfat.txt
5434F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005435
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005437M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005439F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440
Jean Delvare32c0a522005-09-22 21:47:58 +02005441VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005442M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01005443L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02005444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005445F: Documentation/i2c/busses/i2c-viapro
5446F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02005447
Harald Weltef0bf7f62009-06-17 20:22:39 +02005448VIA SD/MMC CARD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005449M: Joseph Chan <JosephChan@via.com.tw>
5450M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02005451S: Maintained
5452F: drivers/mmc/host/via-sdmmc.c
5453
Joseph Chan69e4a7c2008-10-15 22:03:31 -07005454VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005455M: Joseph Chan <JosephChan@via.com.tw>
5456M: Scott Fang <ScottFang@viatech.com.cn>
Joseph Chan69e4a7c2008-10-15 22:03:31 -07005457L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
5458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005459F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07005460
Francois Romieu01f20732007-01-26 00:57:17 -08005461VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005462M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08005463L: netdev@vger.kernel.org
5464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005465F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466
Patrick McHardybe7f8272007-10-23 20:26:36 -07005467VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07005468M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07005469L: netdev@vger.kernel.org
5470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005471F: drivers/net/macvlan.c
5472F: include/linux/if_*vlan.h
5473F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07005474
Florian Fainelli55e331c2009-06-16 15:33:53 -07005475VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07005476M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli55e331c2009-06-16 15:33:53 -07005477L: openwrt-devel@lists.openwrt.org
5478S: Maintained
5479F: drivers/vlynq/vlynq.c
5480F: include/linux/vlynq.h
5481
Liam Girdwoode53e86c2008-07-10 15:48:00 +01005482VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07005483M: Liam Girdwood <lrg@slimlogic.co.uk>
5484M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01005485W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00005486W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07005487T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01005488S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005489F: drivers/regulator/
5490F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01005491
Juerg Haefligerab413192006-09-24 20:54:04 +02005492VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005493M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02005494L: lm-sensors@lm-sensors.org
5495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005496F: Documentation/hwmon/vt1211
5497F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02005498
Roger Lucas1de9e372005-11-26 20:20:05 +01005499VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005500M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01005501L: lm-sensors@lm-sensors.org
5502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005503F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01005504
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505W1 DALLAS'S 1-WIRE BUS
Joe Perches8b58be82009-07-29 15:04:30 -07005506M: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005507S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005508F: Documentation/w1/
5509F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510
Charles Spirakis13927072006-07-05 18:05:15 +02005511W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005512M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02005513L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04005514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005515F: Documentation/hwmon/w83791d
5516F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02005517
Rudolf Marek61db0112006-12-12 18:18:30 +01005518W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005519M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01005520L: lm-sensors@lm-sensors.org
5521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005522F: Documentation/hwmon/w83793
5523F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01005524
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005526M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005528F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529
Wim Van Sebroeck35277612006-01-15 21:21:14 +01005530WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005531M: Wim Van Sebroeck <wim@iguana.be>
Joe Perches54e58812009-04-07 21:08:10 -07005532T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01005533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005534F: Documentation/watchdog/
5535F: drivers/watchdog/
5536F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01005537
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
Joe Perches8b58be82009-07-29 15:04:30 -07005539M: Jean Tourrilhes <jt@hpl.hp.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005540L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005541W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
5542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005543F: Documentation/networking/wavelan.txt
5544F: drivers/net/wireless/wavelan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545
5546WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005547M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548L: linux-scsi@vger.kernel.org
5549S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005550F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005552WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07005553M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005554M: linux-wimax@intel.com
5555L: wimax@linuxwimax.org
5556S: Supported
5557W: http://linuxwimax.org
5558
David Vrabel18332a82008-09-17 16:34:44 +01005559WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005560M: David Vrabel <david.vrabel@csr.com>
David Vrabel18332a82008-09-17 16:34:44 +01005561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005562F: include/linux/wlp.h
5563F: drivers/uwb/wlp/
David Vrabel18332a82008-09-17 16:34:44 +01005564
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05005565WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005566M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05005567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005568F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05005569
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005571M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07005572L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03005573W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07005574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005575F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005576
Mark Brownfebf1df2008-04-02 00:51:09 -04005577WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005578M: Mark Brown <broonie@opensource.wolfsonmicro.com>
5579M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04005580L: linux-input@vger.kernel.org
5581T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
5582W: http://opensource.wolfsonmicro.com/node/7
5583S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005584F: drivers/input/touchscreen/*wm97*
5585F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04005586
Linus Torvalds1da177e2005-04-16 15:20:36 -07005587X.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005588M: Henner Eisen <eis@baty.hanse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589L: linux-x25@vger.kernel.org
5590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005591F: Documentation/networking/x25*
5592F: include/net/x25*
5593F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005595X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07005596M: Thomas Gleixner <tglx@linutronix.de>
5597M: Ingo Molnar <mingo@redhat.com>
5598M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08005599M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005600T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005602F: Documentation/x86/
5603F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005604
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02005605XEN HYPERVISOR INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07005606M: Jeremy Fitzhardinge <jeremy@xensource.com>
5607M: Chris Wright <chrisw@sous-sol.org>
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02005608L: virtualization@lists.osdl.org
5609L: xen-devel@lists.xensource.com
5610S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005611F: arch/x86/xen/
5612F: drivers/*/xen-*front.c
5613F: drivers/xen/
5614F: arch/x86/include/asm/xen/
5615F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02005616
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617XFS FILESYSTEM
5618P: Silicon Graphics Inc
Joe Perches8b58be82009-07-29 15:04:30 -07005619M: Felix Blyakher <felixb@sgi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10005621L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005622W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07005623T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005624S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005625F: Documentation/filesystems/xfs.txt
5626F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02005628XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005629M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02005630W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02005631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005632F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02005633
Peter Korsgaard238b8722006-12-06 20:35:17 -08005634XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005635M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08005636L: linux-serial@vger.kernel.org
5637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005638F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08005639
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07005641M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642L: linux-hams@vger.kernel.org
5643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005644F: drivers/net/hamradio/yam*
5645F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646
Henkaf64a5e2005-10-12 15:02:56 +02005647YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005648M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02005649L: usbb2k-api-dev@nongnu.org
5650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005651F: Documentation/input/yealink.txt
5652F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02005653
Linus Torvalds1da177e2005-04-16 15:20:36 -07005654Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07005655M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005656W: http://yaina.de/jreuter/
5657W: http://www.qsl.net/dl1bke/
5658L: linux-hams@vger.kernel.org
5659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005660F: Documentation/networking/z8530drv.txt
5661F: drivers/net/hamradio/*scc.c
5662F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663
Daniel Drake7c0c3af2006-07-16 13:55:17 +01005664ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005665M: Daniel Drake <dsd@gentoo.org>
5666M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01005667W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07005668L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01005669L: zd1211-devs@lists.sourceforge.net (subscribers-only)
5670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005671F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01005672
Linus Torvalds1da177e2005-04-16 15:20:36 -07005673ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03005675L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03005677T: Mercurial http://linuxtv.org/hg/v4l-dvb
5678S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005679F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07005681ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005682M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07005683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005684F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07005685
Linus Torvalds1da177e2005-04-16 15:20:36 -07005686THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07005687M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07005688L: linux-kernel@vger.kernel.org
Joe Perchescfe81f72009-04-07 21:09:58 -07005689T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07005691F: *
5692F: */