Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | |
| 2 | List of maintainers and how to submit kernel changes |
| 3 | |
| 4 | Please try to follow the guidelines below. This will make things |
| 5 | easier on the maintainers. Not all of these guidelines matter for every |
| 6 | trivial patch so apply some common sense. |
| 7 | |
| 8 | 1. Always _test_ your changes, however small, on at least 4 or |
| 9 | 5 people, preferably many more. |
| 10 | |
| 11 | 2. 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 | |
| 19 | 3. 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 | |
| 23 | 4. When you are happy with a change make it generally available for |
| 24 | testing and await feedback. |
| 25 | |
| 26 | 5. 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 Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 33 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Joe Perches | f70f873 | 2009-06-16 15:34:08 -0700 | [diff] [blame] | 39 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | 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 Cox | c9ee133 | 2006-05-20 15:00:12 -0700 | [diff] [blame] | 52 | PLEASE remember that submissions must be made under the terms |
Randy Dunlap | 4500371 | 2007-08-30 23:56:37 -0700 | [diff] [blame] | 53 | 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 Cox | c9ee133 | 2006-05-20 15:00:12 -0700 | [diff] [blame] | 57 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | 6. 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 Cox | c9ee133 | 2006-05-20 15:00:12 -0700 | [diff] [blame] | 62 | 7. 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 | |
| 66 | 8. Happy hacking. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 68 | ----------------------------------- |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
| 70 | Maintainers List (try to look for most precise areas first) |
| 71 | |
| 72 | Note: For the hard of thinking, this list is meant to remain in alphabetical |
| 73 | order. If you could add yourselves to it in alphabetical order that would be |
| 74 | so much easier [Ed] |
| 75 | |
| 76 | P: Person |
| 77 | M: Mail patches to |
| 78 | L: Mailing list that is relevant to this area |
| 79 | W: Web-page with status/info |
Alan Cox | e960bf7 | 2009-06-11 14:04:57 +0100 | [diff] [blame] | 80 | T: SCM tree type and location. Type is one of: git, hg, quilt, stgit. |
Randy Dunlap | 4501a46 | 2008-10-13 09:24:58 -0700 | [diff] [blame] | 81 | S: Status, one of the following: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
| 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 Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 93 | F: 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. |
| 99 | X: 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | 3C505 NETWORK DRIVER |
| 107 | P: Philip Blundell |
| 108 | M: philb@gnu.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 109 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 111 | F: drivers/net/3c505* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
Steffen Klassert | a6d8991 | 2007-08-10 14:05:27 -0700 | [diff] [blame] | 113 | 3C59X NETWORK DRIVER |
| 114 | P: Steffen Klassert |
| 115 | M: klassert@mathematik.tu-chemnitz.de |
| 116 | L: netdev@vger.kernel.org |
| 117 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 118 | F: Documentation/networking/vortex.txt |
| 119 | F: drivers/net/3c59x.c |
Steffen Klassert | a6d8991 | 2007-08-10 14:05:27 -0700 | [diff] [blame] | 120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | 3CR990 NETWORK DRIVER |
| 122 | P: David Dillow |
| 123 | M: dave@thedillows.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 124 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 126 | F: drivers/net/typhoon* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 128 | 3W-9XXX SATA-RAID CONTROLLER DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | P: Adam Radford |
| 130 | M: linuxraid@amcc.com |
| 131 | L: linux-scsi@vger.kernel.org |
| 132 | W: http://www.amcc.com |
| 133 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 134 | F: drivers/scsi/3w-9xxx* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 136 | 3W-XXXX ATA-RAID CONTROLLER DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | P: Adam Radford |
| 138 | M: linuxraid@amcc.com |
| 139 | L: linux-scsi@vger.kernel.org |
| 140 | W: http://www.amcc.com |
| 141 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 142 | F: drivers/scsi/3w-xxxx* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | |
| 144 | 53C700 AND 53C700-66 SCSI DRIVER |
| 145 | P: James E.J. Bottomley |
| 146 | M: James.Bottomley@HansenPartnership.com |
| 147 | L: linux-scsi@vger.kernel.org |
| 148 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 149 | F: drivers/scsi/53c700* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | |
| 151 | 6PACK NETWORK DRIVER FOR AX.25 |
| 152 | P: Andreas Koensgen |
| 153 | M: ajk@iehk.rwth-aachen.de |
| 154 | L: linux-hams@vger.kernel.org |
| 155 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 156 | F: drivers/net/hamradio/6pack.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
| 159 | P: Francois Romieu |
| 160 | M: romieu@fr.zoreil.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 161 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 163 | F: drivers/net/r8169.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
| 165 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER |
Joe Perches | dc98792 | 2009-06-16 17:01:52 +0100 | [diff] [blame] | 166 | P: Alan Cox |
| 167 | M: alan@lxorguk.ukuu.org.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | L: linux-serial@vger.kernel.org |
| 169 | W: http://serial.sourceforge.net |
Alan Cox | 4b6ae89 | 2009-06-11 12:45:08 +0100 | [diff] [blame] | 170 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 171 | F: drivers/serial/8250* |
| 172 | F: include/linux/serial_8250.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
| 174 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] |
| 175 | P: Paul Gortmaker |
| 176 | M: p_gortmaker@yahoo.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 177 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 179 | F: drivers/net/*8390* |
| 180 | F: drivers/net/ax88796.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
Eric Van Hensbergen | 67543e5 | 2006-03-25 03:07:29 -0800 | [diff] [blame] | 182 | 9P FILE SYSTEM |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 183 | P: Eric Van Hensbergen |
| 184 | M: ericvh@gmail.com |
| 185 | P: Ron Minnich |
Eric Van Hensbergen | 27a2a5f | 2007-07-23 13:06:13 -0500 | [diff] [blame] | 186 | M: rminnich@sandia.gov |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 187 | P: Latchesar Ionkov |
| 188 | M: lucho@ionkov.net |
| 189 | L: v9fs-developer@lists.sourceforge.net |
Eric Van Hensbergen | 27a2a5f | 2007-07-23 13:06:13 -0500 | [diff] [blame] | 190 | W: http://swik.net/v9fs |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 191 | T: git git://git.kernel.org/pub/scm/linux/kernel/ericvh/v9fs.git |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 192 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 193 | F: Documentation/filesystems/9p.txt |
| 194 | F: fs/9p/ |
Eric Van Hensbergen | 67543e5 | 2006-03-25 03:07:29 -0800 | [diff] [blame] | 195 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | A2232 SERIAL BOARD DRIVER |
| 197 | P: Enver Haase |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | M: A2232@gmx.net |
| 199 | L: linux-m68k@lists.linux-m68k.org |
| 200 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 201 | F: drivers/char/ser_a2232* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 203 | AACRAID SCSI RAID DRIVER |
| 204 | P: Adaptec OEM Raid Solutions |
| 205 | M: aacraid@adaptec.com |
| 206 | L: linux-scsi@vger.kernel.org |
| 207 | W: http://www.adaptec.com/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 209 | F: Documentation/scsi/aacraid.txt |
| 210 | F: drivers/scsi/aacraid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 212 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
Hans de Goede | f2b84bb | 2006-06-04 20:22:24 +0200 | [diff] [blame] | 213 | P: Hans de Goede |
| 214 | M: j.w.r.degoede@hhs.nl |
| 215 | L: lm-sensors@lm-sensors.org |
| 216 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 217 | F: drivers/hwmon/abituguru.c |
Hans de Goede | f2b84bb | 2006-06-04 20:22:24 +0200 | [diff] [blame] | 218 | |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 219 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
| 220 | P: Alistair John Strachan |
| 221 | M: alistair@devzero.co.uk |
| 222 | L: lm-sensors@lm-sensors.org |
| 223 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 224 | F: drivers/hwmon/abituguru3.c |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 225 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | ACENIC DRIVER |
| 227 | P: Jes Sorensen |
| 228 | M: jes@trained-monkey.org |
| 229 | L: linux-acenic@sunsite.dk |
| 230 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 231 | F: drivers/net/acenic* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 233 | ACER WMI LAPTOP EXTRAS |
| 234 | P: Carlos Corbacho |
| 235 | M: carlos@strangeworlds.co.uk |
| 236 | L: aceracpi@googlegroups.com (subscribers-only) |
| 237 | W: http://code.google.com/p/aceracpi |
| 238 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 239 | F: drivers/platform/x86/acer-wmi.c |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 240 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | ACPI |
Andi Kleen | 54cd314 | 2008-09-04 13:30:07 +0200 | [diff] [blame] | 242 | P: Len Brown |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 243 | M: lenb@kernel.org |
Len Brown | 6968e50 | 2005-12-30 00:32:49 -0500 | [diff] [blame] | 244 | L: linux-acpi@vger.kernel.org |
Len Brown | 38e09d8 | 2007-10-25 17:55:59 -0400 | [diff] [blame] | 245 | W: http://www.lesswatts.org/projects/acpi/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 246 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 247 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 248 | F: drivers/acpi/ |
| 249 | F: drivers/pnp/pnpacpi/ |
| 250 | F: include/linux/acpi.h |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 251 | |
| 252 | ACPI BATTERY DRIVERS |
Len Brown | a414655 | 2007-06-23 15:54:36 -0400 | [diff] [blame] | 253 | P: Alexey Starikovskiy |
| 254 | M: astarikovskiy@suse.de |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 255 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 256 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 257 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 258 | F: drivers/acpi/battery.c |
| 259 | F: drivers/acpi/*sbs* |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 260 | |
| 261 | ACPI EC DRIVER |
| 262 | P: Alexey Starikovskiy |
Len Brown | a414655 | 2007-06-23 15:54:36 -0400 | [diff] [blame] | 263 | M: astarikovskiy@suse.de |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 264 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 265 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 266 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 267 | F: drivers/acpi/ec.c |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 268 | |
| 269 | ACPI FAN DRIVER |
Len Brown | 65573ee | 2008-06-27 11:22:46 -0400 | [diff] [blame] | 270 | P: Zhang Rui |
| 271 | M: rui.zhang@intel.com |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 272 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 273 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 274 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 275 | F: drivers/acpi/fan.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | |
Kristen Carlson Accardi | 998be20 | 2006-07-26 10:52:33 -0700 | [diff] [blame] | 277 | ACPI PCI HOTPLUG DRIVER |
| 278 | P: Kristen Carlson Accardi |
| 279 | M: kristen.c.accardi@intel.com |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 280 | L: linux-pci@vger.kernel.org |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 281 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 282 | F: drivers/pci/hotplug/acpi* |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 283 | |
| 284 | ACPI THERMAL DRIVER |
Len Brown | 65573ee | 2008-06-27 11:22:46 -0400 | [diff] [blame] | 285 | P: Zhang Rui |
| 286 | M: rui.zhang@intel.com |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 287 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 288 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 289 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 290 | F: drivers/acpi/*thermal* |
Kristen Carlson Accardi | 998be20 | 2006-07-26 10:52:33 -0700 | [diff] [blame] | 291 | |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 292 | ACPI VIDEO DRIVER |
Len Brown | 65573ee | 2008-06-27 11:22:46 -0400 | [diff] [blame] | 293 | P: Zhang Rui |
Len Brown | 38e09d8 | 2007-10-25 17:55:59 -0400 | [diff] [blame] | 294 | M: rui.zhang@intel.com |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 295 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 296 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 297 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 298 | F: drivers/acpi/video.c |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 299 | |
Carlos Corbacho | bff431e | 2008-02-05 02:17:04 +0000 | [diff] [blame] | 300 | ACPI WMI DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 301 | P: Carlos Corbacho |
| 302 | M: carlos@strangeworlds.co.uk |
| 303 | L: linux-acpi@vger.kernel.org |
| 304 | W: http://www.lesswatts.org/projects/acpi/ |
| 305 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 306 | F: drivers/platform/x86/wmi.c |
Carlos Corbacho | bff431e | 2008-02-05 02:17:04 +0000 | [diff] [blame] | 307 | |
Thibaut VARENE | 2f39d51 | 2008-02-20 21:05:56 +0100 | [diff] [blame] | 308 | AD1889 ALSA SOUND DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 309 | P: Kyle McMartin |
| 310 | M: kyle@mcmartin.ca |
| 311 | P: Thibaut Varene |
| 312 | M: T-Bone@parisc-linux.org |
| 313 | W: http://wiki.parisc-linux.org/AD1889 |
| 314 | L: linux-parisc@vger.kernel.org |
| 315 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 316 | F: sound/pci/ad1889.* |
Thibaut VARENE | 2f39d51 | 2008-02-20 21:05:56 +0100 | [diff] [blame] | 317 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | ADM1025 HARDWARE MONITOR DRIVER |
| 319 | P: Jean Delvare |
| 320 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 321 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 323 | F: Documentation/hwmon/adm1025 |
| 324 | F: drivers/hwmon/adm1025.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | |
Corentin Labbe | cae2caa | 2007-02-14 21:15:04 +0100 | [diff] [blame] | 326 | ADM1029 HARDWARE MONITOR DRIVER |
| 327 | P: Corentin Labbe |
| 328 | M: corentin.labbe@geomatys.fr |
| 329 | L: lm-sensors@lm-sensors.org |
| 330 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 331 | F: drivers/hwmon/adm1029.c |
Corentin Labbe | cae2caa | 2007-02-14 21:15:04 +0100 | [diff] [blame] | 332 | |
Michael Wu | cc0b88c | 2007-08-31 01:15:25 -0400 | [diff] [blame] | 333 | ADM8211 WIRELESS DRIVER |
| 334 | P: Michael Wu |
| 335 | M: flamingice@sourmilk.net |
| 336 | L: linux-wireless@vger.kernel.org |
| 337 | W: http://linuxwireless.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 338 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git |
Michael Wu | cc0b88c | 2007-08-31 01:15:25 -0400 | [diff] [blame] | 339 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 340 | F: drivers/net/wireless/adm8211.* |
Michael Wu | cc0b88c | 2007-08-31 01:15:25 -0400 | [diff] [blame] | 341 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | ADT746X FAN DRIVER |
| 343 | P: Colin Leroy |
| 344 | M: colin@colino.net |
| 345 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 346 | F: drivers/macintosh/therm_adt746x.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | |
Matthew Wilcox | 8c6af9e | 2007-07-26 11:03:19 -0400 | [diff] [blame] | 348 | ADVANSYS SCSI DRIVER |
| 349 | P: Matthew Wilcox |
| 350 | M: matthew@wil.cx |
| 351 | L: linux-scsi@vger.kernel.org |
| 352 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 353 | F: Documentation/scsi/advansys.txt |
| 354 | F: drivers/scsi/advansys.c |
Matthew Wilcox | 8c6af9e | 2007-07-26 11:03:19 -0400 | [diff] [blame] | 355 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | AEDSP16 DRIVER |
| 357 | P: Riccardo Facchetti |
| 358 | M: fizban@tin.it |
| 359 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 360 | F: sound/oss/aedsp16.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | |
| 362 | AFFS FILE SYSTEM |
| 363 | P: Roman Zippel |
| 364 | M: zippel@linux-m68k.org |
| 365 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 366 | F: Documentation/filesystems/affs.txt |
| 367 | F: fs/affs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 369 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
| 370 | P: David Howells |
| 371 | M: dhowells@redhat.com |
| 372 | L: linux-afs@lists.infradead.org |
| 373 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 374 | F: fs/afs/ |
| 375 | F: include/net/af_rxrpc.h |
| 376 | F: net/rxrpc/af_rxrpc.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 377 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | AGPGART DRIVER |
Dave Jones | 70e8992 | 2007-07-09 20:23:50 -0400 | [diff] [blame] | 379 | P: David Airlie |
| 380 | M: airlied@linux.ie |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 381 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 383 | F: drivers/char/agp/ |
| 384 | F: include/linux/agp* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | |
| 386 | AHA152X SCSI DRIVER |
| 387 | P: Juergen E. Fischer |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 388 | M: fischer@norbit.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | L: linux-scsi@vger.kernel.org |
| 390 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 391 | F: drivers/scsi/aha152x* |
| 392 | F: drivers/scsi/pcmcia/aha152x* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | |
Hannes Reinecke | 64624d4 | 2007-10-19 10:32:29 +0200 | [diff] [blame] | 394 | AIC7XXX / AIC79XX SCSI DRIVER |
| 395 | P: Hannes Reinecke |
| 396 | M: hare@suse.de |
| 397 | L: linux-scsi@vger.kernel.org |
| 398 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 399 | F: drivers/scsi/aic7xxx/ |
| 400 | F: drivers/scsi/aic7xxx_old/ |
Hannes Reinecke | 64624d4 | 2007-10-19 10:32:29 +0200 | [diff] [blame] | 401 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 402 | AIO |
| 403 | P: Benjamin LaHaise |
| 404 | M: bcrl@kvack.org |
| 405 | L: linux-aio@kvack.org |
| 406 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 407 | F: fs/aio.c |
| 408 | F: include/linux/*aio*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 409 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | ALCATEL SPEEDTOUCH USB DRIVER |
| 411 | P: Duncan Sands |
| 412 | M: duncan.sands@free.fr |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 413 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | W: http://www.linux-usb.org/SpeedTouch/ |
| 415 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 416 | F: drivers/usb/atm/speedtch.c |
| 417 | F: drivers/usb/atm/usbatm.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 419 | ALCHEMY AU1XX0 MMC DRIVER |
Manuel Lauss | 08fcb72 | 2008-06-09 08:40:35 +0200 | [diff] [blame] | 420 | P: Manuel Lauss |
| 421 | M: manuel.lauss@gmail.com |
| 422 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 423 | F: drivers/mmc/host/au1xmmc.c |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 424 | |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 425 | ALI1563 I2C DRIVER |
| 426 | P: Rudolf Marek |
Jean Delvare | 7188cc6 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 427 | M: r.marek@assembler.cz |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 428 | L: linux-i2c@vger.kernel.org |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 429 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 430 | F: Documentation/i2c/busses/i2c-ali1563 |
| 431 | F: drivers/i2c/busses/i2c-ali1563.c |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 432 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | ALPHA PORT |
| 434 | P: Richard Henderson |
| 435 | M: rth@twiddle.net |
| 436 | S: Odd Fixes for 2.4; Maintained for 2.6. |
| 437 | P: Ivan Kokshaysky |
| 438 | M: ink@jurassic.park.msu.ru |
| 439 | S: Maintained for 2.4; PCI support for 2.6. |
Cheng Renquan | a940669 | 2009-03-31 15:23:35 -0700 | [diff] [blame] | 440 | L: linux-alpha@vger.kernel.org |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 441 | F: arch/alpha/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 443 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
| 444 | P: Thomas Dahlmann |
Thomas Dahlmann | ba94471 | 2009-05-28 14:34:30 -0700 | [diff] [blame] | 445 | M: dahlmann.thomas@arcor.de |
Jordan Crouse | 67d7671 | 2008-05-12 14:02:22 -0700 | [diff] [blame] | 446 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 447 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 448 | F: drivers/usb/gadget/amd5536udc.* |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 449 | |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 450 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 451 | P: Jordan Crouse |
Jordan Crouse | 67d7671 | 2008-05-12 14:02:22 -0700 | [diff] [blame] | 452 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 453 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
| 454 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 455 | F: arch/x86/kernel/geode_32.c |
| 456 | F: drivers/char/hw_random/geode-rng.c |
| 457 | F: drivers/crypto/geode* |
| 458 | F: drivers/video/geode/ |
| 459 | F: arch/x86/include/asm/geode.h |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 460 | |
Joerg Roedel | 919ee7d | 2008-06-26 21:28:09 +0200 | [diff] [blame] | 461 | AMD IOMMU (AMD-VI) |
| 462 | P: Joerg Roedel |
| 463 | M: joerg.roedel@amd.com |
| 464 | L: iommu@lists.linux-foundation.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 465 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git |
Joerg Roedel | 919ee7d | 2008-06-26 21:28:09 +0200 | [diff] [blame] | 466 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 467 | F: arch/x86/kernel/amd_iommu*.c |
| 468 | F: arch/x86/include/asm/amd_iommu*.h |
Joerg Roedel | 919ee7d | 2008-06-26 21:28:09 +0200 | [diff] [blame] | 469 | |
Peter Oruba | e7f5b30 | 2008-07-28 18:44:11 +0200 | [diff] [blame] | 470 | AMD MICROCODE UPDATE SUPPORT |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 471 | P: Andreas Herrmann |
Randy Dunlap | f403bb8 | 2009-04-13 14:39:36 -0700 | [diff] [blame] | 472 | M: andreas.herrmann3@amd.com |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 473 | L: amd64-microcode@amd64.org |
| 474 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 475 | F: arch/x86/kernel/microcode_amd.c |
Peter Oruba | e7f5b30 | 2008-07-28 18:44:11 +0200 | [diff] [blame] | 476 | |
Stelian Pop | 284f42b | 2006-12-12 18:18:31 +0100 | [diff] [blame] | 477 | AMS (Apple Motion Sensor) DRIVER |
| 478 | P: Stelian Pop |
| 479 | M: stelian@popies.net |
| 480 | P: Michael Hanselmann |
| 481 | M: linux-kernel@hansmi.ch |
| 482 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 483 | F: drivers/hwmon/ams/ |
Stelian Pop | 284f42b | 2006-12-12 18:18:31 +0100 | [diff] [blame] | 484 | |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 485 | AMSO1100 RNIC DRIVER |
| 486 | P: Tom Tucker |
| 487 | M: tom@opengridcomputing.com |
| 488 | P: Steve Wise |
| 489 | M: swise@opengridcomputing.com |
Roland Dreier | 7852682 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 490 | L: general@lists.openfabrics.org |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 491 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 492 | F: drivers/infiniband/hw/amso1100/ |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 493 | |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 494 | AOA (Apple Onboard Audio) ALSA DRIVER |
| 495 | P: Johannes Berg |
| 496 | M: johannes@sipsolutions.net |
| 497 | L: linuxppc-dev@ozlabs.org |
Joe Perches | 9371166 | 2009-06-16 15:34:07 -0700 | [diff] [blame] | 498 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 499 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 500 | F: sound/aoa/ |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 501 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | APM DRIVER |
| 503 | P: Stephen Rothwell |
| 504 | M: sfr@canb.auug.org.au |
| 505 | L: linux-laptop@vger.kernel.org |
| 506 | W: http://www.canb.auug.org.au/~sfr/ |
| 507 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 508 | F: arch/x86/kernel/apm_32.c |
| 509 | F: include/linux/apm_bios.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | |
Henrik Rydberg | bd7aa4b | 2008-09-02 14:35:43 -0700 | [diff] [blame] | 511 | APPLE BCM5974 MULTITOUCH DRIVER |
| 512 | P: Henrik Rydberg |
| 513 | M: rydberg@euromail.se |
| 514 | L: linux-input@vger.kernel.org |
| 515 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 516 | F: drivers/input/mouse/bcm5974.c |
Henrik Rydberg | bd7aa4b | 2008-09-02 14:35:43 -0700 | [diff] [blame] | 517 | |
Nicolas Boichat | 6f2fad7 | 2007-05-08 00:24:52 -0700 | [diff] [blame] | 518 | APPLE SMC DRIVER |
| 519 | P: Nicolas Boichat |
| 520 | M: nicolas@boichat.ch |
| 521 | L: mactel-linux-devel@lists.sourceforge.net |
| 522 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 523 | F: drivers/hwmon/applesmc.c |
Nicolas Boichat | 6f2fad7 | 2007-05-08 00:24:52 -0700 | [diff] [blame] | 524 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | APPLETALK NETWORK LAYER |
| 526 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 527 | M: acme@ghostprotocols.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 529 | F: drivers/net/appletalk/ |
| 530 | F: net/appletalk/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | |
Johannes Berg | eb9ebe6 | 2007-10-27 23:42:45 -0400 | [diff] [blame] | 532 | APPLETOUCH TOUCHPAD DRIVER |
| 533 | P: Johannes Berg |
| 534 | M: johannes@sipsolutions.net |
Dmitry Torokhov | eb76c5c | 2007-11-02 09:07:33 -0400 | [diff] [blame] | 535 | L: linux-input@vger.kernel.org |
Johannes Berg | eb9ebe6 | 2007-10-27 23:42:45 -0400 | [diff] [blame] | 536 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 537 | F: Documentation/input/appletouch.txt |
| 538 | F: drivers/input/mouse/appletouch.c |
Johannes Berg | eb9ebe6 | 2007-10-27 23:42:45 -0400 | [diff] [blame] | 539 | |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 540 | ARC FRAMEBUFFER DRIVER |
| 541 | P: Jaya Kumar |
| 542 | M: jayalk@intworks.biz |
| 543 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 544 | F: drivers/video/arcfb.c |
| 545 | F: drivers/video/fb_defio.c |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 546 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | ARM MFM AND FLOPPY DRIVERS |
| 548 | P: Ian Molton |
| 549 | M: spyro@f2s.com |
| 550 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 551 | F: arch/arm/lib/floppydma.S |
| 552 | F: arch/arm/include/asm/floppy.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 554 | ARM PORT |
| 555 | P: Russell King |
| 556 | M: linux@arm.linux.org.uk |
| 557 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 558 | W: http://www.arm.linux.org.uk/ |
| 559 | S: Maintained |
| 560 | F: arch/arm/ |
| 561 | |
Russell King | 2761f5c | 2007-05-24 06:56:08 +0200 | [diff] [blame] | 562 | ARM PRIMECELL MMCI PL180/1 DRIVER |
Pierre Ossman | 6d79947 | 2008-07-22 14:36:57 +0200 | [diff] [blame] | 563 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 564 | F: drivers/mmc/host/mmci.* |
Russell King | 2761f5c | 2007-05-24 06:56:08 +0200 | [diff] [blame] | 565 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 566 | ARM/ADI ROADRUNNER MACHINE SUPPORT |
| 567 | P: Lennert Buytenhek |
| 568 | M: kernel@wantstofly.org |
| 569 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 570 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 571 | F: arch/arm/mach-ixp23xx/ |
| 572 | F: arch/arm/mach-ixp23xx/include/mach/ |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 573 | |
| 574 | ARM/ADS SPHERE MACHINE SUPPORT |
| 575 | P: Lennert Buytenhek |
| 576 | M: kernel@wantstofly.org |
| 577 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 578 | S: Maintained |
| 579 | |
Sergey Lapin | 9c784f9 | 2008-08-03 02:29:48 +0100 | [diff] [blame] | 580 | ARM/AFEB9260 MACHINE SUPPORT |
| 581 | P: Sergey Lapin |
| 582 | M: slapin@ossfans.org |
| 583 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 584 | S: Maintained |
| 585 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 586 | ARM/AJECO 1ARM MACHINE SUPPORT |
| 587 | P: Lennert Buytenhek |
| 588 | M: kernel@wantstofly.org |
| 589 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 590 | S: Maintained |
| 591 | |
Andrew Victor | d4a89c7 | 2006-12-04 13:56:21 +0100 | [diff] [blame] | 592 | ARM/ATMEL AT91RM9200 ARM ARCHITECTURE |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 593 | P: Andrew Victor |
| 594 | M: linux@maxim.org.za |
| 595 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 596 | W: http://maxim.org.za/at91_26.html |
| 597 | S: Maintained |
Andrew Victor | d4a89c7 | 2006-12-04 13:56:21 +0100 | [diff] [blame] | 598 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 599 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
| 600 | P: Lennert Buytenhek |
| 601 | M: kernel@wantstofly.org |
| 602 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 603 | S: Maintained |
| 604 | |
| 605 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT |
| 606 | P: Lennert Buytenhek |
| 607 | M: kernel@wantstofly.org |
| 608 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 609 | S: Maintained |
| 610 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 611 | ARM/CLKDEV SUPPORT |
| 612 | P: Russell King |
| 613 | M: linux@arm.linux.org.uk |
| 614 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 615 | F: arch/arm/common/clkdev.c |
| 616 | F: arch/arm/include/asm/clkdev.h |
| 617 | |
Mike Rapoport | d48134e | 2008-08-20 09:03:26 +0100 | [diff] [blame] | 618 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
Russell King | a9da4f7 | 2008-07-12 21:42:04 +0100 | [diff] [blame] | 619 | P: Mike Rapoport |
| 620 | M: mike@compulab.co.il |
| 621 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 622 | S: Maintained |
| 623 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | ARM/CORGI MACHINE SUPPORT |
| 625 | P: Richard Purdie |
| 626 | M: rpurdie@rpsys.net |
| 627 | S: Maintained |
| 628 | |
Paulius Zaleckas | 881a95f | 2009-03-26 10:06:27 +0200 | [diff] [blame] | 629 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
| 630 | P: Paulius Zaleckas |
| 631 | M: paulius.zaleckas@teltonika.lt |
| 632 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 633 | T: git git://gitorious.org/linux-gemini/mainline.git |
Paulius Zaleckas | 881a95f | 2009-03-26 10:06:27 +0200 | [diff] [blame] | 634 | S: Maintained |
Paulius Zaleckas | f49afbb | 2009-05-28 16:41:36 +0300 | [diff] [blame] | 635 | F: arch/arm/mach-gemini/ |
Paulius Zaleckas | 881a95f | 2009-03-26 10:06:27 +0200 | [diff] [blame] | 636 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 637 | ARM/EBSA110 MACHINE SUPPORT |
| 638 | P: Russell King |
| 639 | M: linux@arm.linux.org.uk |
| 640 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 641 | W: http://www.arm.linux.org.uk/ |
| 642 | S: Maintained |
| 643 | F: arch/arm/mach-ebsa110/ |
| 644 | F: drivers/net/arm/am79c961a.* |
| 645 | |
Russell King | a9da4f7 | 2008-07-12 21:42:04 +0100 | [diff] [blame] | 646 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
| 647 | P: Daniel Ribeiro |
| 648 | M: drwyrm@gmail.com |
| 649 | P: Stefan Schmidt |
| 650 | M: stefan@openezx.org |
| 651 | P: Harald Welte |
| 652 | M: laforge@openezx.org |
| 653 | L: openezx-devel@lists.openezx.org (subscribers-only) |
| 654 | W: http://www.openezx.org/ |
| 655 | S: Maintained |
| 656 | |
Paulius Zaleckas | 6a915af | 2009-03-25 13:10:20 +0200 | [diff] [blame] | 657 | ARM/FARADAY FA526 PORT |
| 658 | P: Paulius Zaleckas |
| 659 | M: paulius.zaleckas@teltonika.lt |
| 660 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 661 | S: Maintained |
Paulius Zaleckas | f49afbb | 2009-05-28 16:41:36 +0300 | [diff] [blame] | 662 | F: arch/arm/mm/*-fa* |
Paulius Zaleckas | 6a915af | 2009-03-25 13:10:20 +0200 | [diff] [blame] | 663 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 664 | ARM/FOOTBRIDGE ARCHITECTURE |
| 665 | P: Russell King |
| 666 | M: linux@arm.linux.org.uk |
| 667 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 668 | W: http://www.arm.linux.org.uk/ |
| 669 | S: Maintained |
| 670 | F: arch/arm/include/asm/hardware/dec21285.h |
| 671 | F: arch/arm/mach-footbridge/ |
| 672 | |
Sascha Hauer | 86183a5 | 2008-07-24 23:50:35 +0200 | [diff] [blame] | 673 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
| 674 | P: Sascha Hauer |
| 675 | M: kernel@pengutronix.de |
| 676 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 677 | S: Maintained |
| 678 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 679 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
| 680 | P: Lennert Buytenhek |
| 681 | M: kernel@wantstofly.org |
| 682 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 683 | S: Maintained |
| 684 | |
Jaya Kumar | 90b8fc3 | 2008-03-15 05:11:07 +0100 | [diff] [blame] | 685 | ARM/GUMSTIX MACHINE SUPPORT |
| 686 | P: Steve Sakoman |
| 687 | M: sakoman@gmail.com |
| 688 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 689 | S: Maintained |
| 690 | |
Philipp Zabel | ef47d5f | 2009-05-28 07:07:47 +0200 | [diff] [blame] | 691 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
| 692 | P: Philipp Zabel |
| 693 | M: philipp.zabel@gmail.com |
| 694 | S: Maintained |
| 695 | F: arch/arm/mach-pxa/hx4700.c |
| 696 | F: arch/arm/mach-pxa/include/mach/hx4700.h |
| 697 | |
Kristoffer Ericson | 21f37bc | 2006-11-21 01:20:31 +0100 | [diff] [blame] | 698 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 699 | P: Kristoffer Ericson |
| 700 | M: kristoffer.ericson@gmail.com |
| 701 | W: www.jlime.com |
| 702 | S: Maintained |
Kristoffer Ericson | 21f37bc | 2006-11-21 01:20:31 +0100 | [diff] [blame] | 703 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 704 | ARM/INTEL IOP32X ARM ARCHITECTURE |
| 705 | P: Lennert Buytenhek |
| 706 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 707 | P: Dan Williams |
| 708 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 709 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 710 | S: Supported |
| 711 | |
| 712 | ARM/INTEL IOP33X ARM ARCHITECTURE |
| 713 | P: Dan Williams |
| 714 | M: dan.j.williams@intel.com |
| 715 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 716 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 717 | |
| 718 | ARM/INTEL IOP13XX ARM ARCHITECTURE |
| 719 | P: Lennert Buytenhek |
| 720 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 721 | P: Dan Williams |
| 722 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 723 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 724 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 725 | |
| 726 | ARM/INTEL IQ81342EX MACHINE SUPPORT |
| 727 | P: Lennert Buytenhek |
| 728 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 729 | P: Dan Williams |
| 730 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 731 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 732 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 733 | |
| 734 | ARM/INTEL IXP2000 ARM ARCHITECTURE |
| 735 | P: Lennert Buytenhek |
| 736 | M: kernel@wantstofly.org |
| 737 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 738 | S: Maintained |
| 739 | |
| 740 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
| 741 | P: Lennert Buytenhek |
| 742 | M: kernel@wantstofly.org |
| 743 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 744 | S: Maintained |
| 745 | |
| 746 | ARM/INTEL IXP23XX ARM ARCHITECTURE |
| 747 | P: Lennert Buytenhek |
| 748 | M: kernel@wantstofly.org |
| 749 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 750 | S: Maintained |
| 751 | |
| 752 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
| 753 | P: Lennert Buytenhek |
| 754 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 755 | P: Dan Williams |
| 756 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 757 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 758 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 759 | |
| 760 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT |
| 761 | P: Lennert Buytenhek |
| 762 | M: kernel@wantstofly.org |
| 763 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 764 | S: Maintained |
| 765 | |
| 766 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
| 767 | P: Lennert Buytenhek |
| 768 | M: kernel@wantstofly.org |
| 769 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 770 | S: Maintained |
| 771 | |
Philipp Zabel | 3b886171 | 2008-07-09 21:27:15 +0100 | [diff] [blame] | 772 | ARM/MAGICIAN MACHINE SUPPORT |
| 773 | P: Philipp Zabel |
| 774 | M: philipp.zabel@gmail.com |
| 775 | S: Maintained |
| 776 | |
Kristoffer Ericson | 9624dfe | 2008-10-09 16:50:46 +0100 | [diff] [blame] | 777 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
| 778 | P: Michael Petchkovsky |
| 779 | M: mkpetch@internode.on.net |
| 780 | S: Maintained |
| 781 | |
Dirk Opfer | 8459c15 | 2005-11-06 14:27:52 +0000 | [diff] [blame] | 782 | ARM/TOSA MACHINE SUPPORT |
Dmitry Eremin-Solenikov | bfa0b1c | 2009-01-06 14:41:05 -0800 | [diff] [blame] | 783 | P: Dmitry Eremin-Solenikov |
Dmitry Baryshkov | 9388704 | 2008-07-07 10:50:06 +0100 | [diff] [blame] | 784 | M: dbaryshkov@gmail.com |
Dirk Opfer | 8459c15 | 2005-11-06 14:27:52 +0000 | [diff] [blame] | 785 | P: Dirk Opfer |
| 786 | M: dirk@opfer-online.de |
| 787 | S: Maintained |
| 788 | |
Marek Vasut | 54088bf | 2009-03-24 00:29:29 +0100 | [diff] [blame] | 789 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2 SUPPORT |
Marek Vašut | b5e4ad5 | 2008-07-07 17:25:46 +0100 | [diff] [blame] | 790 | P: Marek Vasut |
| 791 | M: marek.vasut@gmail.com |
| 792 | W: http://hackndev.com |
| 793 | S: Maintained |
| 794 | |
Sergey Lapin | c49e1e6 | 2008-08-29 15:47:52 +0100 | [diff] [blame] | 795 | ARM/PALMZ72 SUPPORT |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 796 | P: Sergey Lapin |
| 797 | M: slapin@ossfans.org |
| 798 | W: http://hackndev.com |
| 799 | S: Maintained |
Sergey Lapin | c49e1e6 | 2008-08-29 15:47:52 +0100 | [diff] [blame] | 800 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | ARM/PLEB SUPPORT |
| 802 | P: Peter Chubb |
| 803 | M: pleb@gelato.unsw.edu.au |
| 804 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
| 805 | S: Maintained |
| 806 | |
| 807 | ARM/PT DIGITAL BOARD PORT |
| 808 | P: Stefan Eletzhofer |
| 809 | M: stefan.eletzhofer@eletztrick.de |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 810 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | W: http://www.arm.linux.org.uk/ |
| 812 | S: Maintained |
| 813 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 814 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
| 815 | P: Lennert Buytenhek |
| 816 | M: kernel@wantstofly.org |
| 817 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 818 | S: Maintained |
| 819 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 820 | ARM/RISCPC ARCHITECTURE |
| 821 | P: Russell King |
| 822 | M: linux@arm.linux.org.uk |
| 823 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 824 | W: http://www.arm.linux.org.uk/ |
| 825 | S: Maintained |
| 826 | F: arch/arm/common/time-acorn.c |
| 827 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
| 828 | F: arch/arm/include/asm/hardware/ioc.h |
| 829 | F: arch/arm/include/asm/hardware/iomd.h |
| 830 | F: arch/arm/include/asm/hardware/memc.h |
| 831 | F: arch/arm/mach-rpc/ |
| 832 | F: drivers/net/arm/ether* |
| 833 | F: drivers/scsi/arm/ |
| 834 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | ARM/SHARK MACHINE SUPPORT |
| 836 | P: Alexander Schulz |
| 837 | M: alex@shark-linux.de |
| 838 | W: http://www.shark-linux.de/shark.html |
| 839 | S: Maintained |
| 840 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | ARM/S3C2410 ARM ARCHITECTURE |
| 842 | P: Ben Dooks |
Ben Dooks | 449d4dd | 2006-12-22 01:10:23 -0800 | [diff] [blame] | 843 | M: ben-linux@fluff.org |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 844 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | W: http://www.fluff.org/ben/linux/ |
| 846 | S: Maintained |
| 847 | |
| 848 | ARM/S3C2440 ARM ARCHITECTURE |
| 849 | P: Ben Dooks |
Ben Dooks | 449d4dd | 2006-12-22 01:10:23 -0800 | [diff] [blame] | 850 | M: ben-linux@fluff.org |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 851 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | W: http://www.fluff.org/ben/linux/ |
| 853 | S: Maintained |
| 854 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 855 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
| 856 | P: Lennert Buytenhek |
| 857 | M: kernel@wantstofly.org |
| 858 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 859 | S: Maintained |
| 860 | |
| 861 | ARM/THECUS N2100 MACHINE SUPPORT |
| 862 | P: Lennert Buytenhek |
| 863 | M: kernel@wantstofly.org |
| 864 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 865 | S: Maintained |
| 866 | |
wanzongshun | 98ad6e3 | 2009-02-13 06:04:32 +0100 | [diff] [blame] | 867 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 868 | P: Wan ZongShun |
| 869 | M: mcuos.com@gmail.com |
| 870 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 871 | W: http://www.mcuos.com |
| 872 | S: Maintained |
wanzongshun | 98ad6e3 | 2009-02-13 06:04:32 +0100 | [diff] [blame] | 873 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 874 | ARM/VFP SUPPORT |
| 875 | P: Russell King |
| 876 | M: linux@arm.linux.org.uk |
| 877 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 878 | W: http://www.arm.linux.org.uk/ |
| 879 | S: Maintained |
| 880 | F: arch/arm/vfp/ |
| 881 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | ARPD SUPPORT |
| 883 | P: Jonathan Layes |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 884 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 886 | F: net/ipv4/arp.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | |
| 888 | ASUS ACPI EXTRAS DRIVER |
Len Brown | 0b67d94 | 2006-12-22 21:18:56 -0500 | [diff] [blame] | 889 | P: Corentin Chary |
| 890 | M: corentincj@iksaif.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | P: Karol Kozimor |
| 892 | M: sziwan@users.sourceforge.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | L: acpi4asus-user@lists.sourceforge.net |
| 894 | W: http://sourceforge.net/projects/acpi4asus |
Len Brown | 0b67d94 | 2006-12-22 21:18:56 -0500 | [diff] [blame] | 895 | W: http://xf.iksaif.net/acpi4asus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 897 | F: arch/x86/kernel/acpi/boot.c |
| 898 | F: drivers/platform/x86/asus_acpi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 900 | ASUS ASB100 HARDWARE MONITOR DRIVER |
| 901 | P: Mark M. Hoffman |
| 902 | M: mhoffman@lightlink.com |
| 903 | L: lm-sensors@lm-sensors.org |
| 904 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 905 | F: drivers/hwmon/asb100.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 906 | |
Corentin Chary | 85091b7 | 2007-01-26 14:04:30 +0100 | [diff] [blame] | 907 | ASUS LAPTOP EXTRAS DRIVER |
| 908 | P: Corentin Chary |
| 909 | M: corentincj@iksaif.net |
| 910 | L: acpi4asus-user@lists.sourceforge.net |
| 911 | W: http://sourceforge.net/projects/acpi4asus |
| 912 | W: http://xf.iksaif.net/acpi4asus |
| 913 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 914 | F: drivers/platform/x86/asus-laptop.c |
Corentin Chary | 85091b7 | 2007-01-26 14:04:30 +0100 | [diff] [blame] | 915 | |
Andrew Morton | 953a647 | 2008-11-06 12:53:28 -0800 | [diff] [blame] | 916 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 917 | P: Dan Williams |
| 918 | M: dan.j.williams@intel.com |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 919 | P: Maciej Sosnowski |
| 920 | M: maciej.sosnowski@intel.com |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 921 | W: http://sourceforge.net/projects/xscaleiop |
| 922 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 923 | F: Documentation/crypto/async-tx-api.txt |
| 924 | F: crypto/async_tx/ |
| 925 | F: drivers/dma/ |
| 926 | F: include/linux/dmaengine.h |
| 927 | F: include/linux/async_tx.h |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 928 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 929 | ATA OVER ETHERNET (AOE) DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | P: Ed L. Cashin |
| 931 | M: ecashin@coraid.com |
| 932 | W: http://www.coraid.com/support/linux |
| 933 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 934 | F: Documentation/aoe/ |
| 935 | F: drivers/block/aoe/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 937 | ATHEROS ATH5K WIRELESS DRIVER |
| 938 | P: Jiri Slaby |
| 939 | M: jirislaby@gmail.com |
| 940 | P: Nick Kossifidis |
| 941 | M: mickflemm@gmail.com |
| 942 | P: Luis R. Rodriguez |
Luis R. Rodriguez | 4fe0657 | 2008-10-13 14:08:07 -0700 | [diff] [blame] | 943 | M: lrodriguez@atheros.com |
Bob Copeland | adef199 | 2008-10-29 08:30:57 -0400 | [diff] [blame] | 944 | P: Bob Copeland |
| 945 | M: me@bobcopeland.com |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 946 | L: linux-wireless@vger.kernel.org |
| 947 | L: ath5k-devel@lists.ath5k.org |
| 948 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 949 | F: drivers/net/wireless/ath5k/ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 950 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 951 | ATHEROS ATH9K WIRELESS DRIVER |
| 952 | P: Luis R. Rodriguez |
| 953 | M: lrodriguez@atheros.com |
| 954 | P: Jouni Malinen |
| 955 | M: jmalinen@atheros.com |
Luis R. Rodriguez | 295936c | 2009-03-27 17:21:05 -0400 | [diff] [blame] | 956 | P: Sujith Manoharan |
| 957 | M: Sujith.Manoharan@atheros.com |
| 958 | P: Vasanthakumar Thiagarajan |
| 959 | M: vasanth@atheros.com |
| 960 | P: Senthil Balasubramanian |
| 961 | M: senthilkumar@atheros.com |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 962 | L: linux-wireless@vger.kernel.org |
| 963 | L: ath9k-devel@lists.ath9k.org |
| 964 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 965 | F: drivers/net/wireless/ath9k/ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 966 | |
Christian Lamparter | 75ca88c | 2009-03-21 23:11:49 +0100 | [diff] [blame] | 967 | ATHEROS AR9170 WIRELESS DRIVER |
| 968 | P: Christian Lamparter |
| 969 | M: chunkeey@web.de |
| 970 | L: linux-wireless@vger.kernel.org |
| 971 | W: http://wireless.kernel.org/en/users/Drivers/ar9170 |
| 972 | S: Maintained |
| 973 | F: drivers/net/wireless/ar9170/ |
| 974 | |
Ville Syrjala | 6f69a6d | 2008-04-21 22:21:10 +0000 | [diff] [blame] | 975 | ATI_REMOTE2 DRIVER |
| 976 | P: Ville Syrjala |
| 977 | M: syrjala@sci.fi |
| 978 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 979 | F: drivers/input/misc/ati_remote2.c |
Ville Syrjala | 6f69a6d | 2008-04-21 22:21:10 +0000 | [diff] [blame] | 980 | |
Chris Snook | 7ae115b | 2008-09-09 03:26:57 -0400 | [diff] [blame] | 981 | ATLX ETHERNET DRIVERS |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 982 | P: Jay Cliburn |
| 983 | M: jcliburn@gmail.com |
| 984 | P: Chris Snook |
| 985 | M: csnook@redhat.com |
Chris Snook | 7ae115b | 2008-09-09 03:26:57 -0400 | [diff] [blame] | 986 | P: Jie Yang |
| 987 | M: jie.yang@atheros.com |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 988 | L: atl1-devel@lists.sourceforge.net |
| 989 | W: http://sourceforge.net/projects/atl1 |
| 990 | W: http://atl1.sourceforge.net |
| 991 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 992 | F: drivers/net/atlx/ |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 993 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | ATM |
| 995 | P: Chas Williams |
| 996 | M: chas@cmf.nrl.navy.mil |
Roland Dreier | f37bf90 | 2006-09-13 20:39:33 -0700 | [diff] [blame] | 997 | L: linux-atm-general@lists.sourceforge.net (subscribers-only) |
Jiri Slaby | 44ae98b | 2008-11-30 23:27:11 -0800 | [diff] [blame] | 998 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | W: http://linux-atm.sourceforge.net |
| 1000 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1001 | F: drivers/atm/ |
| 1002 | F: include/linux/atm* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 1004 | ATMEL AT91 MCI DRIVER |
Pierre Ossman | 81764fa | 2007-07-15 18:47:38 +0200 | [diff] [blame] | 1005 | P: Nicolas Ferre |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1006 | M: nicolas.ferre@atmel.com |
Pierre Ossman | 81764fa | 2007-07-15 18:47:38 +0200 | [diff] [blame] | 1007 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 1008 | W: http://www.atmel.com/products/AT91/ |
| 1009 | W: http://www.at91.com/ |
| 1010 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1011 | F: drivers/mmc/host/at91_mci.c |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 1012 | |
Haavard Skinnemoen | a1cfac4 | 2008-02-08 04:21:00 -0800 | [diff] [blame] | 1013 | ATMEL AT91 / AT32 SERIAL DRIVER |
| 1014 | P: Haavard Skinnemoen |
| 1015 | M: hskinnemoen@atmel.com |
Haavard Skinnemoen | a1cfac4 | 2008-02-08 04:21:00 -0800 | [diff] [blame] | 1016 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1017 | F: drivers/serial/atmel_serial.c |
Haavard Skinnemoen | a1cfac4 | 2008-02-08 04:21:00 -0800 | [diff] [blame] | 1018 | |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1019 | ATMEL LCDFB DRIVER |
| 1020 | P: Nicolas Ferre |
| 1021 | M: nicolas.ferre@atmel.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 1022 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1023 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1024 | F: drivers/video/atmel_lcdfb.c |
| 1025 | F: include/video/atmel_lcdc.h |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1026 | |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 1027 | ATMEL MACB ETHERNET DRIVER |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 1028 | P: Haavard Skinnemoen |
| 1029 | M: hskinnemoen@atmel.com |
| 1030 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1031 | F: drivers/net/macb.* |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 1032 | |
Haavard Skinnemoen | 754ce4f | 2007-02-14 00:33:09 -0800 | [diff] [blame] | 1033 | ATMEL SPI DRIVER |
| 1034 | P: Haavard Skinnemoen |
| 1035 | M: hskinnemoen@atmel.com |
| 1036 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1037 | F: drivers/spi/atmel_spi.* |
Haavard Skinnemoen | 754ce4f | 2007-02-14 00:33:09 -0800 | [diff] [blame] | 1038 | |
Haavard Skinnemoen | 914a3f3 | 2007-10-10 02:29:43 -0700 | [diff] [blame] | 1039 | ATMEL USBA UDC DRIVER |
| 1040 | P: Haavard Skinnemoen |
| 1041 | M: hskinnemoen@atmel.com |
| 1042 | L: kernel@avr32linux.org |
| 1043 | W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver |
| 1044 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1045 | F: drivers/usb/gadget/atmel_usba_udc.* |
Haavard Skinnemoen | 914a3f3 | 2007-10-10 02:29:43 -0700 | [diff] [blame] | 1046 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | ATMEL WIRELESS DRIVER |
| 1048 | P: Simon Kelley |
| 1049 | M: simon@thekelleys.org.uk |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 1050 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | W: http://www.thekelleys.org.uk/atmel |
| 1052 | W: http://atmelwlandriver.sourceforge.net/ |
| 1053 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1054 | F: drivers/net/wireless/atmel* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 1056 | AUDIT SUBSYSTEM |
Eric Paris | 0ef1970 | 2008-04-18 10:47:32 -0400 | [diff] [blame] | 1057 | P: Al Viro |
| 1058 | M: viro@zeniv.linux.org.uk |
| 1059 | P: Eric Paris |
| 1060 | M: eparis@redhat.com |
Gabriel C | b9a0620 | 2007-08-10 13:00:56 -0700 | [diff] [blame] | 1061 | L: linux-audit@redhat.com (subscribers-only) |
David Woodhouse | ad3f9a2 | 2005-07-13 15:28:29 +0100 | [diff] [blame] | 1062 | W: http://people.redhat.com/sgrubb/audit/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1063 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 1064 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1065 | F: include/linux/audit.h |
| 1066 | F: kernel/audit* |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 1067 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1068 | AUXILIARY DISPLAY DRIVERS |
| 1069 | P: Miguel Ojeda Sandonis |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1070 | M: miguel.ojeda.sandonis@gmail.com |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1071 | W: http://miguelojeda.es/auxdisplay.htm |
| 1072 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1073 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1074 | F: drivers/auxdisplay/ |
| 1075 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1076 | |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1077 | AVR32 ARCHITECTURE |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1078 | P: Haavard Skinnemoen |
| 1079 | M: hskinnemoen@atmel.com |
| 1080 | W: http://www.atmel.com/products/AVR32/ |
| 1081 | W: http://avr32linux.org/ |
| 1082 | W: http://avrfreaks.net/ |
| 1083 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1084 | F: arch/avr32/ |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1085 | |
| 1086 | AVR32/AT32AP MACHINE SUPPORT |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1087 | P: Haavard Skinnemoen |
| 1088 | M: hskinnemoen@atmel.com |
| 1089 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1090 | F: arch/avr32/mach-at32ap/ |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1091 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | AX.25 NETWORK LAYER |
| 1093 | P: Ralf Baechle |
| 1094 | M: ralf@linux-mips.org |
| 1095 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 1096 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1098 | F: include/linux/ax25.h |
| 1099 | F: include/net/ax25.h |
| 1100 | F: net/ax25/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1102 | B43 WIRELESS DRIVER |
| 1103 | P: Michael Buesch |
| 1104 | M: mb@bu3sch.de |
| 1105 | P: Stefano Brivio |
| 1106 | M: stefano.brivio@polimi.it |
| 1107 | L: linux-wireless@vger.kernel.org |
| 1108 | W: http://linuxwireless.org/en/users/Drivers/b43 |
| 1109 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1110 | F: drivers/net/wireless/b43/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1111 | |
| 1112 | B43LEGACY WIRELESS DRIVER |
| 1113 | P: Larry Finger |
| 1114 | M: Larry.Finger@lwfinger.net |
| 1115 | P: Stefano Brivio |
| 1116 | M: stefano.brivio@polimi.it |
| 1117 | L: linux-wireless@vger.kernel.org |
| 1118 | W: http://linuxwireless.org/en/users/Drivers/b43 |
| 1119 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1120 | F: drivers/net/wireless/b43legacy/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1121 | |
Richard Purdie | 300abeb | 2007-02-07 22:21:07 +0000 | [diff] [blame] | 1122 | BACKLIGHT CLASS/SUBSYSTEM |
| 1123 | P: Richard Purdie |
| 1124 | M: rpurdie@rpsys.net |
| 1125 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1126 | F: drivers/video/backlight/ |
| 1127 | F: include/linux/backlight.h |
Richard Purdie | 300abeb | 2007-02-07 22:21:07 +0000 | [diff] [blame] | 1128 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1129 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
| 1130 | P: Thomas Sailer |
| 1131 | M: t.sailer@alumni.ethz.ch |
| 1132 | L: linux-hams@vger.kernel.org |
| 1133 | W: http://www.baycom.org/~tom/ham/ham.html |
| 1134 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1135 | F: drivers/net/hamradio/baycom* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1136 | |
| 1137 | BEFS FILE SYSTEM |
| 1138 | P: Sergey S. Kostyliov |
| 1139 | M: rathamahata@php4.ru |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1140 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1141 | F: Documentation/filesystems/befs.txt |
| 1142 | F: fs/befs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1143 | |
| 1144 | BFS FILE SYSTEM |
| 1145 | P: Tigran A. Aivazian |
| 1146 | M: tigran@aivazian.fsnet.co.uk |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1147 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1148 | F: Documentation/filesystems/bfs.txt |
| 1149 | F: fs/bfs/ |
| 1150 | F: include/linux/bfs_fs.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1151 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1152 | BLACKFIN ARCHITECTURE |
Mike Frysinger | 6c83429 | 2009-05-24 02:13:15 -0400 | [diff] [blame] | 1153 | P: Mike Frysinger |
| 1154 | M: vapier@gentoo.org |
Mike Frysinger | 5b93e13 | 2009-02-04 16:49:45 +0800 | [diff] [blame] | 1155 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | e3b2d3f | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1156 | W: http://blackfin.uclinux.org |
| 1157 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1158 | F: arch/blackfin/ |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1159 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1160 | BLACKFIN EMAC DRIVER |
Mike Frysinger | 6c83429 | 2009-05-24 02:13:15 -0400 | [diff] [blame] | 1161 | P: Michael Hennerich |
| 1162 | M: michael.hennerich@analog.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1163 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1164 | W: http://blackfin.uclinux.org |
| 1165 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1166 | F: drivers/net/bfin_mac.* |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1167 | |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1168 | BLACKFIN RTC DRIVER |
| 1169 | P: Mike Frysinger |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1170 | M: vapier.adi@gmail.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1171 | L: uclinux-dist-devel@blackfin.uclinux.org |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1172 | W: http://blackfin.uclinux.org |
| 1173 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1174 | F: drivers/rtc/rtc-bfin.c |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1175 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1176 | BLACKFIN SERIAL DRIVER |
Mike Frysinger | 9c5e710 | 2007-11-17 23:19:44 +0800 | [diff] [blame] | 1177 | P: Sonic Zhang |
| 1178 | M: sonic.zhang@analog.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1179 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | e3b2d3f | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1180 | W: http://blackfin.uclinux.org |
| 1181 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1182 | F: drivers/serial/bfin_5xx.c |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1183 | |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 1184 | BLACKFIN WATCHDOG DRIVER |
| 1185 | P: Mike Frysinger |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 1186 | M: vapier.adi@gmail.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1187 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 1188 | W: http://blackfin.uclinux.org |
| 1189 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1190 | F: drivers/watchdog/bfin_wdt.c |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 1191 | |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 1192 | BLACKFIN I2C TWI DRIVER |
| 1193 | P: Sonic Zhang |
| 1194 | M: sonic.zhang@analog.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1195 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 1196 | W: http://blackfin.uclinux.org/ |
| 1197 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1198 | F: drivers/i2c/busses/i2c-bfin-twi.c |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 1199 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | BLOCK LAYER |
| 1201 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 1202 | M: axboe@kernel.dk |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1203 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1205 | F: block/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 1207 | BLOCK2MTD DRIVER |
| 1208 | P: Joern Engel |
| 1209 | M: joern@lazybastard.org |
| 1210 | L: linux-mtd@lists.infradead.org |
| 1211 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1212 | F: drivers/mtd/devices/block2mtd.c |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 1213 | |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 1214 | BLUETOOTH DRIVERS |
| 1215 | P: Marcel Holtmann |
| 1216 | M: marcel@holtmann.org |
| 1217 | L: linux-bluetooth@vger.kernel.org |
| 1218 | W: http://www.bluez.org/ |
| 1219 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1220 | F: drivers/bluetooth/ |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 1221 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | BLUETOOTH SUBSYSTEM |
| 1223 | P: Marcel Holtmann |
| 1224 | M: marcel@holtmann.org |
Pavel Machek | 781c284 | 2008-03-20 15:41:02 -0700 | [diff] [blame] | 1225 | L: linux-bluetooth@vger.kernel.org |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 1226 | W: http://www.bluez.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1227 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1229 | F: net/bluetooth/ |
| 1230 | F: include/net/bluetooth/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | BONDING DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 1233 | P: Jay Vosburgh |
| 1234 | M: fubar@us.ibm.com |
| 1235 | L: bonding-devel@lists.sourceforge.net |
| 1236 | W: http://sourceforge.net/projects/bonding/ |
| 1237 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1238 | F: drivers/net/bonding/ |
| 1239 | F: include/linux/if_bonding.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1240 | |
Gary Zambrano | 3910589 | 2006-06-22 17:26:20 -0700 | [diff] [blame] | 1241 | BROADCOM B44 10/100 ETHERNET DRIVER |
| 1242 | P: Gary Zambrano |
| 1243 | M: zambrano@broadcom.com |
| 1244 | L: netdev@vger.kernel.org |
| 1245 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1246 | F: drivers/net/b44.* |
Gary Zambrano | 3910589 | 2006-06-22 17:26:20 -0700 | [diff] [blame] | 1247 | |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1248 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
| 1249 | P: Michael Chan |
| 1250 | M: mchan@broadcom.com |
| 1251 | L: netdev@vger.kernel.org |
| 1252 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1253 | F: drivers/net/bnx2.* |
| 1254 | F: drivers/net/bnx2_* |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1255 | |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 1256 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
Eilon Greenstein | 24e3fce | 2008-06-12 14:30:28 -0700 | [diff] [blame] | 1257 | P: Eilon Greenstein |
| 1258 | M: eilong@broadcom.com |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 1259 | L: netdev@vger.kernel.org |
| 1260 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1261 | F: drivers/net/bnx2x* |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 1262 | |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1263 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
Matt Carlson | 1318136 | 2009-02-25 14:41:06 +0000 | [diff] [blame] | 1264 | P: Matt Carlson |
| 1265 | M: mcarlson@broadcom.com |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1266 | P: Michael Chan |
| 1267 | M: mchan@broadcom.com |
| 1268 | L: netdev@vger.kernel.org |
| 1269 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1270 | F: drivers/net/tg3.* |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1271 | |
Jens Axboe | 5cdf7f7 | 2007-07-17 08:58:06 +0200 | [diff] [blame] | 1272 | BSG (block layer generic sg v4 driver) |
| 1273 | P: FUJITA Tomonori |
| 1274 | M: fujita.tomonori@lab.ntt.co.jp |
| 1275 | L: linux-scsi@vger.kernel.org |
| 1276 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1277 | F: block/bsg.c |
| 1278 | F: include/linux/bsg.h |
Jens Axboe | 5cdf7f7 | 2007-07-17 08:58:06 +0200 | [diff] [blame] | 1279 | |
Michael Buesch | ff1d5c2 | 2008-07-25 01:46:10 -0700 | [diff] [blame] | 1280 | BT8XXGPIO DRIVER |
| 1281 | P: Michael Buesch |
| 1282 | M: mb@bu3sch.de |
| 1283 | W: http://bu3sch.de/btgpio.php |
| 1284 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1285 | F: drivers/gpio/bt8xxgpio.c |
Michael Buesch | ff1d5c2 | 2008-07-25 01:46:10 -0700 | [diff] [blame] | 1286 | |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 1287 | BTRFS FILE SYSTEM |
| 1288 | P: Chris Mason |
| 1289 | M: chris.mason@oracle.com |
| 1290 | L: linux-btrfs@vger.kernel.org |
| 1291 | W: http://btrfs.wiki.kernel.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1292 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 1293 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1294 | F: Documentation/filesystems/btrfs.txt |
| 1295 | F: fs/btrfs/ |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 1296 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | BTTV VIDEO4LINUX DRIVER |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 1298 | P: Mauro Carvalho Chehab |
Mauro Carvalho Chehab | 8d58d77 | 2006-01-27 16:32:02 -0200 | [diff] [blame] | 1299 | M: mchehab@infradead.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 1300 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 1301 | W: http://linuxtv.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1302 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 1303 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1304 | F: Documentation/video4linux/bttv/ |
| 1305 | F: drivers/media/video/bt8xx/bttv* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | |
David Howells | a5432f5 | 2009-04-20 15:46:45 +0100 | [diff] [blame] | 1307 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
| 1308 | P: David Howells |
| 1309 | M: dhowells@redhat.com |
| 1310 | L: linux-cachefs@redhat.com |
| 1311 | S: Supported |
| 1312 | F: Documentation/filesystems/caching/cachefiles.txt |
| 1313 | F: fs/cachefiles/ |
| 1314 | |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1315 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 1316 | P: Jonathan Corbet |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1317 | M: corbet@lwn.net |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 1318 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1319 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1320 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1321 | F: Documentation/video4linux/cafe_ccic |
| 1322 | F: drivers/media/video/cafe_ccic* |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1323 | |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 1324 | CALGARY x86-64 IOMMU |
| 1325 | P: Muli Ben-Yehuda |
| 1326 | M: muli@il.ibm.com |
| 1327 | P: Jon D. Mason |
Jon Mason | d8d2bed | 2006-10-05 18:47:21 +0200 | [diff] [blame] | 1328 | M: jdmason@kudzu.us |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 1329 | L: discuss@x86-64.org |
| 1330 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1331 | F: arch/x86/kernel/pci-calgary_64.c |
| 1332 | F: arch/x86/kernel/tce_64.c |
| 1333 | F: arch/x86/include/asm/calgary.h |
| 1334 | F: arch/x86/include/asm/tce.h |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 1335 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1336 | CAN NETWORK LAYER |
| 1337 | P: Urs Thuermann |
| 1338 | M: urs.thuermann@volkswagen.de |
| 1339 | P: Oliver Hartkopp |
| 1340 | M: oliver.hartkopp@volkswagen.de |
| 1341 | L: socketcan-core@lists.berlios.de (subscribers-only) |
| 1342 | W: http://developer.berlios.de/projects/socketcan/ |
| 1343 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1344 | F: drivers/net/can/ |
| 1345 | F: include/linux/can/ |
| 1346 | F: include/linux/can.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1347 | |
Wolfgang Grandegger | 4261a20 | 2009-05-15 23:39:28 +0000 | [diff] [blame] | 1348 | CAN NETWORK DRIVERS |
| 1349 | P: Wolfgang Grandegger |
| 1350 | M: wg@grandegger.com |
| 1351 | L: socketcan-core@lists.berlios.de (subscribers-only) |
| 1352 | W: http://developer.berlios.de/projects/socketcan/ |
| 1353 | S: Maintained |
| 1354 | |
Arnd Bergmann | b815454 | 2008-05-16 11:10:59 +0200 | [diff] [blame] | 1355 | CELL BROADBAND ENGINE ARCHITECTURE |
| 1356 | P: Arnd Bergmann |
| 1357 | M: arnd@arndb.de |
| 1358 | L: linuxppc-dev@ozlabs.org |
| 1359 | L: cbe-oss-dev@ozlabs.org |
| 1360 | W: http://www.ibm.com/developerworks/power/cell/ |
| 1361 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1362 | F: arch/powerpc/include/asm/cell*.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1363 | F: arch/powerpc/include/asm/spu*.h |
| 1364 | F: arch/powerpc/oprofile/*cell* |
| 1365 | F: arch/powerpc/platforms/cell/ |
Arnd Bergmann | b815454 | 2008-05-16 11:10:59 +0200 | [diff] [blame] | 1366 | |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 1367 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
| 1368 | P: David Vrabel |
| 1369 | M: david.vrabel@csr.com |
| 1370 | L: linux-usb@vger.kernel.org |
| 1371 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1372 | F: Documentation/usb/WUSB-Design-overview.txt |
| 1373 | F: Documentation/usb/wusb-cbaf |
| 1374 | F: drivers/usb/wusbcore/ |
| 1375 | F: include/linux/usb/wusb* |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 1376 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1377 | CFAG12864B LCD DRIVER |
| 1378 | P: Miguel Ojeda Sandonis |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1379 | M: miguel.ojeda.sandonis@gmail.com |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1380 | W: http://miguelojeda.es/auxdisplay.htm |
| 1381 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1382 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1383 | F: drivers/auxdisplay/cfag12864b.c |
| 1384 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1385 | |
| 1386 | CFAG12864BFB LCD FRAMEBUFFER DRIVER |
| 1387 | P: Miguel Ojeda Sandonis |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1388 | M: miguel.ojeda.sandonis@gmail.com |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1389 | W: http://miguelojeda.es/auxdisplay.htm |
| 1390 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1391 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1392 | F: drivers/auxdisplay/cfag12864bfb.c |
| 1393 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1394 | |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 1395 | CFG80211 and NL80211 |
| 1396 | P: Johannes Berg |
| 1397 | M: johannes@sipsolutions.net |
| 1398 | L: linux-wireless@vger.kernel.org |
| 1399 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1400 | F: include/linux/nl80211.h |
| 1401 | F: include/net/cfg80211.h |
| 1402 | F: net/wireless/* |
| 1403 | X: net/wireless/wext* |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 1404 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1405 | CHECKPATCH |
| 1406 | P: Andy Whitcroft |
Andy Whitcroft | b0e0b43 | 2009-01-06 14:41:22 -0800 | [diff] [blame] | 1407 | M: apw@canonical.com |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1408 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1409 | F: scripts/checkpatch.pl |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1410 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1411 | CISCO 10G ETHERNET DRIVER |
| 1412 | P: Scott Feldman |
| 1413 | M: scofeldm@cisco.com |
| 1414 | P: Joe Eykholt |
| 1415 | M: jeykholt@cisco.com |
Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 1416 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1417 | F: drivers/net/enic/ |
Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 1418 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1419 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
| 1420 | P: Lennert Buytenhek |
| 1421 | M: kernel@wantstofly.org |
| 1422 | L: netdev@vger.kernel.org |
| 1423 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1424 | F: drivers/net/arm/ep93xx_eth.c |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1425 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1426 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
| 1427 | P: Lennert Buytenhek |
| 1428 | M: kernel@wantstofly.org |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 1429 | L: linux-usb@vger.kernel.org |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1430 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1431 | F: drivers/usb/host/ohci-ep93xx.c |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1432 | |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 1433 | CIRRUS LOGIC CS4270 SOUND DRIVER |
| 1434 | P: Timur Tabi |
| 1435 | M: timur@freescale.com |
Joe Perches | 9371166 | 2009-06-16 15:34:07 -0700 | [diff] [blame] | 1436 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 1437 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1438 | F: sound/soc/codecs/cs4270* |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 1439 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1440 | CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER |
| 1441 | P: Cirrus Logic Corporation (kernel 2.2 driver) |
| 1442 | M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com> |
| 1443 | P: Nils Faerber (port to kernel 2.4) |
| 1444 | M: Nils Faerber <nils@kernelconcepts.de> |
| 1445 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1446 | F: Documentation/input/cs461x.txt |
| 1447 | F: sound/pci/cs46xx/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1449 | CLK API |
| 1450 | P: Russell King |
| 1451 | M: linux@arm.linux.org.uk |
| 1452 | F: include/linux/clk.h |
| 1453 | |
Abhijeet Joglekar | 5df6d73 | 2009-04-17 18:33:26 -0700 | [diff] [blame] | 1454 | CISCO FCOE HBA DRIVER |
| 1455 | P: Abhijeet Joglekar |
| 1456 | M: abjoglek@cisco.com |
| 1457 | P: Joe Eykholt |
| 1458 | M: jeykholt@cisco.com |
| 1459 | L: linux-scsi@vger.kernel.org |
| 1460 | S: Supported |
Joe Perches | 2a99921 | 2009-06-16 15:34:09 -0700 | [diff] [blame] | 1461 | F: drivers/scsi/fnic/ |
Abhijeet Joglekar | 5df6d73 | 2009-04-17 18:33:26 -0700 | [diff] [blame] | 1462 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1463 | CODA FILE SYSTEM |
| 1464 | P: Jan Harkes |
| 1465 | M: jaharkes@cs.cmu.edu |
| 1466 | M: coda@cs.cmu.edu |
| 1467 | L: codalist@coda.cs.cmu.edu |
| 1468 | W: http://www.coda.cs.cmu.edu/ |
| 1469 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1470 | F: Documentation/filesystems/coda.txt |
| 1471 | F: fs/coda/ |
| 1472 | F: include/linux/coda*.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1473 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1474 | COMMON INTERNET FILE SYSTEM (CIFS) |
| 1475 | P: Steve French |
| 1476 | M: sfrench@samba.org |
| 1477 | L: linux-cifs-client@lists.samba.org |
| 1478 | L: samba-technical@lists.samba.org |
| 1479 | W: http://linux-cifs.samba.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1480 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1481 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1482 | F: Documentation/filesystems/cifs.txt |
| 1483 | F: fs/cifs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1484 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | COMPACTPCI HOTPLUG CORE |
| 1486 | P: Scott Murray |
| 1487 | M: scottm@somanetworks.com |
| 1488 | M: scott@spiteful.org |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 1489 | L: linux-pci@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1490 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1491 | F: drivers/pci/hotplug/cpci_hotplug* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1492 | |
| 1493 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER |
| 1494 | P: Scott Murray |
| 1495 | M: scottm@somanetworks.com |
| 1496 | M: scott@spiteful.org |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 1497 | L: linux-pci@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1498 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1499 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | |
| 1501 | COMPACTPCI HOTPLUG GENERIC DRIVER |
| 1502 | P: Scott Murray |
| 1503 | M: scottm@somanetworks.com |
| 1504 | M: scott@spiteful.org |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 1505 | L: linux-pci@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1506 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1507 | F: drivers/pci/hotplug/cpcihp_generic.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | |
Cezary Jackiewicz | 5411552 | 2008-06-09 16:22:22 -0700 | [diff] [blame] | 1509 | COMPAL LAPTOP SUPPORT |
| 1510 | P: Cezary Jackiewicz |
| 1511 | M: cezary.jackiewicz@gmail.com |
| 1512 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1513 | F: drivers/platform/x86/compal-laptop.c |
Cezary Jackiewicz | 5411552 | 2008-06-09 16:22:22 -0700 | [diff] [blame] | 1514 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1515 | COMPUTONE INTELLIPORT MULTIPORT CARD |
| 1516 | P: Michael H. Warfield |
Adrian Bunk | 07d46de | 2005-06-25 14:59:13 -0700 | [diff] [blame] | 1517 | M: mhw@wittsend.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1518 | W: http://www.wittsend.com/computone.html |
Adrian Bunk | 07d46de | 2005-06-25 14:59:13 -0700 | [diff] [blame] | 1519 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1520 | F: Documentation/serial/computone.txt |
| 1521 | F: drivers/char/ip2/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1522 | |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 1523 | CONEXANT ACCESSRUNNER USB DRIVER |
| 1524 | P: Simon Arlott |
| 1525 | M: cxacru@fire.lp0.eu |
Simon Arlott | 9ae5e3b | 2007-05-09 08:38:10 +0200 | [diff] [blame] | 1526 | L: accessrunner-general@lists.sourceforge.net |
| 1527 | W: http://accessrunner.sourceforge.net/ |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 1528 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1529 | F: drivers/usb/atm/cxacru.c |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 1530 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1531 | CONFIGFS |
| 1532 | P: Joel Becker |
| 1533 | M: joel.becker@oracle.com |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1534 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1535 | F: fs/configfs/ |
| 1536 | F: include/linux/configfs.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1537 | |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 1538 | CONTROL GROUPS (CGROUPS) |
| 1539 | P: Paul Menage |
| 1540 | M: menage@google.com |
KOSAKI Motohiro | 01c4a42 | 2009-02-11 13:04:35 -0800 | [diff] [blame] | 1541 | P: Li Zefan |
| 1542 | M: lizf@cn.fujitsu.com |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 1543 | L: containers@lists.linux-foundation.org |
| 1544 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1545 | F: include/linux/cgroup* |
| 1546 | F: kernel/cgroup* |
Randy Dunlap | 8ca739e | 2009-06-17 16:26:32 -0700 | [diff] [blame] | 1547 | F: mm/*cgroup* |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 1548 | |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1549 | CORETEMP HARDWARE MONITORING DRIVER |
| 1550 | P: Rudolf Marek |
| 1551 | M: r.marek@assembler.cz |
| 1552 | L: lm-sensors@lm-sensors.org |
| 1553 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1554 | F: Documentation/hwmon/coretemp |
| 1555 | F: drivers/hwmon/coretemp.c |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1556 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | COSA/SRP SYNC SERIAL DRIVER |
| 1558 | P: Jan "Yenya" Kasprzak |
| 1559 | M: kas@fi.muni.cz |
| 1560 | W: http://www.fi.muni.cz/~kas/cosa/ |
| 1561 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1562 | F: drivers/net/wan/cosa* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1563 | |
Florian Fainelli | 4371ee3 | 2009-06-01 02:43:17 -0700 | [diff] [blame] | 1564 | CPMAC ETHERNET DRIVER |
| 1565 | P: Florian Fainelli |
| 1566 | M: florian@openwrt.org |
| 1567 | L: netdev@vger.kernel.org |
| 1568 | S: Maintained |
| 1569 | F: drivers/net/cpmac.c |
| 1570 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1571 | CPU FREQUENCY DRIVERS |
| 1572 | P: Dave Jones |
Dave Jones | f4432c5 | 2008-10-20 13:31:45 -0400 | [diff] [blame] | 1573 | M: davej@redhat.com |
Dave Jones | bc5f65d | 2008-07-31 18:22:59 -0400 | [diff] [blame] | 1574 | L: cpufreq@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | W: http://www.codemonkey.org.uk/projects/cpufreq/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1576 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1577 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1578 | F: arch/x86/kernel/cpu/cpufreq/ |
| 1579 | F: drivers/cpufreq/ |
| 1580 | F: include/linux/cpufreq.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1581 | |
| 1582 | CPUID/MSR DRIVER |
| 1583 | P: H. Peter Anvin |
| 1584 | M: hpa@zytor.com |
| 1585 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1586 | F: arch/x86/kernel/cpuid.c |
| 1587 | F: arch/x86/kernel/msr.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1588 | |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1589 | CPUSETS |
Paul Jackson | 6bffd7b | 2008-05-01 04:34:21 -0700 | [diff] [blame] | 1590 | P: Paul Menage |
Paul Jackson | 6bffd7b | 2008-05-01 04:34:21 -0700 | [diff] [blame] | 1591 | M: menage@google.com |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1592 | W: http://www.bullopensource.org/cpuset/ |
Paul Jackson | 551e172 | 2008-06-12 15:21:31 -0700 | [diff] [blame] | 1593 | W: http://oss.sgi.com/projects/cpusets/ |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1594 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1595 | F: Documentation/cgroups/cpusets.txt |
| 1596 | F: include/linux/cpuset.h |
| 1597 | F: kernel/cpuset.c |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1598 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1599 | CRAMFS FILESYSTEM |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 1600 | W: http://sourceforge.net/projects/cramfs/ |
| 1601 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1602 | F: Documentation/filesystems/cramfs.txt |
| 1603 | F: fs/cramfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1604 | |
| 1605 | CRIS PORT |
| 1606 | P: Mikael Starvik |
| 1607 | M: starvik@axis.com |
Jesper Nilsson | 0b07aa6 | 2008-01-25 13:22:29 +0100 | [diff] [blame] | 1608 | P: Jesper Nilsson |
| 1609 | M: jesper.nilsson@axis.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1610 | L: dev-etrax@axis.com |
| 1611 | W: http://developer.axis.com |
| 1612 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1613 | F: arch/cris/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1614 | |
| 1615 | CRYPTO API |
| 1616 | P: Herbert Xu |
| 1617 | M: herbert@gondor.apana.org.au |
| 1618 | P: David S. Miller |
| 1619 | M: davem@davemloft.net |
| 1620 | L: linux-crypto@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1621 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1622 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1623 | F: Documentation/crypto/ |
| 1624 | F: arch/*/crypto/ |
| 1625 | F: crypto/ |
| 1626 | F: drivers/crypto/ |
| 1627 | F: include/crypto/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1628 | |
Neil Horman | 5b07bd5 | 2009-02-05 16:03:04 +1100 | [diff] [blame] | 1629 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
| 1630 | P: Neil Horman |
| 1631 | M: nhorman@tuxdriver.com |
| 1632 | L: linux-crypto@vger.kernel.org |
| 1633 | S: Maintained |
| 1634 | |
Jaya Kumar | 9b4ffa4 | 2005-11-17 10:12:23 +0100 | [diff] [blame] | 1635 | CS5535 Audio ALSA driver |
| 1636 | P: Jaya Kumar |
| 1637 | M: jayakumar.alsa@gmail.com |
| 1638 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1639 | F: sound/pci/cs5535audio/ |
Jaya Kumar | 9b4ffa4 | 2005-11-17 10:12:23 +0100 | [diff] [blame] | 1640 | |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 1641 | CX18 VIDEO4LINUX DRIVER |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1642 | P: Hans Verkuil |
| 1643 | M: hverkuil@xs4all.nl |
| 1644 | P: Andy Walls |
| 1645 | M: awalls@radix.net |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 1646 | L: ivtv-devel@ivtvdriver.org |
| 1647 | L: ivtv-users@ivtvdriver.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 1648 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1649 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 1650 | W: http://linuxtv.org |
| 1651 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1652 | F: Documentation/video4linux/cx18.txt |
| 1653 | F: drivers/media/video/cx18/ |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 1654 | |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 1655 | CXGB3 ETHERNET DRIVER (CXGB3) |
| 1656 | P: Divy Le Ray |
| 1657 | M: divy@chelsio.com |
| 1658 | L: netdev@vger.kernel.org |
| 1659 | W: http://www.chelsio.com |
| 1660 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1661 | F: drivers/net/cxgb3/ |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 1662 | |
| 1663 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) |
| 1664 | P: Steve Wise |
| 1665 | M: swise@chelsio.com |
| 1666 | L: general@lists.openfabrics.org |
| 1667 | W: http://www.openfabrics.org |
| 1668 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1669 | F: drivers/infiniband/hw/cxgb3/ |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 1670 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1671 | CYBERPRO FB DRIVER |
| 1672 | P: Russell King |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1673 | M: linux@arm.linux.org.uk |
| 1674 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1675 | W: http://www.arm.linux.org.uk/ |
| 1676 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1677 | F: drivers/video/cyber2000fb.* |
Knut Petersen | 9fa68ea | 2005-09-09 13:04:56 -0700 | [diff] [blame] | 1678 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1679 | CYCLADES 2X SYNC CARD DRIVER |
| 1680 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 1681 | M: acme@ghostprotocols.net |
| 1682 | W: http://oops.ghostprotocols.net:81/blog |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1683 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1684 | F: drivers/net/wan/cycx* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1685 | |
| 1686 | CYCLADES ASYNC MUX DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1687 | W: http://www.cyclades.com/ |
Jiri Slaby | d459883 | 2007-02-12 00:51:53 -0800 | [diff] [blame] | 1688 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1689 | F: drivers/char/cyclades.c |
| 1690 | F: include/linux/cyclades.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1691 | |
| 1692 | CYCLADES PC300 DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1693 | W: http://www.cyclades.com/ |
Jiri Slaby | d459883 | 2007-02-12 00:51:53 -0800 | [diff] [blame] | 1694 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1695 | F: drivers/net/wan/pc300* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1697 | DAMA SLAVE for AX.25 |
| 1698 | P: Joerg Reuter |
| 1699 | M: jreuter@yaina.de |
| 1700 | W: http://yaina.de/jreuter/ |
| 1701 | W: http://www.qsl.net/dl1bke/ |
| 1702 | L: linux-hams@vger.kernel.org |
| 1703 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1704 | F: net/ax25/af_ax25.c |
| 1705 | F: net/ax25/ax25_dev.c |
| 1706 | F: net/ax25/ax25_ds_* |
| 1707 | F: net/ax25/ax25_in.c |
| 1708 | F: net/ax25/ax25_out.c |
| 1709 | F: net/ax25/ax25_timer.c |
| 1710 | F: net/ax25/sysctl_net_ax25.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1711 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1712 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
| 1713 | P: Tobias Ringstrom |
| 1714 | M: tori@unhappy.mine.nu |
| 1715 | L: netdev@vger.kernel.org |
| 1716 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1717 | F: Documentation/networking/dmfe.txt |
| 1718 | F: drivers/net/tulip/dmfe.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1719 | |
| 1720 | DC390/AM53C974 SCSI driver |
| 1721 | P: Kurt Garloff |
| 1722 | M: garloff@suse.de |
| 1723 | W: http://www.garloff.de/kurt/linux/dc390/ |
| 1724 | P: Guennadi Liakhovetski |
| 1725 | M: g.liakhovetski@gmx.de |
| 1726 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1727 | F: drivers/scsi/tmscsim.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1728 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1729 | DC395x SCSI driver |
| 1730 | P: Oliver Neukum |
| 1731 | M: oliver@neukum.name |
| 1732 | P: Ali Akcaagac |
| 1733 | M: aliakc@web.de |
| 1734 | P: Jamie Lenehan |
| 1735 | M: lenehan@twibble.org |
| 1736 | W: http://twibble.org/dist/dc395x/ |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 1737 | L: dc395x@twibble.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1738 | L: http://lists.twibble.org/mailman/listinfo/dc395x/ |
| 1739 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1740 | F: Documentation/scsi/dc395x.txt |
| 1741 | F: drivers/scsi/dc395x.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1742 | |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1743 | DCCP PROTOCOL |
| 1744 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 1745 | M: acme@ghostprotocols.net |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1746 | L: dccp@vger.kernel.org |
Ian McDonald | f3b84ec | 2005-11-10 13:05:01 -0800 | [diff] [blame] | 1747 | W: http://linux-net.osdl.org/index.php/DCCP |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1748 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1749 | F: include/linux/dccp.h |
| 1750 | F: include/linux/tfrc.h |
| 1751 | F: net/dccp/ |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1752 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | DECnet NETWORK LAYER |
Christine Caulfield | 8943f26 | 2008-02-14 19:31:31 -0800 | [diff] [blame] | 1754 | P: Christine Caulfield |
| 1755 | M: christine.caulfield@googlemail.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | W: http://linux-decnet.sourceforge.net |
| 1757 | L: linux-decnet-user@lists.sourceforge.net |
| 1758 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1759 | F: Documentation/networking/decnet.txt |
| 1760 | F: net/decnet/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1761 | |
| 1762 | DEFXX FDDI NETWORK DRIVER |
| 1763 | P: Maciej W. Rozycki |
| 1764 | M: macro@linux-mips.org |
| 1765 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1766 | F: drivers/net/defxx.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1767 | |
Matthew Garrett | ad8f07c | 2009-01-07 18:08:56 -0800 | [diff] [blame] | 1768 | DELL LAPTOP DRIVER |
| 1769 | P: Matthew Garrett |
| 1770 | M: mjg59@srcf.ucam.org |
| 1771 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1772 | F: drivers/platform/x86/dell-laptop.c |
Matthew Garrett | ad8f07c | 2009-01-07 18:08:56 -0800 | [diff] [blame] | 1773 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1774 | DELL LAPTOP SMM DRIVER |
| 1775 | P: Massimo Dal Zotto |
| 1776 | M: dz@debian.org |
| 1777 | W: http://www.debian.org/~dz/i8k/ |
| 1778 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1779 | F: drivers/char/i8k.c |
| 1780 | F: include/linux/i8k.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1781 | |
Doug Warzecha | 90563ec | 2005-09-06 15:17:15 -0700 | [diff] [blame] | 1782 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
| 1783 | P: Doug Warzecha |
| 1784 | M: Douglas_Warzecha@dell.com |
| 1785 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1786 | F: Documentation/dcdbas.txt |
| 1787 | F: drivers/firmware/dcdbas.* |
Doug Warzecha | 90563ec | 2005-09-06 15:17:15 -0700 | [diff] [blame] | 1788 | |
Matthew Garrett | 0b3f610 | 2009-01-09 20:17:11 +0000 | [diff] [blame] | 1789 | DELL WMI EXTRAS DRIVER |
| 1790 | P: Matthew Garrett |
| 1791 | M: mjg59@srcf.ucam.org |
| 1792 | S: Maintained |
| 1793 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1794 | DEVICE NUMBER REGISTRY |
| 1795 | P: Torben Mathiasen |
| 1796 | M: device@lanana.org |
| 1797 | W: http://lanana.org/docs/device-list/index.html |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1798 | S: Maintained |
| 1799 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1800 | DEVICE-MAPPER (LVM) |
| 1801 | P: Alasdair Kergon |
| 1802 | L: dm-devel@redhat.com |
| 1803 | W: http://sources.redhat.com/dm |
| 1804 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1805 | F: Documentation/device-mapper/ |
| 1806 | F: drivers/md/dm* |
| 1807 | F: include/linux/device-mapper.h |
| 1808 | F: include/linux/dm-*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1809 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1810 | DIGI INTL. EPCA DRIVER |
| 1811 | P: Digi International, Inc |
| 1812 | M: Eng.Linux@digi.com |
| 1813 | L: Eng.Linux@digi.com |
| 1814 | W: http://www.digi.com |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 1815 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1816 | F: Documentation/serial/digiepca.txt |
| 1817 | F: drivers/char/epca* |
| 1818 | F: drivers/char/digi* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1819 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 1820 | DIRECTORY NOTIFICATION (DNOTIFY) |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 1821 | P: Eric Paris |
| 1822 | M: eparis@parisplace.org |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 1823 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1824 | F: Documentation/filesystems/dnotify.txt |
| 1825 | F: fs/notify/dnotify/ |
| 1826 | F: include/linux/dnotify.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1827 | |
| 1828 | DISK GEOMETRY AND PARTITION HANDLING |
| 1829 | P: Andries Brouwer |
| 1830 | M: aeb@cwi.nl |
| 1831 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
| 1832 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html |
| 1833 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html |
| 1834 | S: Maintained |
| 1835 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 1836 | DISKQUOTA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1837 | P: Jan Kara |
| 1838 | M: jack@suse.cz |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1840 | F: Documentation/filesystems/quota.txt |
| 1841 | F: fs/quota/ |
| 1842 | F: include/linux/quota*.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1843 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 1844 | DISTRIBUTED LOCK MANAGER (DLM) |
Christine Caulfield | 8943f26 | 2008-02-14 19:31:31 -0800 | [diff] [blame] | 1845 | P: Christine Caulfield |
| 1846 | M: ccaulfie@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1847 | P: David Teigland |
| 1848 | M: teigland@redhat.com |
David Teigland | a464418 | 2006-06-22 15:29:57 -0400 | [diff] [blame] | 1849 | L: cluster-devel@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1850 | W: http://sources.redhat.com/cluster/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1851 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1852 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1853 | F: fs/dlm/ |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1854 | |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1855 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 1856 | P: Maciej Sosnowski |
| 1857 | M: maciej.sosnowski@intel.com |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1858 | P: Dan Williams |
| 1859 | M: dan.j.williams@intel.com |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1860 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1861 | F: drivers/dma/ |
| 1862 | F: include/linux/dma* |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 1863 | |
Juerg Haefliger | b825037 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 1864 | DME1737 HARDWARE MONITOR DRIVER |
| 1865 | P: Juerg Haefliger |
| 1866 | M: juergh@gmail.com |
| 1867 | L: lm-sensors@lm-sensors.org |
| 1868 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1869 | F: Documentation/hwmon/dme1737 |
| 1870 | F: drivers/hwmon/dme1737.c |
Juerg Haefliger | b825037 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 1871 | |
Martin Waitz | ba483d5 | 2005-06-17 13:20:59 -0700 | [diff] [blame] | 1872 | DOCBOOK FOR DOCUMENTATION |
Randy Dunlap | 0f40efb | 2006-07-03 00:24:15 -0700 | [diff] [blame] | 1873 | P: Randy Dunlap |
| 1874 | M: rdunlap@xenotime.net |
Martin Waitz | ba483d5 | 2005-06-17 13:20:59 -0700 | [diff] [blame] | 1875 | S: Maintained |
| 1876 | |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 1877 | DOCKING STATION DRIVER |
Len Brown | c5d191b | 2008-09-24 02:53:25 -0400 | [diff] [blame] | 1878 | P: Shaohua Li |
| 1879 | M: shaohua.li@intel.com |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 1880 | L: linux-acpi@vger.kernel.org |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 1881 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1882 | F: drivers/acpi/dock.c |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 1883 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1884 | DOCUMENTATION |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 1885 | P: Randy Dunlap |
| 1886 | M: rdunlap@xenotime.net |
| 1887 | L: linux-doc@vger.kernel.org |
| 1888 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1889 | F: Documentation/ |
Randy Dunlap | abbaeff | 2008-07-04 09:59:57 -0700 | [diff] [blame] | 1890 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1891 | DOUBLETALK DRIVER |
| 1892 | P: James R. Van Zandt |
| 1893 | M: jrv@vanzandt.mv.com |
| 1894 | L: blinux-list@redhat.com |
| 1895 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1896 | F: drivers/char/dtlk.c |
| 1897 | F: include/linux/dtlk.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1898 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1899 | DPT_I2O SCSI RAID DRIVER |
| 1900 | P: Adaptec OEM Raid Solutions |
| 1901 | M: aacraid@adaptec.com |
| 1902 | L: linux-scsi@vger.kernel.org |
| 1903 | W: http://www.adaptec.com/ |
| 1904 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1905 | F: drivers/scsi/dpt* |
| 1906 | F: drivers/scsi/dpt/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1907 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | DRIVER CORE, KOBJECTS, AND SYSFS |
| 1909 | P: Greg Kroah-Hartman |
| 1910 | M: gregkh@suse.de |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 1911 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1912 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1913 | F: Documentation/kobject.txt |
Joe Perches | 7cfc51b | 2009-04-08 10:04:18 -0700 | [diff] [blame] | 1914 | F: drivers/base/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1915 | F: fs/sysfs/ |
| 1916 | F: include/linux/kobj* |
| 1917 | F: lib/kobj* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1918 | |
| 1919 | DRM DRIVERS |
| 1920 | P: David Airlie |
| 1921 | M: airlied@linux.ie |
| 1922 | L: dri-devel@lists.sourceforge.net |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1923 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1924 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1925 | F: drivers/gpu/drm/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1926 | |
| 1927 | DSCC4 DRIVER |
Francois Romieu | 01f2073 | 2007-01-26 00:57:17 -0800 | [diff] [blame] | 1928 | P: Francois Romieu |
| 1929 | M: romieu@fr.zoreil.com |
| 1930 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1931 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1932 | F: drivers/net/wan/dscc4.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1933 | |
Maciej W. Rozycki | 789c704 | 2008-02-07 00:15:13 -0800 | [diff] [blame] | 1934 | DZ DECSTATION DZ11 SERIAL DRIVER |
| 1935 | P: Maciej W. Rozycki |
| 1936 | M: macro@linux-mips.org |
| 1937 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1938 | F: drivers/serial/dz.* |
Maciej W. Rozycki | 789c704 | 2008-02-07 00:15:13 -0800 | [diff] [blame] | 1939 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1940 | EATA-DMA SCSI DRIVER |
| 1941 | P: Michael Neuffer |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1942 | M: mike@i-Connect.Net |
| 1943 | L: linux-eata@i-connect.net |
| 1944 | L: linux-scsi@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1945 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1946 | F: drivers/scsi/eata* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1947 | |
| 1948 | EATA ISA/EISA/PCI SCSI DRIVER |
| 1949 | P: Dario Ballabio |
| 1950 | M: ballabio_dario@emc.com |
| 1951 | L: linux-scsi@vger.kernel.org |
| 1952 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1953 | F: drivers/scsi/eata.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1954 | |
| 1955 | EATA-PIO SCSI DRIVER |
| 1956 | P: Michael Neuffer |
| 1957 | M: mike@i-Connect.Net |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1958 | L: linux-eata@i-connect.net |
| 1959 | L: linux-scsi@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1960 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1961 | F: drivers/scsi/eata_pio.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1962 | |
| 1963 | EBTABLES |
| 1964 | P: Bart De Schuymer |
| 1965 | M: bart.de.schuymer@pandora.be |
| 1966 | L: ebtables-user@lists.sourceforge.net |
| 1967 | L: ebtables-devel@lists.sourceforge.net |
| 1968 | W: http://ebtables.sourceforge.net/ |
| 1969 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1970 | F: include/linux/netfilter_bridge/ebt_*.h |
| 1971 | F: net/bridge/netfilter/ebt*.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1972 | |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 1973 | ECRYPT FILE SYSTEM |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1974 | P: Tyler Hicks |
| 1975 | M: tyhicks@linux.vnet.ibm.com |
Joe Perches | 866a36b | 2009-06-16 15:34:05 -0700 | [diff] [blame] | 1976 | P: Dustin Kirkland |
| 1977 | M: kirkland@canonical.com |
Michael Halcrow | 6dc7516 | 2008-12-15 13:54:17 -0800 | [diff] [blame] | 1978 | L: ecryptfs-devel@lists.launchpad.net |
| 1979 | W: https://launchpad.net/ecryptfs |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 1980 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1981 | F: Documentation/filesystems/ecryptfs.txt |
| 1982 | F: fs/ecryptfs/ |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 1983 | |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 1984 | EDAC-CORE |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1985 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 1986 | M: dougthompson@xmission.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 1987 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1988 | W: bluesmoke.sourceforge.net |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 1989 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1990 | F: Documentation/edac.txt |
| 1991 | F: drivers/edac/edac_* |
| 1992 | F: include/linux/edac.h |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1993 | |
Borislav Petkov | c476c23 | 2009-05-20 20:31:58 +0200 | [diff] [blame] | 1994 | EDAC-AMD64 |
| 1995 | P: Doug Thompson |
| 1996 | M: dougthompson@xmission.com |
| 1997 | P: Borislav Petkov |
| 1998 | M: borislav.petkov@amd.com |
| 1999 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 2000 | W: bluesmoke.sourceforge.net |
| 2001 | S: Supported |
| 2002 | F: drivers/edac/amd64_edac* |
| 2003 | |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2004 | EDAC-E752X |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 2005 | P: Mark Gross |
| 2006 | M: mark.gross@intel.com |
Joe Perches | 681a1b4 | 2009-05-28 14:34:18 -0700 | [diff] [blame] | 2007 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2008 | M: dougthompson@xmission.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2009 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2010 | W: bluesmoke.sourceforge.net |
| 2011 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2012 | F: drivers/edac/e752x_edac.c |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2013 | |
| 2014 | EDAC-E7XXX |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 2015 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2016 | M: dougthompson@xmission.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2017 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2018 | W: bluesmoke.sourceforge.net |
| 2019 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2020 | F: drivers/edac/e7xxx_edac.c |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2021 | |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2022 | EDAC-I82443BXGX |
| 2023 | P: Tim Small |
| 2024 | M: tim@buttersideup.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2025 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2026 | W: bluesmoke.sourceforge.net |
| 2027 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2028 | F: drivers/edac/i82443bxgx_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2029 | |
| 2030 | EDAC-I3000 |
| 2031 | P: Jason Uhlenkott |
| 2032 | M: juhlenko@akamai.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2033 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2034 | W: bluesmoke.sourceforge.net |
| 2035 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2036 | F: drivers/edac/i3000_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2037 | |
| 2038 | EDAC-I5000 |
| 2039 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2040 | M: dougthompson@xmission.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2041 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2042 | W: bluesmoke.sourceforge.net |
| 2043 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2044 | F: drivers/edac/i5000_edac.c |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2045 | |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 2046 | EDAC-I5400 |
| 2047 | P: Mauro Carvalho Chehab |
| 2048 | M: mchehab@redhat.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2049 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 2050 | W: bluesmoke.sourceforge.net |
| 2051 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2052 | F: drivers/edac/i5400_edac.c |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 2053 | |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2054 | EDAC-I82975X |
| 2055 | P: Ranganathan Desikan |
| 2056 | P: Arvind R. |
| 2057 | M: rdesikan@jetzbroadband.com |
| 2058 | M: arvind@acarlab.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2059 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2060 | W: bluesmoke.sourceforge.net |
| 2061 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2062 | F: drivers/edac/i82975x_edac.c |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2063 | |
| 2064 | EDAC-PASEMI |
| 2065 | P: Egor Martovetsky |
| 2066 | M: egor@pasemi.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2067 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2068 | W: bluesmoke.sourceforge.net |
| 2069 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2070 | F: drivers/edac/pasemi_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2071 | |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2072 | EDAC-R82600 |
| 2073 | P: Tim Small |
| 2074 | M: tim@buttersideup.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2075 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2076 | W: bluesmoke.sourceforge.net |
| 2077 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2078 | F: drivers/edac/r82600_edac.c |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 2079 | |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 2080 | EEEPC LAPTOP EXTRAS DRIVER |
| 2081 | P: Corentin Chary |
| 2082 | M: corentincj@iksaif.net |
| 2083 | L: acpi4asus-user@lists.sourceforge.net |
| 2084 | W: http://sourceforge.net/projects/acpi4asus |
| 2085 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2086 | F: drivers/platform/x86/eeepc-laptop.c |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 2087 | |
Josh Triplett | 0bee8d2 | 2006-07-30 03:03:58 -0700 | [diff] [blame] | 2088 | EFS FILESYSTEM |
| 2089 | W: http://aeschi.ch.eu.org/efs/ |
| 2090 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2091 | F: fs/efs/ |
Josh Triplett | 0bee8d2 | 2006-07-30 03:03:58 -0700 | [diff] [blame] | 2092 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 2093 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 2094 | P: Hoang-Nam Nguyen |
| 2095 | M: hnguyen@de.ibm.com |
| 2096 | P: Christoph Raisch |
| 2097 | M: raisch@de.ibm.com |
Roland Dreier | 7852682 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 2098 | L: general@lists.openfabrics.org |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 2099 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2100 | F: drivers/infiniband/hw/ehca/ |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 2101 | |
David Woodhouse | 3e3a7d6 | 2008-05-01 04:34:46 -0700 | [diff] [blame] | 2102 | EMBEDDED LINUX |
| 2103 | P: Paul Gortmaker |
| 2104 | M: paul.gortmaker@windriver.com |
Matt Mackall | 0f24922 | 2009-04-21 12:24:47 -0700 | [diff] [blame] | 2105 | P: Matt Mackall |
| 2106 | M: mpm@selenic.com |
Uwe Kleine-König | a46add7 | 2008-09-09 00:11:39 +0200 | [diff] [blame] | 2107 | P: David Woodhouse |
David Woodhouse | 3e3a7d6 | 2008-05-01 04:34:46 -0700 | [diff] [blame] | 2108 | M: dwmw2@infradead.org |
| 2109 | L: linux-embedded@vger.kernel.org |
| 2110 | S: Maintained |
| 2111 | |
James.Smart@Emulex.Com | 3a1c1d4 | 2005-08-11 13:42:35 -0400 | [diff] [blame] | 2112 | EMULEX LPFC FC SCSI DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2113 | P: James Smart |
| 2114 | M: james.smart@emulex.com |
| 2115 | L: linux-scsi@vger.kernel.org |
| 2116 | W: http://sourceforge.net/projects/lpfcxxxx |
| 2117 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2118 | F: drivers/scsi/lpfc/ |
James.Smart@Emulex.Com | 3a1c1d4 | 2005-08-11 13:42:35 -0400 | [diff] [blame] | 2119 | |
Michał Mirosław | 5f5bac8 | 2009-05-22 20:33:59 +0200 | [diff] [blame] | 2120 | ENE CB710 FLASH CARD READER DRIVER |
| 2121 | P: Michał Mirosław |
| 2122 | M: mirq-linux@rere.qmqm.pl |
| 2123 | L: linux-kernel@vger.kernel.org |
| 2124 | S: Maintained |
| 2125 | F: drivers/misc/cb710/ |
| 2126 | F: drivers/mmc/host/cb710-mmc.* |
| 2127 | F: include/linux/cb710.h |
| 2128 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2129 | EPSON 1355 FRAMEBUFFER DRIVER |
| 2130 | P: Christopher Hoover |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2131 | M: ch@murgatroid.com |
| 2132 | P: Christopher Hoover |
| 2133 | M: ch@hpl.hp.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2134 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2135 | F: drivers/video/epson1355fb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2136 | |
Kristoffer Ericson | d5ca900 | 2008-10-15 22:03:54 -0700 | [diff] [blame] | 2137 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
| 2138 | P: Kristoffer Ericson |
| 2139 | M: kristoffer.ericson@gmail.com |
| 2140 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2141 | F: drivers/video/s1d13xxxfb.c |
| 2142 | F: include/video/s1d13xxxfb.h |
Kristoffer Ericson | d5ca900 | 2008-10-15 22:03:54 -0700 | [diff] [blame] | 2143 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2144 | ETHEREXPRESS-16 NETWORK DRIVER |
| 2145 | P: Philip Blundell |
| 2146 | M: philb@gnu.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 2147 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2148 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2149 | F: drivers/net/eexpress.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2150 | |
| 2151 | ETHERNET BRIDGE |
| 2152 | P: Stephen Hemminger |
Stephen Hemminger | 65ebe634 | 2007-01-23 11:38:57 -0800 | [diff] [blame] | 2153 | M: shemminger@linux-foundation.org |
David Brownell | f318a63 | 2007-04-23 14:41:06 -0700 | [diff] [blame] | 2154 | L: bridge@lists.linux-foundation.org |
Adrian Bunk | 57c511d | 2008-06-03 16:00:01 -0700 | [diff] [blame] | 2155 | W: http://www.linux-foundation.org/en/Net:Bridge |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2156 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2157 | F: include/linux/netfilter_bridge/ |
| 2158 | F: net/bridge/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2159 | |
| 2160 | ETHERTEAM 16I DRIVER |
| 2161 | P: Mika Kuoppala |
| 2162 | M: miku@iki.fi |
| 2163 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2164 | F: drivers/net/eth16i.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2165 | |
| 2166 | EXT2 FILE SYSTEM |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2167 | L: linux-ext4@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2168 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2169 | F: Documentation/filesystems/ext2.txt |
| 2170 | F: fs/ext2/ |
| 2171 | F: include/linux/ext2* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2172 | |
| 2173 | EXT3 FILE SYSTEM |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2174 | P: Stephen Tweedie |
| 2175 | M: sct@redhat.com |
| 2176 | P: Andrew Morton |
| 2177 | M: akpm@linux-foundation.org |
| 2178 | P: Andreas Dilger |
| 2179 | M: adilger@sun.com |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2180 | L: linux-ext4@vger.kernel.org |
| 2181 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2182 | F: Documentation/filesystems/ext3.txt |
| 2183 | F: fs/ext3/ |
| 2184 | F: include/linux/ext3* |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2185 | |
| 2186 | EXT4 FILE SYSTEM |
Theodore Ts'o | 08a225f | 2008-10-06 20:58:09 -0400 | [diff] [blame] | 2187 | P: Theodore Ts'o |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2188 | M: tytso@mit.edu |
| 2189 | P: Andreas Dilger |
| 2190 | M: adilger@sun.com |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2191 | L: linux-ext4@vger.kernel.org |
Theodore Ts'o | 08a225f | 2008-10-06 20:58:09 -0400 | [diff] [blame] | 2192 | W: http://ext4.wiki.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2193 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2194 | F: Documentation/filesystems/ext4.txt |
| 2195 | F: fs/ext4/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2196 | |
Jean Delvare | e53004e | 2006-01-09 23:26:14 +0100 | [diff] [blame] | 2197 | F71805F HARDWARE MONITORING DRIVER |
| 2198 | P: Jean Delvare |
| 2199 | M: khali@linux-fr.org |
| 2200 | L: lm-sensors@lm-sensors.org |
| 2201 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2202 | F: Documentation/hwmon/f71805f |
| 2203 | F: drivers/hwmon/f71805f.c |
Jean Delvare | e53004e | 2006-01-09 23:26:14 +0100 | [diff] [blame] | 2204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2205 | FARSYNC SYNCHRONOUS DRIVER |
| 2206 | P: Kevin Curtis |
| 2207 | M: kevin.curtis@farsite.co.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2208 | W: http://www.farsite.co.uk/ |
| 2209 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2210 | F: drivers/net/wan/farsync.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | |
Akinobu Mita | c5408b8 | 2007-04-23 14:41:20 -0700 | [diff] [blame] | 2212 | FAULT INJECTION SUPPORT |
| 2213 | P: Akinobu Mita |
| 2214 | M: akinobu.mita@gmail.com |
| 2215 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2216 | F: Documentation/fault-injection/ |
| 2217 | F: lib/fault-inject.c |
Akinobu Mita | c5408b8 | 2007-04-23 14:41:20 -0700 | [diff] [blame] | 2218 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2219 | FILE LOCKING (flock() and fcntl()/lockf()) |
| 2220 | P: Matthew Wilcox |
| 2221 | M: matthew@wil.cx |
| 2222 | L: linux-fsdevel@vger.kernel.org |
| 2223 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2224 | F: include/linux/fcntl.h |
| 2225 | F: include/linux/fs.h |
| 2226 | F: fs/fcntl.c |
| 2227 | F: fs/locks.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2228 | |
| 2229 | FILESYSTEMS (VFS and infrastructure) |
| 2230 | P: Alexander Viro |
| 2231 | M: viro@zeniv.linux.org.uk |
| 2232 | L: linux-fsdevel@vger.kernel.org |
| 2233 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2234 | F: fs/* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2235 | |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 2236 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
| 2237 | P: Riku Voipio |
| 2238 | M: riku.vipio@iki.fi |
| 2239 | L: lm-sensors@lm-sensors.org |
| 2240 | S: Maintained |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 2241 | F: drivers/hwmon/f75375s.c |
| 2242 | F: include/linux/f75375s.h |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 2243 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2244 | FIREWIRE SUBSYSTEM |
| 2245 | P: Kristian Hoegsberg |
| 2246 | M: krh@redhat.com |
| 2247 | P: Stefan Richter |
| 2248 | M: stefanr@s5r6.in-berlin.de |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2249 | L: linux1394-devel@lists.sourceforge.net |
| 2250 | W: http://www.linux1394.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2251 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2252 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2253 | F: drivers/firewire/ |
| 2254 | F: include/linux/firewire*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2255 | |
| 2256 | FIRMWARE LOADER (request_firmware) |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2257 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2258 | F: Documentation/firmware_class/ |
| 2259 | F: drivers/base/firmware*.c |
| 2260 | F: include/linux/firmware.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2261 | |
| 2262 | FPU EMULATOR |
| 2263 | P: Bill Metzenthen |
Joe Perches | e769980 | 2009-04-07 21:12:18 -0700 | [diff] [blame] | 2264 | M: billm@melbpc.org.au |
| 2265 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2266 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2267 | F: arch/x86/math-emu/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2268 | |
| 2269 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) |
| 2270 | P: Mike McLagan |
| 2271 | M: mike.mclagan@linux.org |
| 2272 | L: netdev@vger.kernel.org |
| 2273 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2274 | F: drivers/net/wan/dlci.c |
| 2275 | F: drivers/net/wan/sdla.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2276 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2277 | FRAMEBUFFER LAYER |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2278 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2279 | W: http://linux-fbdev.sourceforge.net/ |
Andrew Morton | 36025a8 | 2009-06-17 16:25:56 -0700 | [diff] [blame] | 2280 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2281 | F: Documentation/fb/ |
| 2282 | F: drivers/video/fb* |
| 2283 | F: include/linux/fb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2284 | |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 2285 | FREESCALE DMA DRIVER |
Zhang Wei | 76b0c788 | 2008-05-13 14:44:59 -0700 | [diff] [blame] | 2286 | P: Li Yang |
| 2287 | M: leoli@freescale.com |
| 2288 | P: Zhang Wei |
| 2289 | M: zw@zh-kernel.org |
Li Yang | 0899d63 | 2009-05-22 16:39:59 +0800 | [diff] [blame] | 2290 | L: linuxppc-dev@ozlabs.org |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 2291 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2292 | F: drivers/dma/fsldma.* |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 2293 | |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 2294 | FREESCALE I2C CPM DRIVER |
| 2295 | P: Jochen Friedrich |
| 2296 | M: jochen@scram.de |
| 2297 | L: linuxppc-dev@ozlabs.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 2298 | L: linux-i2c@vger.kernel.org |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 2299 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2300 | F: drivers/i2c/busses/i2c-cpm.c |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 2301 | |
Sascha Hauer | 60e8c5a | 2008-12-16 11:44:06 +0100 | [diff] [blame] | 2302 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
| 2303 | P: Sascha Hauer |
| 2304 | M: kernel@pengutronix.de |
| 2305 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 2306 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 2307 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2308 | F: arch/arm/plat-mxc/include/mach/imxfb.h |
| 2309 | F: drivers/video/imxfb.c |
Sascha Hauer | 60e8c5a | 2008-12-16 11:44:06 +0100 | [diff] [blame] | 2310 | |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 2311 | FREESCALE SOC FS_ENET DRIVER |
| 2312 | P: Pantelis Antoniou |
| 2313 | M: pantelis.antoniou@gmail.com |
| 2314 | P: Vitaly Bordug |
| 2315 | M: vbordug@ru.mvista.com |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2316 | L: linuxppc-dev@ozlabs.org |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 2317 | L: netdev@vger.kernel.org |
| 2318 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2319 | F: drivers/net/fs_enet/ |
| 2320 | F: include/linux/fs_enet_pd.h |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 2321 | |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2322 | FREESCALE QUICC ENGINE LIBRARY |
| 2323 | P: Timur Tabi |
| 2324 | M: timur@freescale.com |
| 2325 | L: linuxppc-dev@ozlabs.org |
| 2326 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2327 | F: arch/powerpc/sysdev/qe_lib/ |
| 2328 | F: arch/powerpc/include/asm/*qe.h |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2329 | |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 2330 | FREESCALE HIGHSPEED USB DEVICE DRIVER |
| 2331 | P: Li Yang |
| 2332 | M: leoli@freescale.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 2333 | L: linux-usb@vger.kernel.org |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2334 | L: linuxppc-dev@ozlabs.org |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 2335 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2336 | F: drivers/usb/gadget/fsl_usb2_udc.c |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 2337 | |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 2338 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
| 2339 | P: Li Yang |
| 2340 | M: leoli@freescale.com |
| 2341 | L: netdev@vger.kernel.org |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2342 | L: linuxppc-dev@ozlabs.org |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 2343 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2344 | F: drivers/net/ucc_geth* |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 2345 | |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2346 | FREESCALE QUICC ENGINE UCC UART DRIVER |
| 2347 | P: Timur Tabi |
| 2348 | M: timur@freescale.com |
| 2349 | L: linuxppc-dev@ozlabs.org |
| 2350 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2351 | F: drivers/serial/ucc_uart.c |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2352 | |
| 2353 | FREESCALE SOC SOUND DRIVERS |
| 2354 | P: Timur Tabi |
| 2355 | M: timur@freescale.com |
Joe Perches | 9371166 | 2009-06-16 15:34:07 -0700 | [diff] [blame] | 2356 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2357 | L: linuxppc-dev@ozlabs.org |
| 2358 | S: Supported |
Joe Perches | 69aefce | 2009-04-09 10:39:22 -0700 | [diff] [blame] | 2359 | F: sound/soc/fsl/fsl* |
| 2360 | F: sound/soc/fsl/mpc8610_hpcd.c |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2361 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2362 | FREEVXFS FILESYSTEM |
| 2363 | P: Christoph Hellwig |
| 2364 | M: hch@infradead.org |
| 2365 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
| 2366 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2367 | F: fs/freevxfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2368 | |
Pavel Machek | 71038f5 | 2009-01-15 13:51:02 -0800 | [diff] [blame] | 2369 | FREEZER |
| 2370 | P: Pavel Machek |
Pavel Machek | b6e731d | 2009-05-30 00:58:41 +0200 | [diff] [blame] | 2371 | M: pavel@ucw.cz |
Pavel Machek | 71038f5 | 2009-01-15 13:51:02 -0800 | [diff] [blame] | 2372 | P: Rafael J. Wysocki |
| 2373 | M: rjw@sisk.pl |
| 2374 | L: linux-pm@lists.linux-foundation.org |
| 2375 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2376 | F: Documentation/power/freezing-of-tasks.txt |
| 2377 | F: include/linux/freezer.h |
| 2378 | F: kernel/freezer.c |
Pavel Machek | 71038f5 | 2009-01-15 13:51:02 -0800 | [diff] [blame] | 2379 | |
David Howells | a5432f5 | 2009-04-20 15:46:45 +0100 | [diff] [blame] | 2380 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
| 2381 | P: David Howells |
| 2382 | M: dhowells@redhat.com |
| 2383 | L: linux-cachefs@redhat.com |
| 2384 | S: Supported |
| 2385 | F: Documentation/filesystems/caching/ |
| 2386 | F: fs/fscache/ |
| 2387 | F: include/linux/fscache*.h |
| 2388 | |
Steven Rostedt | de3b69d | 2008-07-15 13:28:14 -0400 | [diff] [blame] | 2389 | FTRACE |
| 2390 | P: Steven Rostedt |
Steven Rostedt | 8e324c1 | 2008-11-19 15:36:43 -0800 | [diff] [blame] | 2391 | M: rostedt@goodmis.org |
Steven Rostedt | de3b69d | 2008-07-15 13:28:14 -0400 | [diff] [blame] | 2392 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2393 | F: Documentation/ftrace.txt |
| 2394 | F: arch/*/*/*/ftrace.h |
| 2395 | F: arch/*/kernel/ftrace.c |
| 2396 | F: include/*/ftrace.h |
| 2397 | F: kernel/trace/ |
Steven Rostedt | de3b69d | 2008-07-15 13:28:14 -0400 | [diff] [blame] | 2398 | |
David Howells | 5ab7ffe | 2007-04-10 15:10:45 +0100 | [diff] [blame] | 2399 | FUJITSU FR-V (FRV) PORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2400 | P: David Howells |
| 2401 | M: dhowells@redhat.com |
| 2402 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2403 | F: arch/frv/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2404 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 2405 | FUJITSU LAPTOP EXTRAS |
| 2406 | P: Jonathan Woithe |
| 2407 | M: jwoithe@physics.adelaide.edu.au |
| 2408 | L: linux-acpi@vger.kernel.org |
| 2409 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2410 | F: drivers/platform/x86/fujitsu-laptop.c |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 2411 | |
Miklos Szeredi | 04578f1 | 2005-09-09 13:10:22 -0700 | [diff] [blame] | 2412 | FUSE: FILESYSTEM IN USERSPACE |
| 2413 | P: Miklos Szeredi |
| 2414 | M: miklos@szeredi.hu |
| 2415 | L: fuse-devel@lists.sourceforge.net |
| 2416 | W: http://fuse.sourceforge.net/ |
| 2417 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2418 | F: fs/fuse/ |
| 2419 | F: include/linux/fuse.h |
Miklos Szeredi | 04578f1 | 2005-09-09 13:10:22 -0700 | [diff] [blame] | 2420 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2421 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
| 2422 | P: Rik Faith |
| 2423 | M: faith@cs.unc.edu |
| 2424 | L: linux-scsi@vger.kernel.org |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 2425 | S: Odd Fixes (e.g., new signatures) |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2426 | F: drivers/scsi/fdomain.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2427 | |
| 2428 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
| 2429 | P: Achim Leubner |
| 2430 | M: achim_leubner@adaptec.com |
| 2431 | L: linux-scsi@vger.kernel.org |
| 2432 | W: http://www.icp-vortex.com/ |
| 2433 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2434 | F: drivers/scsi/gdt* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2435 | |
Haavard Skinnemoen | 1c23af9 | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 2436 | GENERIC GPIO I2C DRIVER |
| 2437 | P: Haavard Skinnemoen |
| 2438 | M: hskinnemoen@atmel.com |
| 2439 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2440 | F: drivers/i2c/busses/i2c-gpio.c |
| 2441 | F: include/linux/i2c-gpio.h |
Haavard Skinnemoen | 1c23af9 | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 2442 | |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 2443 | GENERIC HDLC (WAN) DRIVERS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2444 | P: Krzysztof Halasa |
| 2445 | M: khc@pm.waw.pl |
| 2446 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
| 2447 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2448 | F: drivers/net/wan/c101.c |
| 2449 | F: drivers/net/wan/hd6457* |
| 2450 | F: drivers/net/wan/hdlc* |
| 2451 | F: drivers/net/wan/n2.c |
| 2452 | F: drivers/net/wan/pc300too.c |
| 2453 | F: drivers/net/wan/pci200syn.c |
| 2454 | F: drivers/net/wan/wanxl* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2455 | |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 2456 | GFS2 FILE SYSTEM |
| 2457 | P: Steven Whitehouse |
| 2458 | M: swhiteho@redhat.com |
David Teigland | a464418 | 2006-06-22 15:29:57 -0400 | [diff] [blame] | 2459 | L: cluster-devel@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 2460 | W: http://sources.redhat.com/cluster/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2461 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git |
| 2462 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 2463 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2464 | F: Documentation/filesystems/gfs2*.txt |
| 2465 | F: fs/gfs2/ |
| 2466 | F: include/linux/gfs2_ondisk.h |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 2467 | |
Hansjoerg Lipp | 0a34eb8 | 2006-03-26 01:38:28 -0800 | [diff] [blame] | 2468 | GIGASET ISDN DRIVERS |
| 2469 | P: Hansjoerg Lipp |
| 2470 | M: hjlipp@web.de |
| 2471 | P: Tilman Schmidt |
| 2472 | M: tilman@imap.cc |
| 2473 | L: gigaset307x-common@lists.sourceforge.net |
| 2474 | W: http://gigaset307x.sourceforge.net/ |
| 2475 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2476 | F: Documentation/isdn/README.gigaset |
| 2477 | F: drivers/isdn/gigaset/ |
| 2478 | F: include/linux/gigaset_dev.h |
Hansjoerg Lipp | 0a34eb8 | 2006-03-26 01:38:28 -0800 | [diff] [blame] | 2479 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2480 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
Frank Seidel | 211e3e0 | 2009-02-17 19:59:54 +0100 | [diff] [blame] | 2481 | P: Frank Seidel |
| 2482 | M: frank@f-seidel.de |
| 2483 | L: lm-sensors@lm-sensors.org |
| 2484 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2485 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2486 | F: drivers/hwmon/hdaps.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2487 | |
Michael Ellerman | c90bfeb | 2009-04-02 16:56:43 -0700 | [diff] [blame] | 2488 | HYPERVISOR VIRTUAL CONSOLE DRIVER |
| 2489 | L: linuxppc-dev@ozlabs.org |
Michael Ellerman | c90bfeb | 2009-04-02 16:56:43 -0700 | [diff] [blame] | 2490 | S: Odd Fixes |
| 2491 | F: drivers/char/hvc_* |
| 2492 | |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2493 | GSPCA FINEPIX SUBDRIVER |
| 2494 | P: Frank Zago |
| 2495 | M: frank@zago.net |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2496 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2497 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2498 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2499 | F: drivers/media/video/gspca/finepix.c |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2500 | |
| 2501 | GSPCA M5602 SUBDRIVER |
| 2502 | P: Erik Andren |
| 2503 | M: erik.andren@gmail.com |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2504 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2505 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2506 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2507 | F: drivers/media/video/gspca/m5602/ |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2508 | |
| 2509 | GSPCA PAC207 SONIXB SUBDRIVER |
| 2510 | P: Hans de Goede |
| 2511 | M: hdegoede@redhat.com |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2512 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2513 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2514 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2515 | F: drivers/media/video/gspca/pac207.c |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2516 | |
| 2517 | GSPCA T613 SUBDRIVER |
| 2518 | P: Leandro Costantino |
| 2519 | M: lcostantino@gmail.com |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2520 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2521 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2522 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2523 | F: drivers/media/video/gspca/t613.c |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2524 | |
| 2525 | GSPCA USB WEBCAM DRIVER |
| 2526 | P: Jean-Francois Moine |
| 2527 | M: moinejf@free.fr |
| 2528 | W: http://moinejf.free.fr |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2529 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2530 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2531 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2532 | F: drivers/media/video/gspca/ |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2533 | |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 2534 | HARDWARE MONITORING |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 2535 | L: lm-sensors@lm-sensors.org |
Jean Delvare | 595142e | 2006-12-06 20:39:36 -0800 | [diff] [blame] | 2536 | W: http://www.lm-sensors.org/ |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 2537 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2538 | F: drivers/hwmon/ |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 2539 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 2540 | HARDWARE RANDOM NUMBER GENERATOR CORE |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 2541 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2542 | F: Documentation/hw_random.txt |
| 2543 | F: drivers/char/hw_random/ |
| 2544 | F: include/linux/hw_random.h |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 2545 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2546 | HARMONY SOUND DRIVER |
| 2547 | P: Kyle McMartin |
Kyle McMartin | 42a5a8a | 2008-06-06 17:16:17 -0400 | [diff] [blame] | 2548 | M: kyle@mcmartin.ca |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 2549 | L: linux-parisc@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2550 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2551 | F: sound/parisc/harmony.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2552 | |
| 2553 | HAYES ESP SERIAL DRIVER |
| 2554 | P: Andrew J. Robinson |
| 2555 | M: arobinso@nyx.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2556 | W: http://www.nyx.net/~arobinso |
| 2557 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2558 | F: Documentation/serial/hayes-esp.txt |
| 2559 | F: drivers/char/esp.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2560 | |
| 2561 | HEWLETT-PACKARD SMART2 RAID DRIVER |
| 2562 | P: Chirag Kantharia |
| 2563 | M: chirag.kantharia@hp.com |
| 2564 | L: iss_storagedev@hp.com |
| 2565 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2566 | F: Documentation/blockdev/cpqarray.txt |
| 2567 | F: drivers/block/cpqarray.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2568 | |
| 2569 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
| 2570 | P: Mike Miller |
| 2571 | M: mike.miller@hp.com |
| 2572 | L: iss_storagedev@hp.com |
| 2573 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2574 | F: Documentation/blockdev/cciss.txt |
| 2575 | F: drivers/block/cciss* |
| 2576 | F: include/linux/cciss_ioctl.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2577 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2578 | HFS FILESYSTEM |
| 2579 | P: Roman Zippel |
| 2580 | M: zippel@linux-m68k.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2581 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2582 | F: Documentation/filesystems/hfs.txt |
| 2583 | F: fs/hfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2584 | |
| 2585 | HGA FRAMEBUFFER DRIVER |
| 2586 | P: Ferenc Bakonyi |
| 2587 | M: fero@drama.obuda.kando.hu |
| 2588 | L: linux-nvidia@lists.surfsouth.com |
| 2589 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml |
| 2590 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2591 | F: drivers/video/hgafb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2592 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 2593 | HIBERNATION (aka Software Suspend, aka swsusp) |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2594 | P: Pavel Machek |
Pavel Machek | ef35ce2 | 2009-02-18 14:48:16 -0800 | [diff] [blame] | 2595 | M: pavel@ucw.cz |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2596 | P: Rafael J. Wysocki |
| 2597 | M: rjw@sisk.pl |
| 2598 | L: linux-pm@lists.linux-foundation.org |
| 2599 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2600 | F: arch/x86/power/ |
| 2601 | F: drivers/base/power/ |
| 2602 | F: kernel/power/ |
| 2603 | F: include/linux/suspend.h |
| 2604 | F: include/linux/freezer.h |
| 2605 | F: include/linux/pm.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2606 | F: arch/*/include/asm/suspend*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2607 | |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 2608 | HID CORE LAYER |
| 2609 | P: Jiri Kosina |
| 2610 | M: jkosina@suse.cz |
Dmitry Torokhov | eb76c5c | 2007-11-02 09:07:33 -0400 | [diff] [blame] | 2611 | L: linux-input@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2612 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 2613 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2614 | F: drivers/hid/ |
| 2615 | F: include/linux/hid* |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 2616 | |
Ingo Molnar | 38bed54 | 2007-02-22 09:09:34 +0100 | [diff] [blame] | 2617 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
| 2618 | P: Thomas Gleixner |
| 2619 | M: tglx@linutronix.de |
Ingo Molnar | 38bed54 | 2007-02-22 09:09:34 +0100 | [diff] [blame] | 2620 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2621 | F: Documentation/timers/ |
| 2622 | F: kernel/hrtimer.c |
| 2623 | F: include/linux/hrtimer.h |
Ingo Molnar | 38bed54 | 2007-02-22 09:09:34 +0100 | [diff] [blame] | 2624 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2625 | HIGH-SPEED SCC DRIVER FOR AX.25 |
| 2626 | P: Klaus Kudielka |
| 2627 | M: klaus.kudielka@ieee.org |
| 2628 | L: linux-hams@vger.kernel.org |
| 2629 | W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/ |
| 2630 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2631 | F: drivers/net/hamradio/dmascc.c |
| 2632 | F: drivers/net/hamradio/scc.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2633 | |
HighPoint Linux Team | ede1e6f | 2006-05-16 14:38:09 +0800 | [diff] [blame] | 2634 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
| 2635 | P: HighPoint Linux Team |
| 2636 | M: linux@highpoint-tech.com |
| 2637 | W: http://www.highpoint-tech.com |
| 2638 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2639 | F: Documentation/scsi/hptiop.txt |
| 2640 | F: drivers/scsi/hptiop.c |
HighPoint Linux Team | ede1e6f | 2006-05-16 14:38:09 +0800 | [diff] [blame] | 2641 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2642 | HIPPI |
| 2643 | P: Jes Sorensen |
| 2644 | M: jes@trained-monkey.org |
| 2645 | L: linux-hippi@sunsite.dk |
| 2646 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2647 | F: include/linux/hippidevice.h |
| 2648 | F: include/linux/if_hippi.h |
| 2649 | F: net/802/hippi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2650 | |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 2651 | HOST AP DRIVER |
| 2652 | P: Jouni Malinen |
Jouni Malinen | 85d32e7 | 2007-03-24 17:15:30 -0700 | [diff] [blame] | 2653 | M: j@w1.fi |
| 2654 | L: hostap@shmoo.com (subscribers-only) |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 2655 | L: linux-wireless@vger.kernel.org |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 2656 | W: http://hostap.epitest.fi/ |
| 2657 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2658 | F: drivers/net/wireless/hostap/ |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 2659 | |
Carlos Corbacho | dd8cd77 | 2008-02-05 02:17:15 +0000 | [diff] [blame] | 2660 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
| 2661 | P: Carlos Corbacho |
| 2662 | M: carlos@strangeworlds.co.uk |
| 2663 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2664 | F: drivers/platform/x86/tc1100-wmi.c |
Carlos Corbacho | dd8cd77 | 2008-02-05 02:17:15 +0000 | [diff] [blame] | 2665 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2666 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
| 2667 | P: Jaroslav Kysela |
| 2668 | M: perex@perex.cz |
| 2669 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2670 | F: drivers/net/hp100.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2671 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2672 | HPET: High Precision Event Timers driver |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2673 | P: Clemens Ladisch |
| 2674 | M: clemens@ladisch.de |
| 2675 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2676 | F: Documentation/timers/hpet.txt |
| 2677 | F: drivers/char/hpet.c |
| 2678 | F: include/linux/hpet.h |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2679 | |
| 2680 | HPET: i386 |
| 2681 | P: Venkatesh Pallipadi (Venki) |
| 2682 | M: venkatesh.pallipadi@intel.com |
| 2683 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2684 | F: arch/x86/kernel/hpet.c |
| 2685 | F: arch/x86/include/asm/hpet.h |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2686 | |
| 2687 | HPET: x86_64 |
Andi Kleen | 8bd0983 | 2007-10-13 01:01:08 +0200 | [diff] [blame] | 2688 | P: Vojtech Pavlik |
| 2689 | M: vojtech@suse.cz |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2690 | S: Maintained |
| 2691 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2692 | HPET: ACPI |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2693 | P: Bob Picco |
| 2694 | M: bob.picco@hp.com |
| 2695 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2696 | F: drivers/char/hpet.c |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2697 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2698 | HPFS FILESYSTEM |
| 2699 | P: Mikulas Patocka |
| 2700 | M: mikulas@artax.karlin.mff.cuni.cz |
| 2701 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
| 2702 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2703 | F: fs/hpfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2704 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2705 | HSO 3G MODEM DRIVER |
Jan Dumon | 510f32b | 2009-04-13 14:39:34 -0700 | [diff] [blame] | 2706 | P: Jan Dumon |
| 2707 | M: j.dumon@option.com |
Denis Joseph Barrow | 11cd29b | 2009-01-02 13:50:36 +0000 | [diff] [blame] | 2708 | W: http://www.pharscape.org |
| 2709 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2710 | F: drivers/net/usb/hso.c |
Denis Joseph Barrow | 11cd29b | 2009-01-02 13:50:36 +0000 | [diff] [blame] | 2711 | |
Pau Oliva Fora | 5a18c34 | 2008-06-02 00:38:35 -0400 | [diff] [blame] | 2712 | HTCPEN TOUCHSCREEN DRIVER |
| 2713 | P: Pau Oliva Fora |
| 2714 | M: pof@eslack.org |
| 2715 | L: linux-input@vger.kernel.org |
| 2716 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2717 | F: drivers/input/touchscreen/htcpen.c |
Pau Oliva Fora | 5a18c34 | 2008-06-02 00:38:35 -0400 | [diff] [blame] | 2718 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2719 | HUGETLB FILESYSTEM |
| 2720 | P: William Irwin |
| 2721 | M: wli@holomorphy.com |
| 2722 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2723 | F: fs/hugetlbfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2724 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 2725 | I2C/SMBUS STUB DRIVER |
| 2726 | P: Mark M. Hoffman |
| 2727 | M: mhoffman@lightlink.com |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 2728 | L: linux-i2c@vger.kernel.org |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 2729 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2730 | F: drivers/i2c/busses/i2c-stub.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 2731 | |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 2732 | I2C SUBSYSTEM |
Jean Delvare | 710cf7e | 2008-05-18 20:49:40 +0200 | [diff] [blame] | 2733 | P: Jean Delvare (PC drivers, core) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2734 | M: khali@linux-fr.org |
Jean Delvare | 710cf7e | 2008-05-18 20:49:40 +0200 | [diff] [blame] | 2735 | P: Ben Dooks (embedded platforms) |
| 2736 | M: ben-linux@fluff.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 2737 | L: linux-i2c@vger.kernel.org |
Jean Delvare | a01064a | 2009-01-26 21:19:53 +0100 | [diff] [blame] | 2738 | W: http://i2c.wiki.kernel.org/ |
| 2739 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2740 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2741 | F: Documentation/i2c/ |
| 2742 | F: drivers/i2c/ |
| 2743 | F: include/linux/i2c.h |
| 2744 | F: include/linux/i2c-dev.h |
| 2745 | F: include/linux/i2c-id.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2746 | |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 2747 | I2C-TINY-USB DRIVER |
| 2748 | P: Till Harbaum |
| 2749 | M: till@harbaum.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 2750 | L: linux-i2c@vger.kernel.org |
Joe Perches | 932d187 | 2009-04-07 21:10:58 -0700 | [diff] [blame] | 2751 | W: http://www.harbaum.org/till/i2c_tiny_usb |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 2752 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2753 | F: drivers/i2c/busses/i2c-tiny-usb.c |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 2754 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2755 | i386 BOOT CODE |
H. Peter Anvin | 7f1291f | 2007-07-11 12:18:26 -0700 | [diff] [blame] | 2756 | P: H. Peter Anvin |
| 2757 | M: hpa@zytor.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2758 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2759 | F: arch/x86/boot/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2760 | |
| 2761 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2762 | P: H. Peter Anvin |
| 2763 | M: hpa@zytor.com |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2764 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2765 | S: Maintained |
| 2766 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2767 | IA64 (Itanium) PLATFORM |
| 2768 | P: Tony Luck |
| 2769 | M: tony.luck@intel.com |
| 2770 | L: linux-ia64@vger.kernel.org |
| 2771 | W: http://www.ia64-linux.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2772 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2773 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2774 | F: arch/ia64/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2775 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2776 | IBM MCA SCSI SUBSYSTEM DRIVER |
| 2777 | P: Michael Lang |
| 2778 | M: langa2@kph.uni-mainz.de |
| 2779 | W: http://www.uni-mainz.de/~langm000/linux.html |
| 2780 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2781 | F: drivers/scsi/ibmmca.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2782 | |
| 2783 | IBM Power Linux RAID adapter |
| 2784 | P: Brian King |
| 2785 | M: brking@us.ibm.com |
| 2786 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2787 | F: drivers/scsi/ipr.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2788 | |
| 2789 | IBM ServeRAID RAID DRIVER |
| 2790 | P: Jack Hammer |
| 2791 | P: Dave Jeffery |
| 2792 | M: ipslinux@adaptec.com |
| 2793 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 2794 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2795 | F: drivers/scsi/ips.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2796 | |
Bartlomiej Zolnierkiewicz | 1e7106f | 2007-01-27 13:46:14 +0100 | [diff] [blame] | 2797 | IDE SUBSYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2798 | P: Bartlomiej Zolnierkiewicz |
Bartlomiej Zolnierkiewicz | 1e7106f | 2007-01-27 13:46:14 +0100 | [diff] [blame] | 2799 | M: bzolnier@gmail.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2800 | L: linux-ide@vger.kernel.org |
Bartlomiej Zolnierkiewicz | b930f96 | 2009-04-23 22:53:45 +0200 | [diff] [blame] | 2801 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2802 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2803 | F: Documentation/ide/ |
| 2804 | F: drivers/ide/ |
| 2805 | F: include/linux/ide.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2806 | |
Bartlomiej Zolnierkiewicz | 0f861e8 | 2009-03-31 20:15:31 +0200 | [diff] [blame] | 2807 | IDE/ATAPI DRIVERS |
Borislav Petkov | c404c19 | 2007-12-24 15:23:44 +0100 | [diff] [blame] | 2808 | P: Borislav Petkov |
Borislav Petkov | ef70916 | 2008-02-19 01:41:25 +0100 | [diff] [blame] | 2809 | M: petkovbb@gmail.com |
Jens Axboe | 9c5b0ce | 2007-01-03 18:15:20 +0100 | [diff] [blame] | 2810 | L: linux-ide@vger.kernel.org |
Borislav Petkov | c404c19 | 2007-12-24 15:23:44 +0100 | [diff] [blame] | 2811 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2812 | F: Documentation/cdrom/ide-cd |
| 2813 | F: drivers/ide/ide-cd* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2814 | |
Andy Henroid | 27471fd | 2008-10-09 11:45:22 -0700 | [diff] [blame] | 2815 | IDLE-I7300 |
| 2816 | P: Andy Henroid |
| 2817 | M: andrew.d.henroid@intel.com |
| 2818 | L: linux-pm@lists.linux-foundation.org |
| 2819 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2820 | F: drivers/idle/i7300_idle.c |
Andy Henroid | 27471fd | 2008-10-09 11:45:22 -0700 | [diff] [blame] | 2821 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2822 | IEEE 1394 SUBSYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2823 | P: Ben Collins |
Stefan Richter | f51a5a9 | 2007-04-23 14:41:10 -0700 | [diff] [blame] | 2824 | M: ben.collins@ubuntu.com |
Stefan Richter | 87730d0 | 2006-09-16 12:24:00 +0200 | [diff] [blame] | 2825 | P: Stefan Richter |
| 2826 | M: stefanr@s5r6.in-berlin.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2827 | L: linux1394-devel@lists.sourceforge.net |
| 2828 | W: http://www.linux1394.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2829 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2830 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2831 | F: drivers/ieee1394/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2832 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2833 | IEEE 1394 RAW I/O DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2834 | P: Dan Dennedy |
| 2835 | M: dan@dennedy.org |
Stefan Richter | f51a5a9 | 2007-04-23 14:41:10 -0700 | [diff] [blame] | 2836 | P: Stefan Richter |
| 2837 | M: stefanr@s5r6.in-berlin.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2838 | L: linux1394-devel@lists.sourceforge.net |
Jody McIntyre | 105d7b3 | 2005-09-30 11:59:04 -0700 | [diff] [blame] | 2839 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2840 | F: drivers/ieee1394/raw1394* |
Jody McIntyre | 105d7b3 | 2005-09-30 11:59:04 -0700 | [diff] [blame] | 2841 | |
Sergey Lapin | 02cf228 | 2009-06-08 12:18:50 +0000 | [diff] [blame] | 2842 | IEEE 802.15.4 SUBSYSTEM |
| 2843 | P: Dmitry Eremin-Solenikov |
| 2844 | M: dbaryshkov@gmail.com |
| 2845 | P: Sergey Lapin |
| 2846 | M: slapin@ossfans.org |
| 2847 | L: linux-zigbee-devel@lists.sourceforge.net |
| 2848 | W: http://apps.sourceforge.net/trac/linux-zigbee |
| 2849 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lumag/lowpan.git |
| 2850 | S: Maintained |
| 2851 | F: net/ieee802154/ |
| 2852 | F: drivers/ieee801254/ |
| 2853 | |
Mimi Zohar | aa7168f | 2009-02-04 09:07:03 -0500 | [diff] [blame] | 2854 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
| 2855 | P: Mimi Zohar |
| 2856 | M: zohar@us.ibm.com |
| 2857 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2858 | F: security/integrity/ima/ |
Mimi Zohar | aa7168f | 2009-02-04 09:07:03 -0500 | [diff] [blame] | 2859 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2860 | IMS TWINTURBO FRAMEBUFFER DRIVER |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2861 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Paul Mundt | 843393d | 2007-11-19 13:11:04 +0900 | [diff] [blame] | 2862 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2863 | F: drivers/video/imsttfb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2864 | |
| 2865 | INFINIBAND SUBSYSTEM |
| 2866 | P: Roland Dreier |
Roland Dreier | 21c121c | 2005-06-27 14:36:47 -0700 | [diff] [blame] | 2867 | M: rolandd@cisco.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2868 | P: Sean Hefty |
Sean Hefty | ed96f2470 | 2008-01-02 12:00:24 -0800 | [diff] [blame] | 2869 | M: sean.hefty@intel.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2870 | P: Hal Rosenstock |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 2871 | M: hal.rosenstock@gmail.com |
Randy Dunlap | 40b0bb1 | 2009-02-04 15:12:13 -0800 | [diff] [blame] | 2872 | L: general@lists.openfabrics.org (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2873 | W: http://www.openib.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2874 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2875 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2876 | F: Documentation/infiniband/ |
| 2877 | F: drivers/infiniband/ |
| 2878 | F: include/linux/if_infiniband.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2879 | |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 2880 | INOTIFY |
Cal Peake | 18b36c71 | 2006-12-12 20:18:16 +0100 | [diff] [blame] | 2881 | P: John McCutchan |
John McCutchan | 52af894 | 2008-12-17 17:43:02 -0800 | [diff] [blame] | 2882 | M: john@johnmccutchan.com |
Cal Peake | 18b36c71 | 2006-12-12 20:18:16 +0100 | [diff] [blame] | 2883 | P: Robert Love |
John McCutchan | 52af894 | 2008-12-17 17:43:02 -0800 | [diff] [blame] | 2884 | M: rlove@rlove.org |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 2885 | P: Eric Paris |
| 2886 | M: eparis@parisplace.org |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 2887 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2888 | F: Documentation/filesystems/inotify.txt |
| 2889 | F: fs/notify/inotify/ |
| 2890 | F: include/linux/inotify.h |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 2891 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2892 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
| 2893 | P: Dmitry Torokhov |
| 2894 | M: dmitry.torokhov@gmail.com |
| 2895 | M: dtor@mail.ru |
| 2896 | L: linux-input@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2897 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2898 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2899 | F: drivers/input/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2900 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 2901 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2902 | P: Sylvain Meyer |
| 2903 | M: sylvain.meyer@worldonline.fr |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2904 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2905 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2906 | F: Documentation/fb/intelfb.txt |
| 2907 | F: drivers/video/intelfb/ |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 2908 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2909 | INTEL 810/815 FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2910 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 2911 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2912 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2913 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2914 | F: drivers/video/i810/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2915 | |
Thomas, Sujith | f4a9bc4 | 2008-11-05 16:15:31 +0530 | [diff] [blame] | 2916 | INTEL MENLOW THERMAL DRIVER |
| 2917 | P: Sujith Thomas |
| 2918 | M: sujith.thomas@intel.com |
| 2919 | L: linux-acpi@vger.kernel.org |
| 2920 | W: http://www.lesswatts.org/projects/acpi/ |
| 2921 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2922 | F: drivers/platform/x86/intel_menlow.c |
Thomas, Sujith | f4a9bc4 | 2008-11-05 16:15:31 +0530 | [diff] [blame] | 2923 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2924 | INTEL IA32 MICROCODE UPDATE SUPPORT |
| 2925 | P: Tigran Aivazian |
Tigran Aivazian | b5b9df6 | 2006-11-08 17:44:46 -0800 | [diff] [blame] | 2926 | M: tigran@aivazian.fsnet.co.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2927 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2928 | F: arch/x86/kernel/microcode_core.c |
| 2929 | F: arch/x86/kernel/microcode_intel.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2930 | |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 2931 | INTEL I/OAT DMA DRIVER |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 2932 | P: Maciej Sosnowski |
| 2933 | M: maciej.sosnowski@intel.com |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 2934 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2935 | F: drivers/dma/ioat* |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 2936 | |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 2937 | INTEL IOMMU (VT-d) |
| 2938 | P: David Woodhouse |
| 2939 | M: dwmw2@infradead.org |
| 2940 | L: iommu@lists.linux-foundation.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2941 | T: git git://git.infradead.org/iommu-2.6.git |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 2942 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2943 | F: drivers/pci/intel-iommu.c |
| 2944 | F: include/linux/intel-iommu.h |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 2945 | |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 2946 | INTEL IOP-ADMA DMA DRIVER |
| 2947 | P: Dan Williams |
| 2948 | M: dan.j.williams@intel.com |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 2949 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2950 | F: drivers/dma/iop-adma.c |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 2951 | |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 2952 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
| 2953 | P: Krzysztof Halasa |
| 2954 | M: khc@pm.waw.pl |
| 2955 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2956 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
| 2957 | F: arch/arm/mach-ixp4xx/include/mach/npe.h |
| 2958 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c |
| 2959 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c |
| 2960 | F: drivers/net/arm/ixp4xx_eth.c |
| 2961 | F: drivers/net/wan/ixp4xx_hss.c |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 2962 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 2963 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
| 2964 | P: Deepak Saxena |
| 2965 | M: dsaxena@plexity.net |
| 2966 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2967 | F: drivers/char/hw_random/ixp4xx-rng.c |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 2968 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 2969 | INTEL IXP2000 ETHERNET DRIVER |
| 2970 | P: Lennert Buytenhek |
| 2971 | M: kernel@wantstofly.org |
| 2972 | L: netdev@vger.kernel.org |
| 2973 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2974 | F: drivers/net/ixp2000/ |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 2975 | |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 2976 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe) |
Jesse Brandeburg | add1878 | 2006-03-14 14:52:13 -0800 | [diff] [blame] | 2977 | P: Jeff Kirsher |
| 2978 | M: jeffrey.t.kirsher@intel.com |
Auke Kok | e0164af | 2008-05-07 13:42:33 -0700 | [diff] [blame] | 2979 | P: Jesse Brandeburg |
| 2980 | M: jesse.brandeburg@intel.com |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 2981 | P: Bruce Allan |
| 2982 | M: bruce.w.allan@intel.com |
Jeff Kirsher | ae7b648 | 2008-06-11 15:15:53 -0700 | [diff] [blame] | 2983 | P: PJ Waskiewicz |
| 2984 | M: peter.p.waskiewicz.jr@intel.com |
Auke Kok | 2042465 | 2008-01-07 21:47:25 -0800 | [diff] [blame] | 2985 | P: John Ronciak |
| 2986 | M: john.ronciak@intel.com |
Auke Kok | dcd01fa | 2007-03-06 08:58:06 -0800 | [diff] [blame] | 2987 | L: e1000-devel@lists.sourceforge.net |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 2988 | W: http://e1000.sourceforge.net/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2989 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2990 | F: drivers/net/e100.c |
| 2991 | F: drivers/net/e1000/ |
| 2992 | F: drivers/net/e1000e/ |
| 2993 | F: drivers/net/igb/ |
| 2994 | F: drivers/net/ixgb/ |
| 2995 | F: drivers/net/ixgbe/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2996 | |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 2997 | INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 2998 | P: Zhu Yi |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 2999 | M: yi.zhu@intel.com |
| 3000 | P: James Ketrenos |
| 3001 | M: jketreno@linux.intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 3002 | P: Reinette Chatre |
| 3003 | M: reinette.chatre@intel.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 3004 | L: linux-wireless@vger.kernel.org |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 3005 | L: ipw2100-devel@lists.sourceforge.net |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 3006 | W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3007 | W: http://ipw2100.sourceforge.net |
| 3008 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3009 | F: Documentation/networking/README.ipw2100 |
| 3010 | F: drivers/net/wireless/ipw2x00/ipw2100.* |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3011 | |
| 3012 | INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 3013 | P: Zhu Yi |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3014 | M: yi.zhu@intel.com |
| 3015 | P: James Ketrenos |
| 3016 | M: jketreno@linux.intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 3017 | P: Reinette Chatre |
| 3018 | M: reinette.chatre@intel.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 3019 | L: linux-wireless@vger.kernel.org |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 3020 | L: ipw2100-devel@lists.sourceforge.net |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 3021 | W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3022 | W: http://ipw2200.sourceforge.net |
| 3023 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3024 | F: Documentation/networking/README.ipw2200 |
| 3025 | F: drivers/net/wireless/ipw2x00/ipw2200.* |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3026 | |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 3027 | INTEL WIRELESS WIMAX CONNECTION 2400 |
| 3028 | P: Inaky Perez-Gonzalez |
| 3029 | M: inaky.perez-gonzalez@intel.com |
| 3030 | M: linux-wimax@intel.com |
| 3031 | L: wimax@linuxwimax.org |
| 3032 | S: Supported |
| 3033 | W: http://linuxwimax.org |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3034 | F: Documentation/wimax/README.i2400m |
| 3035 | F: drivers/net/wimax/i2400m/ |
| 3036 | F: include/linux/wimax/i2400m.h |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 3037 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3038 | INTEL WIRELESS WIFI LINK (iwlwifi) |
| 3039 | P: Zhu Yi |
| 3040 | M: yi.zhu@intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 3041 | P: Reinette Chatre |
| 3042 | M: reinette.chatre@intel.com |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3043 | L: linux-wireless@vger.kernel.org |
| 3044 | L: ipw3945-devel@lists.sourceforge.net |
| 3045 | W: http://intellinuxwireless.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3046 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3047 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3048 | F: drivers/net/wireless/iwlwifi/ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3049 | |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 3050 | IOC3 ETHERNET DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3051 | P: Ralf Baechle |
| 3052 | M: ralf@linux-mips.org |
| 3053 | L: linux-mips@linux-mips.org |
| 3054 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3055 | F: drivers/net/ioc3-eth.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3056 | |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 3057 | IOC3 SERIAL DRIVER |
| 3058 | P: Pat Gefre |
| 3059 | M: pfg@sgi.com |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 3060 | L: linux-mips@linux-mips.org |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 3061 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3062 | F: drivers/serial/ioc3_serial.c |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 3063 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 3064 | IP MASQUERADING |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3065 | P: Juanjo Ciarlante |
| 3066 | M: jjciarla@raiz.uncu.edu.ar |
| 3067 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3068 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3069 | |
Francois Romieu | 1202d6f | 2007-09-17 17:13:55 -0700 | [diff] [blame] | 3070 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
| 3071 | P: Francois Romieu |
| 3072 | M: romieu@fr.zoreil.com |
| 3073 | P: Sorbica Shieh |
| 3074 | M: sorbica@icplus.com.tw |
| 3075 | P: Jesse Huang |
| 3076 | M: jesse@icplus.com.tw |
| 3077 | L: netdev@vger.kernel.org |
| 3078 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3079 | F: drivers/net/ipg.c |
Francois Romieu | 1202d6f | 2007-09-17 17:13:55 -0700 | [diff] [blame] | 3080 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 3081 | IPATH DRIVER |
Arthur Jones | 18b8c8f | 2008-02-29 10:13:37 -0800 | [diff] [blame] | 3082 | P: Ralph Campbell |
Arthur Jones | f42b647 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 3083 | M: infinipath@qlogic.com |
| 3084 | L: general@lists.openfabrics.org |
| 3085 | T: git git://git.qlogic.com/ipath-linux-2.6 |
Bryan O'Sullivan | 77d8798 | 2006-03-29 15:23:39 -0800 | [diff] [blame] | 3086 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3087 | F: drivers/infiniband/hw/ipath/ |
Bryan O'Sullivan | 77d8798 | 2006-03-29 15:23:39 -0800 | [diff] [blame] | 3088 | |
Corey Minyard | 4409ebe | 2006-04-20 02:43:12 -0700 | [diff] [blame] | 3089 | IPMI SUBSYSTEM |
| 3090 | P: Corey Minyard |
| 3091 | M: minyard@acm.org |
| 3092 | L: openipmi-developer@lists.sourceforge.net |
| 3093 | W: http://openipmi.sourceforge.net/ |
| 3094 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3095 | F: Documentation/IPMI.txt |
| 3096 | F: drivers/char/ipmi/ |
| 3097 | F: include/linux/ipmi* |
Corey Minyard | 4409ebe | 2006-04-20 02:43:12 -0700 | [diff] [blame] | 3098 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3099 | IPS SCSI RAID DRIVER |
| 3100 | P: Adaptec OEM Raid Solutions |
| 3101 | M: aacraid@adaptec.com |
| 3102 | L: linux-scsi@vger.kernel.org |
| 3103 | W: http://www.adaptec.com/ |
| 3104 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3105 | F: drivers/scsi/ips* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3106 | |
| 3107 | IPVS |
| 3108 | P: Wensong Zhang |
| 3109 | M: wensong@linux-vs.org |
| 3110 | P: Simon Horman |
| 3111 | M: horms@verge.net.au |
| 3112 | P: Julian Anastasov |
| 3113 | M: ja@ssi.bg |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 3114 | L: netdev@vger.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3115 | L: lvs-devel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3116 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3117 | F: Documentation/networking/ipvs-sysctl.txt |
| 3118 | F: net/netfilter/ipvs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3119 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 3120 | IPWIRELESS DRIVER |
David Sterba | 099dc4f | 2008-02-07 10:57:12 +0100 | [diff] [blame] | 3121 | P: Jiri Kosina |
| 3122 | M: jkosina@suse.cz |
| 3123 | P: David Sterba |
| 3124 | M: dsterba@suse.cz |
| 3125 | S: Maintained |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3126 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3127 | F: drivers/char/pcmcia/ipwireless/ |
David Sterba | 099dc4f | 2008-02-07 10:57:12 +0100 | [diff] [blame] | 3128 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3129 | IPX NETWORK LAYER |
| 3130 | P: Arnaldo Carvalho de Melo |
| 3131 | M: acme@ghostprotocols.net |
| 3132 | L: netdev@vger.kernel.org |
| 3133 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3134 | F: include/linux/ipx.h |
| 3135 | F: include/net/ipx.h |
| 3136 | F: net/ipx/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3137 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3138 | IRDA SUBSYSTEM |
Samuel Ortiz | f353976 | 2006-05-09 15:24:49 -0700 | [diff] [blame] | 3139 | P: Samuel Ortiz |
| 3140 | M: samuel@sortiz.org |
Olaf Hering | a2ac953 | 2005-07-12 13:58:35 -0700 | [diff] [blame] | 3141 | L: irda-users@lists.sourceforge.net (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3142 | W: http://irda.sourceforge.net/ |
Samuel Ortiz | f353976 | 2006-05-09 15:24:49 -0700 | [diff] [blame] | 3143 | S: Maintained |
Samuel Ortiz | e005797 | 2009-06-05 16:12:00 +0200 | [diff] [blame] | 3144 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3145 | F: Documentation/networking/irda.txt |
| 3146 | F: drivers/net/irda/ |
| 3147 | F: include/net/irda/ |
| 3148 | F: net/irda/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3149 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3150 | ISAPNP |
| 3151 | P: Jaroslav Kysela |
| 3152 | M: perex@perex.cz |
| 3153 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3154 | F: Documentation/isapnp.txt |
| 3155 | F: drivers/pnp/isapnp/ |
| 3156 | F: include/linux/isapnp.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3157 | |
Mike Christie | 14816b1e | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 3158 | ISCSI |
| 3159 | P: Mike Christie |
| 3160 | M: michaelc@cs.wisc.edu |
| 3161 | L: open-iscsi@googlegroups.com |
| 3162 | W: www.open-iscsi.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3163 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
Mike Christie | 14816b1e | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 3164 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3165 | F: drivers/scsi/*iscsi* |
| 3166 | F: include/scsi/*iscsi* |
Mike Christie | 14816b1e | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 3167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3168 | ISDN SUBSYSTEM |
| 3169 | P: Karsten Keil |
Karsten Keil | fbfd8b5 | 2009-03-01 18:04:53 +0100 | [diff] [blame] | 3170 | M: isdn@linux-pingi.de |
Paul Bolle | d5d5227 | 2008-04-15 00:40:48 -0700 | [diff] [blame] | 3171 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3172 | W: http://www.isdn4linux.de |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3173 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3174 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3175 | F: Documentation/isdn/ |
| 3176 | F: drivers/isdn/ |
| 3177 | F: include/linux/isdn.h |
| 3178 | F: include/linux/isdn/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3179 | |
| 3180 | ISDN SUBSYSTEM (Eicon active card driver) |
| 3181 | P: Armin Schindler |
| 3182 | M: mac@melware.de |
Paul Bolle | d5d5227 | 2008-04-15 00:40:48 -0700 | [diff] [blame] | 3183 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3184 | W: http://www.melware.de |
| 3185 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3186 | F: drivers/isdn/hardware/eicon/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3187 | |
Hans Verkuil | 91821ff | 2007-12-02 09:35:33 -0300 | [diff] [blame] | 3188 | IVTV VIDEO4LINUX DRIVER |
| 3189 | P: Hans Verkuil |
| 3190 | M: hverkuil@xs4all.nl |
| 3191 | L: ivtv-devel@ivtvdriver.org |
| 3192 | L: ivtv-users@ivtvdriver.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 3193 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3194 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Hans Verkuil | 91821ff | 2007-12-02 09:35:33 -0300 | [diff] [blame] | 3195 | W: http://www.ivtvdriver.org |
| 3196 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3197 | F: Documentation/video4linux/*.ivtv |
| 3198 | F: drivers/media/video/ivtv/ |
| 3199 | F: include/linux/ivtv* |
Hans Verkuil | 91821ff | 2007-12-02 09:35:33 -0300 | [diff] [blame] | 3200 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3201 | JFS FILESYSTEM |
| 3202 | P: Dave Kleikamp |
| 3203 | M: shaggy@austin.ibm.com |
| 3204 | L: jfs-discussion@lists.sourceforge.net |
| 3205 | W: http://jfs.sourceforge.net/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3206 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3207 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3208 | F: Documentation/filesystems/jfs.txt |
| 3209 | F: fs/jfs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3210 | |
Guo-Fu Tseng | 9525223 | 2008-09-16 01:00:11 +0800 | [diff] [blame] | 3211 | JME NETWORK DRIVER |
| 3212 | P: Guo-Fu Tseng |
| 3213 | M: cooldavid@cooldavid.org |
| 3214 | L: netdev@vger.kernel.org |
| 3215 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3216 | F: drivers/net/jme.* |
Guo-Fu Tseng | 9525223 | 2008-09-16 01:00:11 +0800 | [diff] [blame] | 3217 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3218 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
| 3219 | P: David Woodhouse |
| 3220 | M: dwmw2@infradead.org |
David Woodhouse | 6d85d06 | 2007-10-27 10:39:48 -0400 | [diff] [blame] | 3221 | L: linux-mtd@lists.infradead.org |
| 3222 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3223 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3224 | F: fs/jffs2/ |
| 3225 | F: include/linux/jffs2.h |
| 3226 | F: include/mtd/jffs2-user.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3227 | |
Josh Triplett | de456d3 | 2006-07-30 03:04:00 -0700 | [diff] [blame] | 3228 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 3229 | P: Stephen Tweedie |
| 3230 | M: sct@redhat.com |
| 3231 | P: Andrew Morton |
| 3232 | M: akpm@linux-foundation.org |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 3233 | L: linux-ext4@vger.kernel.org |
Theodore Tso | ae0718f | 2006-05-20 15:00:13 -0700 | [diff] [blame] | 3234 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3235 | F: fs/jbd*/ |
| 3236 | F: include/linux/ext*jbd*.h |
| 3237 | F: include/linux/jbd*.h |
Theodore Tso | ae0718f | 2006-05-20 15:00:13 -0700 | [diff] [blame] | 3238 | |
Rudolf Marek | 4660cb3 | 2006-10-08 22:01:26 +0200 | [diff] [blame] | 3239 | K8TEMP HARDWARE MONITORING DRIVER |
| 3240 | P: Rudolf Marek |
| 3241 | M: r.marek@assembler.cz |
| 3242 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3243 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3244 | F: Documentation/hwmon/k8temp |
| 3245 | F: drivers/hwmon/k8temp.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3246 | |
| 3247 | KCONFIG |
| 3248 | P: Roman Zippel |
| 3249 | M: zippel@linux-m68k.org |
Sam Ravnborg | 347d12d | 2007-10-18 13:23:33 +0200 | [diff] [blame] | 3250 | L: linux-kbuild@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3251 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3252 | F: Documentation/kbuild/kconfig-language.txt |
| 3253 | F: scripts/kconfig/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3254 | |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 3255 | KDUMP |
| 3256 | P: Vivek Goyal |
Vivek Goyal | 4200b66c | 2007-12-01 12:16:30 -0800 | [diff] [blame] | 3257 | M: vgoyal@redhat.com |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 3258 | P: Haren Myneni |
| 3259 | M: hbabu@us.ibm.com |
Simon Horman | 3463399 | 2007-05-08 00:31:40 -0700 | [diff] [blame] | 3260 | L: kexec@lists.infradead.org |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 3261 | W: http://lse.sourceforge.net/kdump/ |
| 3262 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 3263 | F: Documentation/kdump/ |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 3264 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3265 | KERNEL AUTOMOUNTER (AUTOFS) |
| 3266 | P: H. Peter Anvin |
| 3267 | M: hpa@zytor.com |
| 3268 | L: autofs@linux.kernel.org |
| 3269 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3270 | F: fs/autofs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3271 | |
| 3272 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
| 3273 | P: Ian Kent |
| 3274 | M: raven@themaw.net |
| 3275 | L: autofs@linux.kernel.org |
| 3276 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3277 | F: fs/autofs4/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3278 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 3279 | KERNEL BUILD |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3280 | P: Sam Ravnborg |
| 3281 | M: sam@ravnborg.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3282 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git |
| 3283 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git |
Sam Ravnborg | 347d12d | 2007-10-18 13:23:33 +0200 | [diff] [blame] | 3284 | L: linux-kbuild@vger.kernel.org |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 3285 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3286 | F: Documentation/kbuild/ |
| 3287 | F: Makefile |
| 3288 | F: scripts/Makefile.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3289 | |
| 3290 | KERNEL JANITORS |
| 3291 | P: Several |
maximilian attems | c3000e0 | 2007-07-06 11:17:32 -0700 | [diff] [blame] | 3292 | L: kernel-janitors@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3293 | W: http://www.kerneljanitors.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3294 | S: Maintained |
| 3295 | |
J. Bruce Fields | e8b4355 | 2008-07-23 08:49:50 -0400 | [diff] [blame] | 3296 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
Neil Brown | a512cd5 | 2007-07-31 00:37:27 -0700 | [diff] [blame] | 3297 | P: J. Bruce Fields |
| 3298 | M: bfields@fieldses.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3299 | P: Neil Brown |
NeilBrown | 98fac23 | 2007-01-26 00:56:57 -0800 | [diff] [blame] | 3300 | M: neilb@suse.de |
Neil Brown | 16141c0 | 2007-12-11 16:16:12 -0800 | [diff] [blame] | 3301 | L: linux-nfs@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3302 | W: http://nfs.sourceforge.net/ |
NeilBrown | 98fac23 | 2007-01-26 00:56:57 -0800 | [diff] [blame] | 3303 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3304 | F: fs/nfsd/ |
| 3305 | F: include/linux/nfsd/ |
| 3306 | F: fs/lockd/ |
| 3307 | F: fs/nfs_common/ |
| 3308 | F: net/sunrpc/ |
| 3309 | F: include/linux/lockd/ |
| 3310 | F: include/linux/sunrpc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3311 | |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 3312 | KERNEL VIRTUAL MACHINE (KVM) |
| 3313 | P: Avi Kivity |
Avi Kivity | 9ea1de4 | 2008-09-19 19:25:30 -0700 | [diff] [blame] | 3314 | M: avi@redhat.com |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 3315 | L: kvm@vger.kernel.org |
| 3316 | W: http://kvm.qumranet.com |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 3317 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3318 | F: Documentation/*/kvm.txt |
| 3319 | F: arch/*/kvm/ |
| 3320 | F: arch/*/include/asm/kvm* |
| 3321 | F: include/linux/kvm* |
| 3322 | F: virt/kvm/ |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 3323 | |
Joerg Roedel | ad8003d | 2008-09-10 20:01:07 +0200 | [diff] [blame] | 3324 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
| 3325 | P: Joerg Roedel |
| 3326 | M: joerg.roedel@amd.com |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3327 | L: kvm@vger.kernel.org |
| 3328 | W: http://kvm.qumranet.com |
| 3329 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3330 | F: arch/x86/include/asm/svm.h |
| 3331 | F: arch/x86/kvm/kvm_svm.h |
| 3332 | F: arch/x86/kvm/svm.c |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3333 | |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 3334 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
| 3335 | P: Hollis Blanchard |
| 3336 | M: hollisb@us.ibm.com |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 3337 | L: kvm-ppc@vger.kernel.org |
| 3338 | W: http://kvm.qumranet.com |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 3339 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3340 | F: arch/powerpc/include/asm/kvm* |
| 3341 | F: arch/powerpc/kvm/ |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 3342 | |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 3343 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
Zhang Xiantao | 920ed9f | 2008-01-31 12:03:39 +0800 | [diff] [blame] | 3344 | P: Xiantao Zhang |
| 3345 | M: xiantao.zhang@intel.com |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 3346 | L: kvm-ia64@vger.kernel.org |
| 3347 | W: http://kvm.qumranet.com |
Zhang Xiantao | 920ed9f | 2008-01-31 12:03:39 +0800 | [diff] [blame] | 3348 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3349 | F: Documentation/ia64/kvm.txt |
| 3350 | F: arch/ia64/include/asm/kvm* |
| 3351 | F: arch/ia64/kvm/ |
Zhang Xiantao | 920ed9f | 2008-01-31 12:03:39 +0800 | [diff] [blame] | 3352 | |
Christian Borntraeger | 85f8fff | 2008-03-25 18:47:41 +0100 | [diff] [blame] | 3353 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
| 3354 | P: Carsten Otte |
| 3355 | M: cotte@de.ibm.com |
| 3356 | P: Christian Borntraeger |
| 3357 | M: borntraeger@de.ibm.com |
| 3358 | M: linux390@de.ibm.com |
| 3359 | L: linux-s390@vger.kernel.org |
| 3360 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 3361 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3362 | F: Documentation/s390/kvm.txt |
| 3363 | F: arch/s390/include/asm/kvm* |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 3364 | F: arch/s390/kvm/ |
Christian Borntraeger | 85f8fff | 2008-03-25 18:47:41 +0100 | [diff] [blame] | 3365 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3366 | KEXEC |
| 3367 | P: Eric Biederman |
| 3368 | M: ebiederm@xmission.com |
Signed-off-by@vergenet.net":Simon | b7c698f | 2007-10-18 03:04:33 -0700 | [diff] [blame] | 3369 | W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/ |
Simon Horman | 3463399 | 2007-05-08 00:31:40 -0700 | [diff] [blame] | 3370 | L: kexec@lists.infradead.org |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3371 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3372 | F: include/linux/kexec.h |
| 3373 | F: kernel/kexec.c |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3374 | |
Jason Wessel | e3e2aaf | 2008-03-20 13:43:45 -0500 | [diff] [blame] | 3375 | KGDB |
| 3376 | P: Jason Wessel |
| 3377 | M: jason.wessel@windriver.com |
| 3378 | L: kgdb-bugreport@lists.sourceforge.net |
| 3379 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3380 | F: Documentation/DocBook/kgdb.tmpl |
| 3381 | F: drivers/misc/kgdbts.c |
| 3382 | F: drivers/serial/kgdboc.c |
| 3383 | F: include/linux/kgdb.h |
| 3384 | F: kernel/kgdb.c |
Jason Wessel | e3e2aaf | 2008-03-20 13:43:45 -0500 | [diff] [blame] | 3385 | |
Pekka Enberg | 456db8c | 2008-04-28 22:47:29 +0300 | [diff] [blame] | 3386 | KMEMCHECK |
| 3387 | P: Vegard Nossum |
| 3388 | M: vegardno@ifi.uio.no |
| 3389 | P Pekka Enberg |
| 3390 | M: penberg@cs.helsinki.fi |
| 3391 | L: linux-kernel@vger.kernel.org |
| 3392 | S: Maintained |
| 3393 | |
Catalin Marinas | c3bb4d2 | 2009-06-12 09:35:22 +0100 | [diff] [blame] | 3394 | KMEMLEAK |
| 3395 | P: Catalin Marinas |
| 3396 | M: catalin.marinas@arm.com |
| 3397 | L: linux-kernel@vger.kernel.org |
| 3398 | S: Maintained |
| 3399 | F: Documentation/kmemleak.txt |
| 3400 | F: include/linux/kmemleak.h |
| 3401 | F: mm/kmemleak.c |
| 3402 | F: mm/kmemleak-test.c |
| 3403 | |
Eduard - Gabriel Munteanu | b9ce08c | 2008-08-10 20:14:03 +0300 | [diff] [blame] | 3404 | KMEMTRACE |
| 3405 | P: Eduard - Gabriel Munteanu |
| 3406 | M: eduard.munteanu@linux360.ro |
Eduard - Gabriel Munteanu | b9ce08c | 2008-08-10 20:14:03 +0300 | [diff] [blame] | 3407 | S: Maintained |
Joe Perches | dc8c7f8 | 2009-04-21 12:24:45 -0700 | [diff] [blame] | 3408 | F: Documentation/trace/kmemtrace.txt |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3409 | F: include/trace/kmemtrace.h |
| 3410 | F: kernel/trace/kmemtrace.c |
Eduard - Gabriel Munteanu | b9ce08c | 2008-08-10 20:14:03 +0300 | [diff] [blame] | 3411 | |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 3412 | KPROBES |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 3413 | P: Ananth N Mavinakayanahalli |
| 3414 | M: ananth@in.ibm.com |
| 3415 | P: Anil S Keshavamurthy |
| 3416 | M: anil.s.keshavamurthy@intel.com |
| 3417 | P: David S. Miller |
| 3418 | M: davem@davemloft.net |
Masami Hiramatsu | 6edef97 | 2008-03-26 15:53:19 -0400 | [diff] [blame] | 3419 | P: Masami Hiramatsu |
| 3420 | M: mhiramat@redhat.com |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 3421 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3422 | F: Documentation/kprobes.txt |
| 3423 | F: include/linux/kprobes.h |
| 3424 | F: kernel/kprobes.c |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 3425 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3426 | KS0108 LCD CONTROLLER DRIVER |
| 3427 | P: Miguel Ojeda Sandonis |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 3428 | M: miguel.ojeda.sandonis@gmail.com |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 3429 | W: http://miguelojeda.es/auxdisplay.htm |
| 3430 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3431 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3432 | F: Documentation/auxdisplay/ks0108 |
| 3433 | F: drivers/auxdisplay/ks0108.c |
| 3434 | F: include/linux/ks0108.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3435 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3436 | LAPB module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3437 | L: linux-x25@vger.kernel.org |
David S. Miller | bf9915c | 2006-07-21 14:55:17 -0700 | [diff] [blame] | 3438 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3439 | F: Documentation/networking/lapb-module.txt |
| 3440 | F: include/*/lapb.h |
| 3441 | F: net/lapb/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3442 | |
| 3443 | LASI 53c700 driver for PARISC |
| 3444 | P: James E.J. Bottomley |
| 3445 | M: James.Bottomley@HansenPartnership.com |
| 3446 | L: linux-scsi@vger.kernel.org |
| 3447 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3448 | F: Documentation/scsi/53c700.txt |
| 3449 | F: drivers/scsi/53c700* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3450 | |
Richard Purdie | 263de9b | 2006-05-15 09:44:16 -0700 | [diff] [blame] | 3451 | LED SUBSYSTEM |
| 3452 | P: Richard Purdie |
| 3453 | M: rpurdie@rpsys.net |
| 3454 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3455 | F: drivers/leds/ |
| 3456 | F: include/linux/leds.h |
Richard Purdie | 263de9b | 2006-05-15 09:44:16 -0700 | [diff] [blame] | 3457 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3458 | LEGO USB Tower driver |
| 3459 | P: Juergen Stuber |
| 3460 | M: starblue@users.sourceforge.net |
| 3461 | L: legousb-devel@lists.sourceforge.net |
| 3462 | W: http://legousb.sourceforge.net/ |
| 3463 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3464 | F: drivers/usb/misc/legousbtower.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3465 | |
Rusty Russell | 568a17f | 2007-10-25 14:12:24 +1000 | [diff] [blame] | 3466 | LGUEST |
| 3467 | P: Rusty Russell |
| 3468 | M: rusty@rustcorp.com.au |
| 3469 | L: lguest@ozlabs.org |
| 3470 | W: http://lguest.ozlabs.org/ |
| 3471 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3472 | F: Documentation/lguest/ |
| 3473 | F: arch/x86/lguest/ |
| 3474 | F: drivers/lguest/ |
| 3475 | F: include/linux/lguest*.h |
| 3476 | F: arch/x86/include/asm/lguest*.h |
Rusty Russell | 568a17f | 2007-10-25 14:12:24 +1000 | [diff] [blame] | 3477 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3478 | LINUX FOR IBM pSERIES (RS/6000) |
| 3479 | P: Paul Mackerras |
| 3480 | M: paulus@au.ibm.com |
| 3481 | W: http://www.ibm.com/linux/ltc/projects/ppc |
| 3482 | S: Supported |
| 3483 | |
Paul Mackerras | 852bb9f | 2008-07-04 21:04:42 +1000 | [diff] [blame] | 3484 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
Paul Mackerras | 852bb9f | 2008-07-04 21:04:42 +1000 | [diff] [blame] | 3485 | P: Benjamin Herrenschmidt |
| 3486 | M: benh@kernel.crashing.org |
Paul Mackerras | 92cde4d | 2009-01-02 15:40:55 +1100 | [diff] [blame] | 3487 | P: Paul Mackerras |
| 3488 | M: paulus@samba.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3489 | W: http://www.penguinppc.org/ |
| 3490 | L: linuxppc-dev@ozlabs.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3491 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3492 | S: Supported |
| 3493 | |
| 3494 | LINUX FOR POWER MACINTOSH |
| 3495 | P: Benjamin Herrenschmidt |
| 3496 | M: benh@kernel.crashing.org |
| 3497 | W: http://www.penguinppc.org/ |
| 3498 | L: linuxppc-dev@ozlabs.org |
| 3499 | S: Maintained |
| 3500 | |
Grant Likely | 77a7636 | 2008-07-12 12:11:43 -0600 | [diff] [blame] | 3501 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
Grant Likely | e1eea9f | 2007-10-09 14:45:26 -0600 | [diff] [blame] | 3502 | P: Grant Likely |
| 3503 | M: grant.likely@secretlab.ca |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3504 | L: linuxppc-dev@ozlabs.org |
Grant Likely | 9d37a90 | 2009-04-28 06:50:15 +0000 | [diff] [blame] | 3505 | T: git git://git.secretlab.ca/git/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3506 | S: Maintained |
| 3507 | |
| 3508 | LINUX FOR POWERPC EMBEDDED PPC4XX |
Josh Boyer | 9a474ff | 2007-09-19 21:19:07 -0500 | [diff] [blame] | 3509 | P: Josh Boyer |
| 3510 | M: jwboyer@linux.vnet.ibm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3511 | P: Matt Porter |
| 3512 | M: mporter@kernel.crashing.org |
| 3513 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 3514 | L: linuxppc-dev@ozlabs.org |
Josh Boyer | 9ae2ccf | 2009-04-24 08:57:47 -0400 | [diff] [blame] | 3515 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3516 | S: Maintained |
| 3517 | |
Grant Likely | 260c02a | 2007-10-02 12:15:34 +1000 | [diff] [blame] | 3518 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
| 3519 | P: Grant Likely |
| 3520 | M: grant.likely@secretlab.ca |
Grant Likely | f210d43 | 2007-10-03 23:24:52 -0600 | [diff] [blame] | 3521 | W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex |
Grant Likely | 260c02a | 2007-10-02 12:15:34 +1000 | [diff] [blame] | 3522 | L: linuxppc-dev@ozlabs.org |
Grant Likely | 9d37a90 | 2009-04-28 06:50:15 +0000 | [diff] [blame] | 3523 | T: git git://git.secretlab.ca/git/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3524 | S: Maintained |
| 3525 | |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 3526 | LINUX FOR POWERPC EMBEDDED PPC8XX |
Marcelo Tosatti | dba5baf | 2007-09-10 18:46:01 -0400 | [diff] [blame] | 3527 | P: Vitaly Bordug |
| 3528 | M: vitb@kernel.crashing.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 3529 | P: Marcelo Tosatti |
Marcelo Tosatti | 2e367a8 | 2006-05-15 09:44:08 -0700 | [diff] [blame] | 3530 | M: marcelo@kvack.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 3531 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 3532 | L: linuxppc-dev@ozlabs.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 3533 | S: Maintained |
| 3534 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3535 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3536 | P: Kumar Gala |
| 3537 | M: galak@kernel.crashing.org |
| 3538 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 3539 | L: linuxppc-dev@ozlabs.org |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3540 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3541 | |
Olof Johansson | ab06ff3 | 2006-09-06 14:44:54 -0500 | [diff] [blame] | 3542 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
| 3543 | P: Olof Johansson |
| 3544 | M: olof@lixom.net |
| 3545 | W: http://www.pasemi.com/ |
| 3546 | L: linuxppc-dev@ozlabs.org |
| 3547 | S: Supported |
| 3548 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3549 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
| 3550 | P: Chris Wright |
Chris Wright | 692a206 | 2006-03-11 03:27:19 -0800 | [diff] [blame] | 3551 | M: chrisw@sous-sol.org |
Chris Wright | 1a4520b | 2006-03-11 03:27:20 -0800 | [diff] [blame] | 3552 | L: linux-security-module@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3553 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3554 | S: Supported |
| 3555 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3556 | LLC (802.2) |
| 3557 | P: Arnaldo Carvalho de Melo |
| 3558 | M: acme@ghostprotocols.net |
| 3559 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3560 | F: include/linux/llc.h |
| 3561 | F: include/net/llc* |
| 3562 | F: net/llc/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3563 | |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 3564 | LIS3LV02D ACCELEROMETER DRIVER |
| 3565 | P: Eric Piel |
| 3566 | M: eric.piel@tremplin-utc.net |
| 3567 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3568 | F: Documentation/hwmon/lis3lv02d |
| 3569 | F: drivers/hwmon/lis3lv02d.* |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 3570 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3571 | LM83 HARDWARE MONITOR DRIVER |
| 3572 | P: Jean Delvare |
| 3573 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 3574 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3575 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3576 | F: Documentation/hwmon/lm83 |
| 3577 | F: drivers/hwmon/lm83.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3578 | |
| 3579 | LM90 HARDWARE MONITOR DRIVER |
| 3580 | P: Jean Delvare |
| 3581 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 3582 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3583 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3584 | F: Documentation/hwmon/lm90 |
| 3585 | F: drivers/hwmon/lm90.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3586 | |
Peter Zijlstra | 512e67f | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 3587 | LOCKDEP AND LOCKSTAT |
| 3588 | P: Peter Zijlstra |
| 3589 | M: peterz@infradead.org |
| 3590 | P: Ingo Molnar |
| 3591 | M: mingo@redhat.com |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3592 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git |
Peter Zijlstra | 512e67f | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 3593 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3594 | F: Documentation/lockdep*.txt |
| 3595 | F: Documentation/lockstat.txt |
| 3596 | F: include/linux/lockdep.h |
| 3597 | F: kernel/lockdep* |
Peter Zijlstra | 512e67f | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 3598 | |
Anton Altaparmakov | dde3334 | 2007-05-21 09:37:42 +0100 | [diff] [blame] | 3599 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3600 | P: Richard Russon (FlatCap) |
| 3601 | M: ldm@flatcap.org |
Anton Altaparmakov | dde3334 | 2007-05-21 09:37:42 +0100 | [diff] [blame] | 3602 | L: linux-ntfs-dev@lists.sourceforge.net |
| 3603 | W: http://www.linux-ntfs.org/content/view/19/37/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3604 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3605 | F: Documentation/ldm.txt |
| 3606 | F: fs/partitions/ldm.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3607 | |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 3608 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
| 3609 | P: Eric Moore |
Eric Moore | d8a82d7 | 2006-12-29 16:47:43 -0800 | [diff] [blame] | 3610 | M: Eric.Moore@lsi.com |
| 3611 | M: support@lsi.com |
Eric Moore | cec744f | 2007-09-14 19:08:08 -0600 | [diff] [blame] | 3612 | L: DL-MPTFusionLinux@lsi.com |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 3613 | L: linux-scsi@vger.kernel.org |
| 3614 | W: http://www.lsilogic.com/support |
| 3615 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3616 | F: drivers/message/fusion/ |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 3617 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3618 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
| 3619 | P: Matthew Wilcox |
| 3620 | M: matthew@wil.cx |
| 3621 | L: linux-scsi@vger.kernel.org |
| 3622 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3623 | F: drivers/scsi/sym53c8xx_2/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3624 | |
Mike Frysinger | 81365c3 | 2008-10-29 14:01:12 -0700 | [diff] [blame] | 3625 | LTP (Linux Test Project) |
| 3626 | P: Subrata Modak |
| 3627 | M: subrata@linux.vnet.ibm.com |
| 3628 | P: Mike Frysinger |
| 3629 | M: vapier@gentoo.org |
| 3630 | L: ltp-list@lists.sourceforge.net (subscribers-only) |
| 3631 | W: http://ltp.sourceforge.net/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3632 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git |
Mike Frysinger | 81365c3 | 2008-10-29 14:01:12 -0700 | [diff] [blame] | 3633 | S: Maintained |
| 3634 | |
Hirokazu Takata | c12a54b | 2007-07-15 23:38:45 -0700 | [diff] [blame] | 3635 | M32R ARCHITECTURE |
| 3636 | P: Hirokazu Takata |
| 3637 | M: takata@linux-m32r.org |
| 3638 | L: linux-m32r@ml.linux-m32r.org |
| 3639 | L: linux-m32r-ja@ml.linux-m32r.org (in Japanese) |
| 3640 | W: http://www.linux-m32r.org/ |
| 3641 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3642 | F: arch/m32r/ |
Hirokazu Takata | c12a54b | 2007-07-15 23:38:45 -0700 | [diff] [blame] | 3643 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3644 | M68K ARCHITECTURE |
| 3645 | P: Geert Uytterhoeven |
| 3646 | M: geert@linux-m68k.org |
| 3647 | P: Roman Zippel |
| 3648 | M: zippel@linux-m68k.org |
| 3649 | L: linux-m68k@lists.linux-m68k.org |
| 3650 | W: http://www.linux-m68k.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3651 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3652 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3653 | F: arch/m68k/ |
Joe Perches | 9db3518 | 2009-04-08 08:39:56 -0700 | [diff] [blame] | 3654 | F: drivers/zorro/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3655 | |
| 3656 | M68K ON APPLE MACINTOSH |
| 3657 | P: Joshua Thompson |
| 3658 | M: funaho@jurai.org |
| 3659 | W: http://www.mac.linux-m68k.org/ |
Finn Thain | 9bb9f22 | 2007-11-18 11:10:05 +0100 | [diff] [blame] | 3660 | L: linux-m68k@lists.linux-m68k.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3661 | S: Maintained |
Joe Perches | 9db3518 | 2009-04-08 08:39:56 -0700 | [diff] [blame] | 3662 | F: arch/m68k/mac/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3663 | |
| 3664 | M68K ON HP9000/300 |
| 3665 | P: Philip Blundell |
| 3666 | M: philb@gnu.org |
| 3667 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
| 3668 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3669 | F: arch/m68k/hp300/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3670 | |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 3671 | MAC80211 |
Johannes Berg | 31c7cec | 2007-10-23 17:05:25 +0200 | [diff] [blame] | 3672 | P: Johannes Berg |
| 3673 | M: johannes@sipsolutions.net |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 3674 | L: linux-wireless@vger.kernel.org |
| 3675 | W: http://linuxwireless.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3676 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 3677 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3678 | F: Documentation/networking/mac80211-injection.txt |
| 3679 | F: include/net/mac80211.h |
| 3680 | F: net/mac80211/ |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 3681 | |
Stefano Brivio | 1036d86 | 2007-12-23 04:46:27 +0100 | [diff] [blame] | 3682 | MAC80211 PID RATE CONTROL |
| 3683 | P: Stefano Brivio |
| 3684 | M: stefano.brivio@polimi.it |
| 3685 | P: Mattias Nissler |
| 3686 | M: mattias.nissler@gmx.de |
| 3687 | L: linux-wireless@vger.kernel.org |
| 3688 | W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3689 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git |
Stefano Brivio | 1036d86 | 2007-12-23 04:46:27 +0100 | [diff] [blame] | 3690 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3691 | F: net/mac80211/rc80211_pid* |
Stefano Brivio | 1036d86 | 2007-12-23 04:46:27 +0100 | [diff] [blame] | 3692 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 3693 | MACVLAN DRIVER |
| 3694 | P: Patrick McHardy |
| 3695 | M: kaber@trash.net |
| 3696 | L: netdev@vger.kernel.org |
| 3697 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3698 | F: drivers/net/macvlan.c |
| 3699 | F: include/linux/if_macvlan.h |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 3700 | |
Michael Kerrisk | faf1668 | 2005-07-31 22:34:47 -0700 | [diff] [blame] | 3701 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3702 | P: Michael Kerrisk |
Michael Kerrisk | 1d7f502 | 2007-10-16 23:30:31 -0700 | [diff] [blame] | 3703 | M: mtk.manpages@gmail.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 3704 | W: http://www.kernel.org/doc/man-pages |
Michael Kerrisk | bd7ebec | 2008-10-03 15:23:44 -0700 | [diff] [blame] | 3705 | L: linux-man@vger.kernel.org |
Michael Kerrisk | 1b53dc7 | 2009-03-12 14:31:32 -0700 | [diff] [blame] | 3706 | S: Maintained |
Michael Kerrisk | faf1668 | 2005-07-31 22:34:47 -0700 | [diff] [blame] | 3707 | |
Stefano Brivio | 74cda16 | 2007-11-19 20:27:46 +0100 | [diff] [blame] | 3708 | MARVELL LIBERTAS WIRELESS DRIVER |
| 3709 | P: Dan Williams |
| 3710 | M: dcbw@redhat.com |
| 3711 | L: libertas-dev@lists.infradead.org |
| 3712 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3713 | F: drivers/net/wireless/libertas/ |
Stefano Brivio | 74cda16 | 2007-11-19 20:27:46 +0100 | [diff] [blame] | 3714 | |
Dale Farnsworth | b60d697 | 2006-01-16 16:45:45 -0700 | [diff] [blame] | 3715 | MARVELL MV643XX ETHERNET DRIVER |
Dale Farnsworth | 85ba9d9 | 2008-06-05 06:10:51 -0700 | [diff] [blame] | 3716 | P: Lennert Buytenhek |
| 3717 | M: buytenh@marvell.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 3718 | L: netdev@vger.kernel.org |
Dale Farnsworth | 85ba9d9 | 2008-06-05 06:10:51 -0700 | [diff] [blame] | 3719 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3720 | F: drivers/net/mv643xx_eth.* |
| 3721 | F: include/linux/mv643xx.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3722 | |
Pierre Ossman | 2a69567 | 2009-03-16 19:52:26 +0100 | [diff] [blame] | 3723 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
| 3724 | P: Nicolas Pitre |
| 3725 | M: nico@cam.org |
Pierre Ossman | 2a69567 | 2009-03-16 19:52:26 +0100 | [diff] [blame] | 3726 | S: Maintained |
| 3727 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3728 | MARVELL YUKON / SYSKONNECT DRIVER |
| 3729 | P: Mirko Lindner |
| 3730 | M: mlindner@syskonnect.de |
| 3731 | P: Ralph Roesler |
| 3732 | M: rroesler@syskonnect.de |
| 3733 | W: http://www.syskonnect.com |
| 3734 | S: Supported |
| 3735 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3736 | MATROX FRAMEBUFFER DRIVER |
| 3737 | P: Petr Vandrovec |
| 3738 | M: vandrove@vc.cvut.cz |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 3739 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3740 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3741 | F: drivers/video/matrox/matroxfb_* |
| 3742 | F: include/linux/matroxfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3743 | |
Hans-Juergen Koch | d20620d | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 3744 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
| 3745 | P: Hans J. Koch |
| 3746 | M: hjk@linutronix.de |
| 3747 | L: lm-sensors@lm-sensors.org |
| 3748 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3749 | F: Documentation/hwmon/max6650 |
| 3750 | F: drivers/hwmon/max6650.c |
Hans-Juergen Koch | d20620d | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 3751 | |
Joe Perches | 127c49a | 2009-04-08 08:34:04 -0700 | [diff] [blame] | 3752 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
| 3753 | P: Mauro Carvalho Chehab |
| 3754 | M: mchehab@infradead.org |
| 3755 | P: LinuxTV.org Project |
| 3756 | L: linux-media@vger.kernel.org |
| 3757 | W: http://linuxtv.org |
| 3758 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
| 3759 | S: Maintained |
| 3760 | F: Documentation/dvb/ |
| 3761 | F: Documentation/video4linux/ |
| 3762 | F: drivers/media/ |
| 3763 | F: include/media/ |
| 3764 | F: include/linux/dvb/ |
| 3765 | F: include/linux/videodev*.h |
Steven Rostedt | 70ea91f | 2006-07-30 03:03:53 -0700 | [diff] [blame] | 3766 | |
| 3767 | MEGARAID SCSI DRIVERS |
David Woodhouse | f4e9ce66c | 2006-04-11 19:29:07 -0400 | [diff] [blame] | 3768 | P: Neela Syam Kolli |
Sumant Patro | bdd0d757 | 2007-05-10 07:22:35 -0700 | [diff] [blame] | 3769 | M: megaraidlinux@lsi.com |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 3770 | L: linux-scsi@vger.kernel.org |
Kolli, Neela Syam | 757e010 | 2005-10-14 15:59:13 -0700 | [diff] [blame] | 3771 | W: http://megaraid.lsilogic.com |
| 3772 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3773 | F: Documentation/scsi/megaraid.txt |
| 3774 | F: drivers/scsi/megaraid.* |
| 3775 | F: drivers/scsi/megaraid/ |
Kolli, Neela Syam | 757e010 | 2005-10-14 15:59:13 -0700 | [diff] [blame] | 3776 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3777 | MEMORY MANAGEMENT |
| 3778 | L: linux-mm@kvack.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3779 | W: http://www.linux-mm.org |
| 3780 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3781 | F: include/linux/mm.h |
| 3782 | F: mm/ |
David Woodhouse | f4e9ce66c | 2006-04-11 19:29:07 -0400 | [diff] [blame] | 3783 | |
akpm@linux-foundation.org | 938a920 | 2008-03-04 14:28:29 -0800 | [diff] [blame] | 3784 | MEMORY RESOURCE CONTROLLER |
| 3785 | P: Balbir Singh |
| 3786 | M: balbir@linux.vnet.ibm.com |
| 3787 | P: Pavel Emelyanov |
| 3788 | M: xemul@openvz.org |
| 3789 | P: KAMEZAWA Hiroyuki |
| 3790 | M: kamezawa.hiroyu@jp.fujitsu.com |
| 3791 | L: linux-mm@kvack.org |
akpm@linux-foundation.org | 938a920 | 2008-03-04 14:28:29 -0800 | [diff] [blame] | 3792 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3793 | F: mm/memcontrol.c |
akpm@linux-foundation.org | 938a920 | 2008-03-04 14:28:29 -0800 | [diff] [blame] | 3794 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3795 | MEMORY TECHNOLOGY DEVICES (MTD) |
| 3796 | P: David Woodhouse |
| 3797 | M: dwmw2@infradead.org |
| 3798 | W: http://www.linux-mtd.infradead.org/ |
| 3799 | L: linux-mtd@lists.infradead.org |
Josh Boyer | 2c560ac | 2005-11-23 15:43:57 -0800 | [diff] [blame] | 3800 | T: git git://git.infradead.org/mtd-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3801 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3802 | F: drivers/mtd/ |
| 3803 | F: include/linux/mtd/ |
| 3804 | F: include/mtd/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3805 | |
Michal Simek | c6375b0 | 2009-03-27 14:25:52 +0100 | [diff] [blame] | 3806 | MICROBLAZE ARCHITECTURE |
| 3807 | P: Michal Simek |
| 3808 | M: monstr@monstr.eu |
| 3809 | L: microblaze-uclinux@itee.uq.edu.au |
| 3810 | W: http://www.monstr.eu/fdt/ |
| 3811 | T: git git://git.monstr.eu/linux-2.6-microblaze.git |
| 3812 | S: Supported |
Michal Simek | 0a8c791 | 2009-04-14 11:38:57 +0200 | [diff] [blame] | 3813 | F: arch/microblaze/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3814 | |
| 3815 | MICROTEK X6 SCANNER |
| 3816 | P: Oliver Neukum |
| 3817 | M: oliver@neukum.name |
| 3818 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3819 | F: drivers/usb/image/microtek.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3820 | |
| 3821 | MIPS |
| 3822 | P: Ralf Baechle |
| 3823 | M: ralf@linux-mips.org |
Ralf Baechle | d50f7ec | 2005-10-04 13:30:10 +0100 | [diff] [blame] | 3824 | W: http://www.linux-mips.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3825 | L: linux-mips@linux-mips.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3826 | T: git git://git.linux-mips.org/pub/scm/linux.git |
Ralf Baechle | 7425b34 | 2006-03-10 13:47:21 +0000 | [diff] [blame] | 3827 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3828 | F: Documentation/mips/ |
| 3829 | F: arch/mips/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3830 | |
| 3831 | MISCELLANEOUS MCA-SUPPORT |
| 3832 | P: James Bottomley |
James Bottomley | c4e1608 | 2007-11-03 08:40:30 -0500 | [diff] [blame] | 3833 | M: James.Bottomley@HansenPartnership.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3834 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3835 | F: Documentation/ia64/mca.txt |
| 3836 | F: Documentation/mca.txt |
| 3837 | F: drivers/mca/ |
| 3838 | F: include/linux/mca* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3839 | |
| 3840 | MODULE SUPPORT |
| 3841 | P: Rusty Russell |
| 3842 | M: rusty@rustcorp.com.au |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3843 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3844 | F: include/linux/module.h |
| 3845 | F: kernel/module.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3846 | |
| 3847 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER |
| 3848 | P: Stelian Pop |
| 3849 | M: stelian@popies.net |
| 3850 | W: http://popies.net/meye/ |
| 3851 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3852 | F: Documentation/video4linux/meye.txt |
| 3853 | F: drivers/media/video/meye.* |
| 3854 | F: include/linux/meye.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3855 | |
Pavel Pisa | c58ff04 | 2007-05-16 01:10:41 +0200 | [diff] [blame] | 3856 | MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER |
| 3857 | P: Pavel Pisa |
| 3858 | M: ppisa@pikron.com |
| 3859 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Pavel Pisa | c58ff04 | 2007-05-16 01:10:41 +0200 | [diff] [blame] | 3860 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3861 | F: drivers/mmc/host/imxmmc.* |
Pavel Pisa | c58ff04 | 2007-05-16 01:10:41 +0200 | [diff] [blame] | 3862 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3863 | MOUSE AND MISC DEVICES [GENERAL] |
| 3864 | P: Alessandro Rubini |
| 3865 | M: rubini@ipvvis.unipv.it |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3866 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3867 | F: drivers/input/mouse/ |
| 3868 | F: include/linux/gpio_mouse.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3869 | |
Jiri Slaby | b9705b6 | 2008-04-30 00:53:48 -0700 | [diff] [blame] | 3870 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3871 | P: Jiri Slaby |
| 3872 | M: jirislaby@gmail.com |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3873 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3874 | F: Documentation/serial/moxa-smartio |
| 3875 | F: drivers/char/mxser.* |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3876 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 3877 | MSI LAPTOP SUPPORT |
| 3878 | P: Lennart Poettering |
| 3879 | M: mzxreary@0pointer.de |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 3880 | W: https://tango.0pointer.de/mailman/listinfo/s270-linux |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 3881 | W: http://0pointer.de/lennart/tchibo.html |
| 3882 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3883 | F: drivers/platform/x86/msi-laptop.c |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 3884 | |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 3885 | MULTIFUNCTION DEVICES (MFD) |
| 3886 | P: Samuel Ortiz |
Samuel Ortiz | 895d9f0 | 2009-03-23 00:46:18 +0100 | [diff] [blame] | 3887 | M: sameo@linux.intel.com |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3888 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 3889 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3890 | F: drivers/mfd/ |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 3891 | |
Pierre Ossman | 5c4e6f1 | 2007-05-21 20:23:20 +0200 | [diff] [blame] | 3892 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
Pierre Ossman | b9f5d80 | 2006-10-17 00:09:30 -0700 | [diff] [blame] | 3893 | P: Pierre Ossman |
Pierre Ossman | 32710e8 | 2009-04-08 20:14:54 +0200 | [diff] [blame] | 3894 | M: pierre@ossman.eu |
Pierre Ossman | b9f5d80 | 2006-10-17 00:09:30 -0700 | [diff] [blame] | 3895 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3896 | F: drivers/mmc/ |
| 3897 | F: include/linux/mmc/ |
Russell King | baca2da | 2006-06-04 17:36:31 +0100 | [diff] [blame] | 3898 | |
David Brownell | 15a0580 | 2007-08-08 09:12:54 -0700 | [diff] [blame] | 3899 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
| 3900 | P: David Brownell |
| 3901 | M: dbrownell@users.sourceforge.net |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 3902 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3903 | F: drivers/mmc/host/mmc_spi.c |
| 3904 | F: include/linux/spi/mmc_spi.h |
David Brownell | 15a0580 | 2007-08-08 09:12:54 -0700 | [diff] [blame] | 3905 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3906 | MULTISOUND SOUND DRIVER |
| 3907 | P: Andrew Veliath |
| 3908 | M: andrewtv@usa.net |
| 3909 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3910 | F: Documentation/sound/oss/MultiSound |
| 3911 | F: sound/oss/msnd* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3912 | |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3913 | MULTITECH MULTIPORT CARD (ISICOM) |
| 3914 | P: Jiri Slaby |
| 3915 | M: jirislaby@gmail.com |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3916 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3917 | F: drivers/char/isicom.c |
| 3918 | F: include/linux/isicom.h |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3919 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 3920 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 3921 | P: Felipe Balbi |
| 3922 | M: felipe.balbi@nokia.com |
| 3923 | L: linux-usb@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3924 | T: git git://gitorious.org/musb/mainline.git |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 3925 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3926 | F: drivers/usb/musb/ |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 3927 | |
Brice Goglin | 2d3cf58 | 2008-05-17 12:45:36 +0200 | [diff] [blame] | 3928 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
| 3929 | P: Andrew Gallatin |
| 3930 | M: gallatin@myri.com |
| 3931 | P: Brice Goglin |
| 3932 | M: brice@myri.com |
| 3933 | L: netdev@vger.kernel.org |
| 3934 | W: http://www.myri.com/scs/download-Myri10GE.html |
| 3935 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3936 | F: drivers/net/myri10ge/ |
Brice Goglin | 2d3cf58 | 2008-05-17 12:45:36 +0200 | [diff] [blame] | 3937 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3938 | NATSEMI ETHERNET DRIVER (DP8381x) |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 3939 | P: Tim Hockin |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3940 | M: thockin@hockin.org |
| 3941 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3942 | F: drivers/net/natsemi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3943 | |
| 3944 | NCP FILESYSTEM |
| 3945 | P: Petr Vandrovec |
| 3946 | M: vandrove@vc.cvut.cz |
| 3947 | L: linware@sh.cvut.cz |
| 3948 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3949 | F: fs/ncpfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3950 | |
| 3951 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
| 3952 | P: James E.J. Bottomley |
| 3953 | M: James.Bottomley@HansenPartnership.com |
| 3954 | L: linux-scsi@vger.kernel.org |
| 3955 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3956 | F: drivers/scsi/NCR_D700.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3957 | |
Glenn Streiff | 3c2d774 | 2008-02-04 20:20:45 -0800 | [diff] [blame] | 3958 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
| 3959 | P: Faisal Latif |
Roland Dreier | 7b49d95 | 2008-10-16 15:39:14 -0700 | [diff] [blame] | 3960 | M: faisal.latif@intel.com |
Chien Tung | 5f62560 | 2008-05-26 15:23:32 -0700 | [diff] [blame] | 3961 | P: Chien Tung |
Roland Dreier | 7b49d95 | 2008-10-16 15:39:14 -0700 | [diff] [blame] | 3962 | M: chien.tin.tung@intel.com |
Glenn Streiff | 3c2d774 | 2008-02-04 20:20:45 -0800 | [diff] [blame] | 3963 | L: general@lists.openfabrics.org |
| 3964 | W: http://www.neteffect.com |
| 3965 | S: Supported |
| 3966 | F: drivers/infiniband/hw/nes/ |
| 3967 | |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 3968 | NETEM NETWORK EMULATOR |
| 3969 | P: Stephen Hemminger |
Stephen Hemminger | 65ebe634 | 2007-01-23 11:38:57 -0800 | [diff] [blame] | 3970 | M: shemminger@linux-foundation.org |
David Brownell | f318a63 | 2007-04-23 14:41:06 -0700 | [diff] [blame] | 3971 | L: netem@lists.linux-foundation.org |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 3972 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3973 | F: net/sched/sch_netem.c |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 3974 | |
Ramkrishna Vepa | b136d1c | 2009-04-01 18:14:25 +0000 | [diff] [blame] | 3975 | NETERION (S2IO) 10GbE DRIVER (xframe/vxge) |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 3976 | P: Ramkrishna Vepa |
| 3977 | M: ram.vepa@neterion.com |
| 3978 | P: Rastapur Santosh |
| 3979 | M: santosh.rastapur@neterion.com |
| 3980 | P: Sivakumar Subramani |
| 3981 | M: sivakumar.subramani@neterion.com |
| 3982 | P: Sreenivasa Honnur |
| 3983 | M: sreenivasa.honnur@neterion.com |
Ramkrishna Vepa | b136d1c | 2009-04-01 18:14:25 +0000 | [diff] [blame] | 3984 | P: Anil Murthy |
| 3985 | M: anil.murthy@neterion.com |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 3986 | L: netdev@vger.kernel.org |
Ramkrishna Vepa | b136d1c | 2009-04-01 18:14:25 +0000 | [diff] [blame] | 3987 | W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous |
| 3988 | W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 3989 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3990 | F: Documentation/networking/s2io.txt |
| 3991 | F: drivers/net/s2io* |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 3992 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3993 | NETFILTER/IPTABLES/IPCHAINS |
| 3994 | P: Rusty Russell |
| 3995 | P: Marc Boucher |
| 3996 | P: James Morris |
| 3997 | P: Harald Welte |
| 3998 | P: Jozsef Kadlecsik |
Patrick McHardy | 82b9854 | 2006-10-12 14:08:55 -0700 | [diff] [blame] | 3999 | P: Patrick McHardy |
| 4000 | M: kaber@trash.net |
Patrick McHardy | 1a03b81 | 2007-09-18 13:19:26 -0700 | [diff] [blame] | 4001 | L: netfilter-devel@vger.kernel.org |
| 4002 | L: netfilter@vger.kernel.org |
Patrick McHardy | 82b9854 | 2006-10-12 14:08:55 -0700 | [diff] [blame] | 4003 | L: coreteam@netfilter.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4004 | W: http://www.netfilter.org/ |
| 4005 | W: http://www.iptables.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4006 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4007 | F: include/linux/netfilter* |
| 4008 | F: include/linux/netfilter/ |
| 4009 | F: include/net/netfilter/ |
| 4010 | F: net/*/netfilter.c |
| 4011 | F: net/*/netfilter/ |
| 4012 | F: net/netfilter/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4013 | |
Paul Moore | 4cc6773 | 2006-09-25 15:57:13 -0700 | [diff] [blame] | 4014 | NETLABEL |
| 4015 | P: Paul Moore |
| 4016 | M: paul.moore@hp.com |
| 4017 | W: http://netlabel.sf.net |
| 4018 | L: netdev@vger.kernel.org |
| 4019 | S: Supported |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 4020 | F: Documentation/netlabel/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4021 | F: include/net/netlabel.h |
| 4022 | F: net/netlabel/ |
Paul Moore | 4cc6773 | 2006-09-25 15:57:13 -0700 | [diff] [blame] | 4023 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4024 | NETROM NETWORK LAYER |
| 4025 | P: Ralf Baechle |
| 4026 | M: ralf@linux-mips.org |
| 4027 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 4028 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4029 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4030 | F: include/linux/netrom.h |
| 4031 | F: include/net/netrom.h |
| 4032 | F: net/netrom/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4033 | |
Pavel Machek | 5ddb88c | 2006-09-29 02:01:29 -0700 | [diff] [blame] | 4034 | NETWORK BLOCK DEVICE (NBD) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4035 | P: Paul Clements |
| 4036 | M: Paul.Clements@steeleye.com |
| 4037 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4038 | F: Documentation/blockdev/nbd.txt |
| 4039 | F: drivers/block/nbd.c |
| 4040 | F: include/linux/nbd.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4041 | |
| 4042 | NETWORKING [GENERAL] |
Ben Hutchings | 48f6e89 | 2009-04-09 05:47:41 +0000 | [diff] [blame] | 4043 | P: David S. Miller |
| 4044 | M: davem@davemloft.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 4045 | L: netdev@vger.kernel.org |
Joe Perches | b1e8fd5 | 2009-04-16 09:38:46 +0000 | [diff] [blame] | 4046 | W: http://www.linuxfoundation.org/en/Net |
| 4047 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4048 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4049 | F: net/ |
| 4050 | F: include/net/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4051 | |
| 4052 | NETWORKING [IPv4/IPv6] |
| 4053 | P: David S. Miller |
| 4054 | M: davem@davemloft.net |
| 4055 | P: Alexey Kuznetsov |
| 4056 | M: kuznet@ms2.inr.ac.ru |
| 4057 | P: Pekka Savola (ipv6) |
| 4058 | M: pekkas@netcore.fi |
| 4059 | P: James Morris |
James Morris | 48de5be | 2005-08-08 10:29:08 -0400 | [diff] [blame] | 4060 | M: jmorris@namei.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4061 | P: Hideaki YOSHIFUJI |
| 4062 | M: yoshfuji@linux-ipv6.org |
| 4063 | P: Patrick McHardy |
Patrick McHardy | 1a03b81 | 2007-09-18 13:19:26 -0700 | [diff] [blame] | 4064 | M: kaber@trash.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 4065 | L: netdev@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4066 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4067 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4068 | F: net/ipv4/ |
| 4069 | F: net/ipv6/ |
| 4070 | F: include/net/ip* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4071 | |
James Morris | 10e2ff1 | 2007-08-25 14:41:28 -0700 | [diff] [blame] | 4072 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
| 4073 | P: Paul Moore |
| 4074 | M: paul.moore@hp.com |
| 4075 | L: netdev@vger.kernel.org |
| 4076 | S: Maintained |
| 4077 | |
John W. Linville | 29f8f63 | 2006-01-18 14:52:48 -0800 | [diff] [blame] | 4078 | NETWORKING [WIRELESS] |
| 4079 | P: John W. Linville |
| 4080 | M: linville@tuxdriver.com |
Randy Dunlap | 2cb4abd | 2007-02-07 15:52:36 -0800 | [diff] [blame] | 4081 | L: linux-wireless@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4082 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git |
John W. Linville | 29f8f63 | 2006-01-18 14:52:48 -0800 | [diff] [blame] | 4083 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4084 | F: net/wireless/ |
| 4085 | F: include/net/ieee80211* |
| 4086 | F: include/net/wireless.h |
John W. Linville | 29f8f63 | 2006-01-18 14:52:48 -0800 | [diff] [blame] | 4087 | |
Joe Perches | 788873a | 2009-04-16 09:38:45 +0000 | [diff] [blame] | 4088 | NETWORKING DRIVERS |
| 4089 | L: netdev@vger.kernel.org |
| 4090 | W: http://www.linuxfoundation.org/en/Net |
| 4091 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git |
| 4092 | S: Odd Fixes |
| 4093 | F: drivers/net/ |
| 4094 | |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 4095 | NETXEN (1/10) GbE SUPPORT |
dhananjay@netxen.com | d230ce3 | 2007-12-26 10:23:53 -0800 | [diff] [blame] | 4096 | P: Dhananjay Phadke |
| 4097 | M: dhananjay@netxen.com |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 4098 | L: netdev@vger.kernel.org |
| 4099 | W: http://www.netxen.com |
| 4100 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4101 | F: drivers/net/netxen/ |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 4102 | |
J. Bruce Fields | e8b4355 | 2008-07-23 08:49:50 -0400 | [diff] [blame] | 4103 | NFS, SUNRPC, AND LOCKD CLIENTS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4104 | P: Trond Myklebust |
Trond Myklebust | 78f5815 | 2007-12-12 20:16:06 -0500 | [diff] [blame] | 4105 | M: Trond.Myklebust@netapp.com |
| 4106 | L: linux-nfs@vger.kernel.org |
| 4107 | W: http://client.linux-nfs.org |
| 4108 | T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4109 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4110 | F: fs/lockd/ |
| 4111 | F: fs/nfs/ |
| 4112 | F: fs/nfs_common/ |
| 4113 | F: net/sunrpc/ |
| 4114 | F: include/linux/lockd/ |
| 4115 | F: include/linux/nfs* |
| 4116 | F: include/linux/sunrpc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4117 | |
| 4118 | NI5010 NETWORK DRIVER |
Andreas Mohr | 5b552b1 | 2006-06-30 02:25:07 -0700 | [diff] [blame] | 4119 | P: Jan-Pascal van Best |
| 4120 | M: janpascal@vanbest.org |
| 4121 | P: Andreas Mohr |
| 4122 | M: andi@lisas.de |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 4123 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4124 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4125 | F: drivers/net/ni5010.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4126 | |
Ryusuke Konishi | 85ef9ce | 2009-04-06 19:01:46 -0700 | [diff] [blame] | 4127 | NILFS2 FILESYSTEM |
| 4128 | P: KONISHI Ryusuke |
| 4129 | M: konishi.ryusuke@lab.ntt.co.jp |
| 4130 | L: users@nilfs.org |
| 4131 | W: http://www.nilfs.org/en/ |
| 4132 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4133 | F: Documentation/filesystems/nilfs2.txt |
| 4134 | F: fs/nilfs2/ |
| 4135 | F: include/linux/nilfs2_fs.h |
Ryusuke Konishi | 85ef9ce | 2009-04-06 19:01:46 -0700 | [diff] [blame] | 4136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4137 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
| 4138 | P: YOKOTA Hiroshi |
| 4139 | M: yokota@netlab.is.tsukuba.ac.jp |
| 4140 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
| 4141 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4142 | F: Documentation/scsi/NinjaSCSI.txt |
| 4143 | F: drivers/scsi/pcmcia/nsp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4144 | |
| 4145 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER |
| 4146 | P: GOTO Masanori |
| 4147 | M: gotom@debian.or.jp |
| 4148 | P: YOKOTA Hiroshi |
| 4149 | M: yokota@netlab.is.tsukuba.ac.jp |
| 4150 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
| 4151 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4152 | F: Documentation/scsi/NinjaSCSI.txt |
| 4153 | F: drivers/scsi/nsp32* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4154 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4155 | NTFS FILESYSTEM |
| 4156 | P: Anton Altaparmakov |
| 4157 | M: aia21@cantab.net |
| 4158 | L: linux-ntfs-dev@lists.sourceforge.net |
Adrian Bunk | 169ccbd | 2008-09-02 14:35:37 -0700 | [diff] [blame] | 4159 | W: http://www.linux-ntfs.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4160 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4161 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4162 | F: Documentation/filesystems/ntfs.txt |
| 4163 | F: fs/ntfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4164 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 4165 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4166 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 4167 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 4168 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4169 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4170 | F: drivers/video/riva/ |
| 4171 | F: drivers/video/nvidia/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4172 | |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 4173 | OMAP SUPPORT |
| 4174 | P: Tony Lindgren <tony@atomide.com> |
| 4175 | M: tony@atomide.com |
| 4176 | L: linux-omap@vger.kernel.org |
| 4177 | W: http://www.muru.com/linux/omap/ |
| 4178 | W: http://linux.omap.com/ |
| 4179 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git |
| 4180 | S: Maintained |
| 4181 | F: arch/arm/*omap* |
| 4182 | |
| 4183 | OMAP CLOCK FRAMEWORK SUPPORT |
| 4184 | P: Paul Walmsley |
| 4185 | M: paul@pwsan.com |
| 4186 | L: linux-omap@vger.kernel.org |
| 4187 | S: Maintained |
| 4188 | F: arch/arm/*omap*/*clock* |
| 4189 | |
| 4190 | OMAP POWER MANAGEMENT SUPPORT |
| 4191 | P: Kevin Hilman |
| 4192 | M: khilman@deeprootsystems.com |
| 4193 | L: linux-omap@vger.kernel.org |
| 4194 | S: Maintained |
| 4195 | F: arch/arm/*omap*/*pm* |
| 4196 | |
| 4197 | OMAP AUDIO SUPPORT |
| 4198 | P: Jarkko Nikula |
| 4199 | M: jhnikula@gmail.com |
| 4200 | L: alsa-devel@alsa-project.org (subscribers-only) |
| 4201 | L: linux-omap@vger.kernel.org |
| 4202 | S: Maintained |
| 4203 | F: sound/soc/omap/ |
| 4204 | |
| 4205 | OMAP FRAMEBUFFER SUPPORT |
| 4206 | P: Imre Deak |
| 4207 | M: imre.deak@nokia.com |
| 4208 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 4209 | L: linux-omap@vger.kernel.org |
| 4210 | S: Maintained |
| 4211 | F: drivers/video/omap/ |
| 4212 | |
| 4213 | OMAP MMC SUPPORT |
| 4214 | P: Jarkko Lavinen |
| 4215 | M: jarkko.lavinen@nokia.com |
| 4216 | L: linux-kernel@vger.kernel.org |
| 4217 | L: linux-omap@vger.kernel.org |
| 4218 | S: Maintained |
| 4219 | F: drivers/mmc/host/*omap* |
| 4220 | |
| 4221 | OMAP RANDOM NUMBER GENERATOR SUPPORT |
| 4222 | P: Deepak Saxena |
| 4223 | M: dsaxena@plexity.net |
| 4224 | S: Maintained |
| 4225 | F: drivers/char/hw_random/omap-rng.c |
| 4226 | |
| 4227 | OMAP USB SUPPORT |
| 4228 | P: Felipe Balbi |
| 4229 | M: felipe.balbi@nokia.com |
| 4230 | P: David Brownell |
| 4231 | M: dbrownell@users.sourceforge.net |
| 4232 | L: linux-usb@vger.kernel.org |
| 4233 | L: linux-omap@vger.kernel.org |
| 4234 | S: Maintained |
| 4235 | |
Bob Copeland | 0ad122d | 2008-07-25 19:45:18 -0700 | [diff] [blame] | 4236 | OMFS FILESYSTEM |
| 4237 | P: Bob Copeland |
| 4238 | M: me@bobcopeland.com |
| 4239 | L: linux-karma-devel@lists.sourceforge.net |
| 4240 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4241 | F: Documentation/filesystems/omfs.txt |
| 4242 | F: fs/omfs/ |
Bob Copeland | 0ad122d | 2008-07-25 19:45:18 -0700 | [diff] [blame] | 4243 | |
Harald Welte | c1986ee | 2005-11-13 16:06:29 -0800 | [diff] [blame] | 4244 | OMNIKEY CARDMAN 4000 DRIVER |
| 4245 | P: Harald Welte |
| 4246 | M: laforge@gnumonks.org |
| 4247 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4248 | F: drivers/char/pcmcia/cm4000_cs.c |
| 4249 | F: include/linux/cm4000_cs.h |
Harald Welte | c1986ee | 2005-11-13 16:06:29 -0800 | [diff] [blame] | 4250 | |
Harald Welte | 77c44ab | 2005-11-13 16:06:26 -0800 | [diff] [blame] | 4251 | OMNIKEY CARDMAN 4040 DRIVER |
| 4252 | P: Harald Welte |
| 4253 | M: laforge@gnumonks.org |
| 4254 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4255 | F: drivers/char/pcmcia/cm4040_cs.* |
Harald Welte | 77c44ab | 2005-11-13 16:06:26 -0800 | [diff] [blame] | 4256 | |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 4257 | OMNIVISION OV7670 SENSOR DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 4258 | P: Jonathan Corbet |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 4259 | M: corbet@lwn.net |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 4260 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4261 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 4262 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4263 | F: drivers/media/video/ov7670.c |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 4264 | |
Thomas Gleixner | 431bca7 | 2007-05-02 09:31:35 +0200 | [diff] [blame] | 4265 | ONENAND FLASH DRIVER |
| 4266 | P: Kyungmin Park |
| 4267 | M: kyungmin.park@samsung.com |
| 4268 | L: linux-mtd@lists.infradead.org |
| 4269 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4270 | F: drivers/mtd/onenand/ |
| 4271 | F: include/linux/mtd/onenand*.h |
Thomas Gleixner | 431bca7 | 2007-05-02 09:31:35 +0200 | [diff] [blame] | 4272 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4273 | ONSTREAM SCSI TAPE DRIVER |
| 4274 | P: Willem Riede |
| 4275 | M: osst@riede.org |
| 4276 | L: osst-users@lists.sourceforge.net |
| 4277 | L: linux-scsi@vger.kernel.org |
| 4278 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4279 | F: drivers/scsi/osst* |
| 4280 | F: drivers/scsi/st* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4281 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4282 | OPENCORES I2C BUS DRIVER |
| 4283 | P: Peter Korsgaard |
| 4284 | M: jacmet@sunsite.dk |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 4285 | L: linux-i2c@vger.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4286 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4287 | F: Documentation/i2c/busses/i2c-ocores |
| 4288 | F: drivers/i2c/busses/i2c-ocores.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4289 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4290 | OPROFILE |
Robert Richter | d1a5d19 | 2008-07-12 13:47:57 -0700 | [diff] [blame] | 4291 | P: Robert Richter |
| 4292 | M: robert.richter@amd.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4293 | L: oprofile-list@lists.sf.net |
| 4294 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4295 | F: arch/*/oprofile/ |
| 4296 | F: drivers/oprofile/ |
| 4297 | F: include/linux/oprofile.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4298 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4299 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
| 4300 | P: Mark Fasheh |
| 4301 | M: mfasheh@suse.com |
| 4302 | P: Joel Becker |
| 4303 | M: joel.becker@oracle.com |
| 4304 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
| 4305 | W: http://oss.oracle.com/projects/ocfs2/ |
Joel Becker | 2191aeb | 2009-04-17 15:58:50 -0700 | [diff] [blame] | 4306 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4307 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4308 | F: Documentation/filesystems/ocfs2.txt |
| 4309 | F: Documentation/filesystems/dlmfs.txt |
| 4310 | F: fs/ocfs2/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4312 | ORINOCO DRIVER |
| 4313 | P: Pavel Roskin |
| 4314 | M: proski@gnu.org |
| 4315 | P: David Gibson |
| 4316 | M: hermes@gibson.dropbear.id.au |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 4317 | L: linux-wireless@vger.kernel.org |
Pavel Roskin | ecffdde | 2005-05-05 16:16:01 -0700 | [diff] [blame] | 4318 | L: orinoco-users@lists.sourceforge.net |
| 4319 | L: orinoco-devel@lists.sourceforge.net |
| 4320 | W: http://www.nongnu.org/orinoco/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4321 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4322 | F: drivers/net/wireless/orinoco/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4323 | |
Boaz Harrosh | 6827479 | 2009-01-25 17:24:14 +0200 | [diff] [blame] | 4324 | OSD LIBRARY |
| 4325 | P: Boaz Harrosh |
| 4326 | M: bharrosh@panasas.com |
| 4327 | P: Benny Halevy |
| 4328 | M: bhalevy@panasas.com |
| 4329 | L: osd-dev@open-osd.org |
| 4330 | W: http://open-osd.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4331 | T: git git://git.open-osd.org/open-osd.git |
Boaz Harrosh | 6827479 | 2009-01-25 17:24:14 +0200 | [diff] [blame] | 4332 | S: Maintained |
| 4333 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4334 | P54 WIRELESS DRIVER |
| 4335 | P: Michael Wu |
| 4336 | M: flamingice@sourmilk.net |
| 4337 | L: linux-wireless@vger.kernel.org |
| 4338 | W: http://prism54.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4339 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4340 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4341 | F: drivers/net/wireless/p54/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4342 | |
Olof Johansson | f5cd787 | 2007-01-31 21:43:54 -0600 | [diff] [blame] | 4343 | PA SEMI ETHERNET DRIVER |
| 4344 | P: Olof Johansson |
| 4345 | M: olof@lixom.net |
| 4346 | L: netdev@vger.kernel.org |
| 4347 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4348 | F: drivers/net/pasemi_mac.* |
Olof Johansson | f5cd787 | 2007-01-31 21:43:54 -0600 | [diff] [blame] | 4349 | |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 4350 | PA SEMI SMBUS DRIVER |
| 4351 | P: Olof Johansson |
| 4352 | M: olof@lixom.net |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 4353 | L: linux-i2c@vger.kernel.org |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 4354 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4355 | F: drivers/i2c/busses/i2c-pasemi.c |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 4356 | |
Harald Welte | 709ee53 | 2008-09-23 17:46:57 +0200 | [diff] [blame] | 4357 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
| 4358 | P: Harald Welte |
| 4359 | M: laforge@gnumonks.org |
| 4360 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4361 | F: drivers/platform/x86/panasonic-laptop.c |
Harald Welte | 709ee53 | 2008-09-23 17:46:57 +0200 | [diff] [blame] | 4362 | |
David Howells | 4fa9718 | 2008-10-13 10:42:44 +0100 | [diff] [blame] | 4363 | PANASONIC MN10300/AM33 PORT |
| 4364 | P: David Howells |
| 4365 | M: dhowells@redhat.com |
| 4366 | P: Koichi Yasutake |
| 4367 | M: yasutake.koichi@jp.panasonic.com |
| 4368 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
| 4369 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ |
| 4370 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4371 | F: Documentation/mn10300/ |
| 4372 | F: arch/mn10300/ |
David Howells | 4fa9718 | 2008-10-13 10:42:44 +0100 | [diff] [blame] | 4373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4374 | PARALLEL PORT SUPPORT |
Randy Dunlap | 3dd1a32 | 2007-05-16 22:11:12 -0700 | [diff] [blame] | 4375 | L: linux-parport@lists.infradead.org (subscribers-only) |
David Brownell | 5fdc2ab | 2007-03-05 00:30:13 -0800 | [diff] [blame] | 4376 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4377 | F: drivers/parport/ |
| 4378 | F: include/linux/parport*.h |
| 4379 | F: drivers/char/ppdev.c |
| 4380 | F: include/linux/ppdev.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4381 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4382 | PARAVIRT_OPS INTERFACE |
| 4383 | P: Jeremy Fitzhardinge |
| 4384 | M: jeremy@xensource.com |
| 4385 | P: Chris Wright |
| 4386 | M: chrisw@sous-sol.org |
Zachary Amsden | 8cbb5bc | 2009-02-20 11:27:46 -0800 | [diff] [blame] | 4387 | P: Alok Kataria |
| 4388 | M: akataria@vmware.com |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4389 | P: Rusty Russell |
| 4390 | M: rusty@rustcorp.com.au |
| 4391 | L: virtualization@lists.osdl.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4392 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4393 | F: Documentation/ia64/paravirt_ops.txt |
| 4394 | F: arch/*/kernel/paravirt* |
| 4395 | F: arch/*/include/asm/paravirt.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4396 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4397 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
| 4398 | P: Tim Waugh |
| 4399 | M: tim@cyberelk.net |
Randy Dunlap | 3dd1a32 | 2007-05-16 22:11:12 -0700 | [diff] [blame] | 4400 | L: linux-parport@lists.infradead.org (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4401 | W: http://www.torque.net/linux-pp.html |
| 4402 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4403 | F: Documentation/blockdev/paride.txt |
| 4404 | F: drivers/block/paride/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4405 | |
| 4406 | PARISC ARCHITECTURE |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 4407 | P: Kyle McMartin |
Kyle McMartin | 42a5a8a | 2008-06-06 17:16:17 -0400 | [diff] [blame] | 4408 | M: kyle@mcmartin.ca |
Grant Grundler | 76346119 | 2008-12-01 00:21:35 -0700 | [diff] [blame] | 4409 | P: Helge Deller |
| 4410 | M: deller@gmx.de |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 4411 | L: linux-parisc@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4412 | W: http://www.parisc-linux.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4413 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4414 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4415 | F: arch/parisc/ |
| 4416 | F: drivers/parisc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4417 | |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 4418 | PC87360 HARDWARE MONITORING DRIVER |
| 4419 | P: Jim Cromie |
| 4420 | M: jim.cromie@gmail.com |
| 4421 | L: lm-sensors@lm-sensors.org |
| 4422 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4423 | F: Documentation/hwmon/pc87360 |
| 4424 | F: drivers/hwmon/pc87360.c |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 4425 | |
| 4426 | PC8736x GPIO DRIVER |
| 4427 | P: Jim Cromie |
| 4428 | M: jim.cromie@gmail.com |
| 4429 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4430 | F: drivers/char/pc8736x_gpio.c |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 4431 | |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 4432 | PCA9532 LED DRIVER |
| 4433 | P: Riku Voipio |
| 4434 | M: riku.voipio@iki.fi |
| 4435 | S: Maintained |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 4436 | F: drivers/leds/leds-pca9532.c |
| 4437 | F: include/linux/leds-pca9532.h |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 4438 | |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 4439 | PCI ERROR RECOVERY |
| 4440 | P: Linas Vepstas |
| 4441 | M: linas@austin.ibm.com |
Jesse Barnes | c1f69db | 2008-05-19 15:28:16 -0700 | [diff] [blame] | 4442 | L: linux-pci@vger.kernel.org |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 4443 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4444 | F: Documentation/PCI/pci-error-recovery.txt |
| 4445 | F: Documentation/powerpc/eeh-pci-error-recovery.txt |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 4446 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4447 | PCI SUBSYSTEM |
Greg Kroah-Hartman | af40b48 | 2008-04-17 10:22:27 -0700 | [diff] [blame] | 4448 | P: Jesse Barnes |
| 4449 | M: jbarnes@virtuousgeek.org |
Jesse Barnes | 2905474 | 2008-05-03 08:35:49 -0700 | [diff] [blame] | 4450 | L: linux-pci@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4451 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4452 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4453 | F: Documentation/PCI/ |
| 4454 | F: drivers/pci/ |
| 4455 | F: include/linux/pci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4456 | |
Kristen Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 4457 | PCIE HOTPLUG DRIVER |
| 4458 | P: Kristen Carlson Accardi |
| 4459 | M: kristen.c.accardi@intel.com |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 4460 | L: linux-pci@vger.kernel.org |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 4461 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4462 | F: drivers/pci/pcie/ |
Kristen Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 4463 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4464 | PCMCIA SUBSYSTEM |
Dominik Brodowski | 4230dfc | 2005-07-07 17:59:06 -0700 | [diff] [blame] | 4465 | P: Linux PCMCIA Team |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 4466 | L: linux-pcmcia@lists.infradead.org |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 4467 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4468 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
Dominik Brodowski | 4230dfc | 2005-07-07 17:59:06 -0700 | [diff] [blame] | 4469 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4470 | F: Documentation/pcmcia/ |
| 4471 | F: drivers/pcmcia/ |
| 4472 | F: include/pcmcia/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4473 | |
| 4474 | PCNET32 NETWORK DRIVER |
pcnet32@verizon.net | 04ce094 | 2007-02-16 10:07:12 -0600 | [diff] [blame] | 4475 | P: Don Fry |
| 4476 | M: pcnet32@verizon.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 4477 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4478 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4479 | F: drivers/net/pcnet32.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4480 | |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 4481 | PER-TASK DELAY ACCOUNTING |
Balbir Singh | abc5f23 | 2008-07-04 09:59:42 -0700 | [diff] [blame] | 4482 | P: Balbir Singh |
| 4483 | M: balbir@linux.vnet.ibm.com |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 4484 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4485 | F: include/linux/delayacct.h |
| 4486 | F: kernel/delayacct.c |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 4487 | |
Paul Mackerras | 6c0b324 | 2009-04-09 09:27:37 +1000 | [diff] [blame] | 4488 | PERFORMANCE COUNTER SUBSYSTEM |
| 4489 | P: Peter Zijlstra |
| 4490 | M: a.p.zijlstra@chello.nl |
| 4491 | P: Paul Mackerras |
| 4492 | M: paulus@samba.org |
| 4493 | P: Ingo Molnar |
| 4494 | M: mingo@elte.hu |
| 4495 | L: linux-kernel@vger.kernel.org |
| 4496 | S: Supported |
| 4497 | |
Jim Cromie | dd49d0f | 2006-03-24 18:08:17 +0100 | [diff] [blame] | 4498 | PERSONALITY HANDLING |
| 4499 | P: Christoph Hellwig |
| 4500 | M: hch@infradead.org |
| 4501 | L: linux-abi-devel@lists.sourceforge.net |
| 4502 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4503 | F: include/linux/personality.h |
Jim Cromie | dd49d0f | 2006-03-24 18:08:17 +0100 | [diff] [blame] | 4504 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4505 | PHRAM MTD DRIVER |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 4506 | P: Joern Engel |
| 4507 | M: joern@lazybastard.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4508 | L: linux-mtd@lists.infradead.org |
| 4509 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4510 | F: drivers/mtd/devices/phram.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4511 | |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 4512 | PKTCDVD DRIVER |
| 4513 | P: Peter Osterlund |
| 4514 | M: petero2@telia.com |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 4515 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4516 | F: drivers/block/pktcdvd.c |
| 4517 | F: include/linux/pktcdvd.h |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 4518 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4519 | POSIX CLOCKS and TIMERS |
Ingo Molnar | aa781ae | 2007-07-19 01:48:32 -0700 | [diff] [blame] | 4520 | P: Thomas Gleixner |
| 4521 | M: tglx@linutronix.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4522 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4523 | F: fs/timerfd.c |
| 4524 | F: include/linux/timer* |
| 4525 | F: kernel/*timer* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4526 | |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 4527 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
| 4528 | P: Anton Vorontsov |
| 4529 | M: cbou@mail.ru |
| 4530 | P: David Woodhouse |
| 4531 | M: dwmw2@infradead.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4532 | T: git git://git.infradead.org/battery-2.6.git |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 4533 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4534 | F: include/linux/power_supply.h |
| 4535 | F: drivers/power/power_supply* |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 4536 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4537 | PNP SUPPORT |
| 4538 | P: Adam Belay |
Bjorn Helgaas | 2d59f6a | 2008-08-01 10:01:12 -0600 | [diff] [blame] | 4539 | M: abelay@mit.edu |
| 4540 | P: Bjorn Helgaas |
| 4541 | M: bjorn.helgaas@hp.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4542 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4543 | F: drivers/pnp/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4544 | |
Vitaly Wool | 999445d | 2007-01-04 13:07:03 +0100 | [diff] [blame] | 4545 | PNXxxxx I2C DRIVER |
| 4546 | P: Vitaly Wool |
| 4547 | M: vitalywool@gmail.com |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 4548 | L: linux-i2c@vger.kernel.org |
Vitaly Wool | 999445d | 2007-01-04 13:07:03 +0100 | [diff] [blame] | 4549 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4550 | F: drivers/i2c/busses/i2c-pnx.c |
Vitaly Wool | 999445d | 2007-01-04 13:07:03 +0100 | [diff] [blame] | 4551 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4552 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
| 4553 | P: Paul Mackerras |
| 4554 | M: paulus@samba.org |
| 4555 | L: linux-ppp@vger.kernel.org |
| 4556 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4557 | F: drivers/net/ppp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4558 | |
| 4559 | PPP OVER ATM (RFC 2364) |
| 4560 | P: Mitchell Blank Jr |
| 4561 | M: mitch@sfgoth.com |
| 4562 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4563 | F: net/atm/pppoatm.c |
| 4564 | F: include/linux/atmppp.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4565 | |
| 4566 | PPP OVER ETHERNET |
| 4567 | P: Michal Ostrowski |
Chris Wright | 5e70b7f3 | 2008-06-09 16:07:28 -0700 | [diff] [blame] | 4568 | M: mostrows@earthlink.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4569 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4570 | F: drivers/net/pppoe.c |
| 4571 | F: drivers/net/pppox.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4572 | |
James Chapman | a6d2370 | 2007-06-27 15:53:17 -0700 | [diff] [blame] | 4573 | PPP OVER L2TP |
| 4574 | P: James Chapman |
| 4575 | M: jchapman@katalix.com |
| 4576 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4577 | F: drivers/net/pppol2tp.c |
| 4578 | F: include/linux/if_pppol2tp.h |
James Chapman | a6d2370 | 2007-06-27 15:53:17 -0700 | [diff] [blame] | 4579 | |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 4580 | PPS SUPPORT |
| 4581 | P: Rodolfo Giometti |
| 4582 | M: giometti@enneenne.com |
| 4583 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
| 4584 | L: linuxpps@ml.enneenne.com (subscribers-only) |
| 4585 | S: Maintained |
| 4586 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4587 | PREEMPTIBLE KERNEL |
| 4588 | P: Robert Love |
| 4589 | M: rml@tech9.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4590 | L: kpreempt-tech@lists.sourceforge.net |
| 4591 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel |
| 4592 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4593 | F: Documentation/preempt-locking.txt |
| 4594 | F: include/linux/preempt.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4595 | |
| 4596 | PRISM54 WIRELESS DRIVER |
Luis R. Rodriguez | e88b34b | 2007-06-01 00:46:57 -0700 | [diff] [blame] | 4597 | P: Luis R. Rodriguez |
| 4598 | M: mcgrof@gmail.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 4599 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4600 | W: http://prism54.org |
| 4601 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4602 | F: drivers/net/wireless/prism54/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4603 | |
| 4604 | PROMISE DC4030 CACHING DISK CONTROLLER DRIVER |
| 4605 | P: Peter Denison |
| 4606 | M: promise@pnd-pc.demon.co.uk |
| 4607 | W: http://www.pnd-pc.demon.co.uk/promise/ |
| 4608 | S: Maintained |
| 4609 | |
Mikael Pettersson | b3277df | 2007-01-10 09:33:53 +0100 | [diff] [blame] | 4610 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
| 4611 | P: Mikael Pettersson |
| 4612 | M: mikpe@it.uu.se |
| 4613 | L: linux-ide@vger.kernel.org |
| 4614 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4615 | F: drivers/ata/sata_promise.* |
Mikael Pettersson | b3277df | 2007-01-10 09:33:53 +0100 | [diff] [blame] | 4616 | |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 4617 | PS3 NETWORK SUPPORT |
Masakazu Mokuno | ae3d246 | 2009-03-30 11:04:04 -0700 | [diff] [blame] | 4618 | P: Geoff Levand |
| 4619 | M: geoffrey.levand@am.sony.com |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 4620 | L: netdev@vger.kernel.org |
| 4621 | L: cbe-oss-dev@ozlabs.org |
| 4622 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4623 | F: drivers/net/ps3_gelic_net.* |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 4624 | |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 4625 | PS3 PLATFORM SUPPORT |
| 4626 | P: Geoff Levand |
| 4627 | M: geoffrey.levand@am.sony.com |
| 4628 | L: linuxppc-dev@ozlabs.org |
| 4629 | L: cbe-oss-dev@ozlabs.org |
| 4630 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4631 | F: arch/powerpc/boot/ps3* |
| 4632 | F: arch/powerpc/include/asm/lv1call.h |
| 4633 | F: arch/powerpc/include/asm/ps3*.h |
| 4634 | F: arch/powerpc/platforms/ps3/ |
| 4635 | F: drivers/*/ps3* |
| 4636 | F: drivers/ps3/ |
Geoff Levand | fec629b | 2009-04-16 09:05:40 +0000 | [diff] [blame] | 4637 | F: drivers/rtc/rtc-ps3.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4638 | F: drivers/usb/host/*ps3.c |
Geoff Levand | fec629b | 2009-04-16 09:05:40 +0000 | [diff] [blame] | 4639 | F: sound/ppc/snd_ps3* |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 4640 | |
Jim Paris | cffb4add | 2009-01-06 11:32:10 +0000 | [diff] [blame] | 4641 | PS3VRAM DRIVER |
| 4642 | P: Jim Paris |
| 4643 | M: jim@jtan.com |
| 4644 | L: cbe-oss-dev@ozlabs.org |
| 4645 | S: Maintained |
| 4646 | |
Christoph Hellwig | cf94a4d | 2009-04-30 15:08:12 -0700 | [diff] [blame] | 4647 | PTRACE SUPPORT |
| 4648 | P: Roland McGrath |
| 4649 | M: roland@redhat.com |
| 4650 | P: Oleg Nesterov |
| 4651 | M: oleg@redhat.com |
Christoph Hellwig | cf94a4d | 2009-04-30 15:08:12 -0700 | [diff] [blame] | 4652 | S: Maintained |
| 4653 | F: include/asm-generic/syscall.h |
| 4654 | F: include/linux/ptrace.h |
| 4655 | F: include/linux/regset.h |
| 4656 | F: include/linux/tracehook.h |
| 4657 | F: kernel/ptrace.c |
| 4658 | |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 4659 | PVRUSB2 VIDEO4LINUX DRIVER |
| 4660 | P: Mike Isely |
| 4661 | M: isely@pobox.com |
Mike Isely | 16e9495 | 2007-01-03 18:08:06 -0300 | [diff] [blame] | 4662 | L: pvrusb2@isely.net (subscribers-only) |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 4663 | L: linux-media@vger.kernel.org |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 4664 | W: http://www.isely.net/pvrusb2/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4665 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 4666 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4667 | F: Documentation/video4linux/README.pvrusb2 |
| 4668 | F: drivers/media/video/pvrusb2/ |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 4669 | |
Eric Miao | 30ec261 | 2008-06-12 15:21:41 -0700 | [diff] [blame] | 4670 | PXA2xx/PXA3xx SUPPORT |
| 4671 | P: Eric Miao |
Eric Miao | 7517b3f | 2009-06-13 00:10:17 +0800 | [diff] [blame] | 4672 | M: eric.y.miao@gmail.com |
Eric Miao | 30ec261 | 2008-06-12 15:21:41 -0700 | [diff] [blame] | 4673 | P: Russell King |
| 4674 | M: linux@arm.linux.org.uk |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 4675 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4676 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4677 | F: arch/arm/mach-pxa/ |
| 4678 | F: drivers/pcmcia/pxa2xx* |
| 4679 | F: drivers/spi/pxa2xx* |
| 4680 | F: drivers/usb/gadget/pxa2* |
| 4681 | F: include/sound/pxa2xx-lib.h |
Mark Brown | bec4c99 | 2009-05-06 10:36:34 +0100 | [diff] [blame] | 4682 | F: sound/arm/pxa* |
| 4683 | F: sound/soc/pxa |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4684 | |
Eric Miao | a6bb4ba | 2009-02-19 21:13:21 +0800 | [diff] [blame] | 4685 | PXA168 SUPPORT |
| 4686 | P: Eric Miao |
Eric Miao | 7517b3f | 2009-06-13 00:10:17 +0800 | [diff] [blame] | 4687 | M: eric.y.miao@gmail.com |
Eric Miao | a6bb4ba | 2009-02-19 21:13:21 +0800 | [diff] [blame] | 4688 | P: Jason Chagas |
| 4689 | M: jason.chagas@marvell.com |
| 4690 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4691 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git |
Eric Miao | 7517b3f | 2009-06-13 00:10:17 +0800 | [diff] [blame] | 4692 | S: Maintained |
Eric Miao | a6bb4ba | 2009-02-19 21:13:21 +0800 | [diff] [blame] | 4693 | |
Eric Miao | 5fa82eb | 2009-03-20 12:52:24 +0800 | [diff] [blame] | 4694 | PXA910 SUPPORT |
| 4695 | P: Eric Miao |
Eric Miao | 7517b3f | 2009-06-13 00:10:17 +0800 | [diff] [blame] | 4696 | M: eric.y.miao@gmail.com |
Eric Miao | 5fa82eb | 2009-03-20 12:52:24 +0800 | [diff] [blame] | 4697 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4698 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git |
Eric Miao | 7517b3f | 2009-06-13 00:10:17 +0800 | [diff] [blame] | 4699 | S: Maintained |
Eric Miao | 5fa82eb | 2009-03-20 12:52:24 +0800 | [diff] [blame] | 4700 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 4701 | PXA MMCI DRIVER |
| 4702 | S: Orphan |
| 4703 | |
Robert Jarzmik | 57f63bc | 2009-02-11 13:04:19 -0800 | [diff] [blame] | 4704 | PXA RTC DRIVER |
| 4705 | P: Robert Jarzmik |
| 4706 | M: robert.jarzmik@free.fr |
| 4707 | L: rtc-linux@googlegroups.com |
| 4708 | S: Maintained |
| 4709 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4710 | QLOGIC QLA2XXX FC-SCSI DRIVER |
| 4711 | P: Andrew Vasquez |
Andrew Vasquez | 95e6a85 | 2006-03-14 14:41:04 -0800 | [diff] [blame] | 4712 | M: linux-driver@qlogic.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4713 | L: linux-scsi@vger.kernel.org |
| 4714 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4715 | F: Documentation/scsi/LICENSE.qla2xxx |
| 4716 | F: drivers/scsi/qla2xxx/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4717 | |
Ron Mercer | 5a4faa87 | 2006-07-25 00:40:21 -0700 | [diff] [blame] | 4718 | QLOGIC QLA3XXX NETWORK DRIVER |
| 4719 | P: Ron Mercer |
| 4720 | M: linux-driver@qlogic.com |
| 4721 | L: netdev@vger.kernel.org |
| 4722 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4723 | F: Documentation/networking/LICENSE.qla3xxx |
| 4724 | F: drivers/net/qla3xxx.* |
Ron Mercer | 5a4faa87 | 2006-07-25 00:40:21 -0700 | [diff] [blame] | 4725 | |
Ron Mercer | c4e84bd | 2008-09-18 11:56:28 -0400 | [diff] [blame] | 4726 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
| 4727 | P: Ron Mercer |
| 4728 | M: linux-driver@qlogic.com |
| 4729 | M: ron.mercer@qlogic.com |
| 4730 | L: netdev@vger.kernel.org |
| 4731 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4732 | F: drivers/net/qlge/ |
Ron Mercer | c4e84bd | 2008-09-18 11:56:28 -0400 | [diff] [blame] | 4733 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4734 | QNX4 FILESYSTEM |
| 4735 | P: Anders Larsen |
| 4736 | M: al@alarsen.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4737 | W: http://www.alarsen.net/linux/qnx4fs/ |
| 4738 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 4739 | F: fs/qnx4/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4740 | F: include/linux/qnx4_fs.h |
| 4741 | F: include/linux/qnxtypes.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4742 | |
| 4743 | RADEON FRAMEBUFFER DISPLAY DRIVER |
Benjamin Herrenschmidt | 187a278 | 2005-04-16 15:26:40 -0700 | [diff] [blame] | 4744 | P: Benjamin Herrenschmidt |
| 4745 | M: benh@kernel.crashing.org |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 4746 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4747 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4748 | F: drivers/video/aty/radeon* |
| 4749 | F: include/linux/radeonfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4750 | |
| 4751 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
Benjamin Herrenschmidt | 187a278 | 2005-04-16 15:26:40 -0700 | [diff] [blame] | 4752 | P: Paul Mackerras |
| 4753 | M: paulus@samba.org |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 4754 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4755 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4756 | F: drivers/video/aty/aty128fb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4757 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 4758 | RALINK RT2X00 WIRELESS LAN DRIVER |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 4759 | P: rt2x00 project |
| 4760 | L: linux-wireless@vger.kernel.org |
Ivo van Doorn | 6d5eaaf | 2009-03-17 11:29:19 +0100 | [diff] [blame] | 4761 | L: users@rt2x00.serialmonkey.com |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 4762 | W: http://rt2x00.serialmonkey.com/ |
| 4763 | S: Maintained |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4764 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 4765 | F: drivers/net/wireless/rt2x00/ |
| 4766 | |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 4767 | RAMDISK RAM BLOCK DEVICE DRIVER |
| 4768 | P: Nick Piggin |
| 4769 | M: npiggin@suse.de |
| 4770 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4771 | F: Documentation/blockdev/ramdisk.txt |
| 4772 | F: drivers/block/brd.c |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 4773 | |
Matt Mackall | 9e95ce2 | 2005-04-16 15:25:56 -0700 | [diff] [blame] | 4774 | RANDOM NUMBER DRIVER |
| 4775 | P: Matt Mackall |
| 4776 | M: mpm@selenic.com |
| 4777 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4778 | F: drivers/char/random.c |
Matt Mackall | 9e95ce2 | 2005-04-16 15:25:56 -0700 | [diff] [blame] | 4779 | |
Matt Porter | 394b701 | 2005-11-07 01:00:15 -0800 | [diff] [blame] | 4780 | RAPIDIO SUBSYSTEM |
| 4781 | P: Matt Porter |
| 4782 | M: mporter@kernel.crashing.org |
Matt Porter | 394b701 | 2005-11-07 01:00:15 -0800 | [diff] [blame] | 4783 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4784 | F: drivers/rapidio/ |
Matt Porter | 394b701 | 2005-11-07 01:00:15 -0800 | [diff] [blame] | 4785 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4786 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
| 4787 | P: Corey Thomas |
| 4788 | M: coreythomas@charter.net |
| 4789 | L: linux-wireless@vger.kernel.org |
| 4790 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4791 | F: drivers/net/wireless/ray* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4792 | |
| 4793 | RCUTORTURE MODULE |
| 4794 | P: Josh Triplett |
| 4795 | M: josh@freedesktop.org |
Joe Perches | 852f9bb | 2009-06-16 15:34:09 -0700 | [diff] [blame] | 4796 | P: Paul E. McKenney |
| 4797 | M: paulmck@linux.vnet.ibm.com |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4798 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4799 | F: Documentation/RCU/torture.txt |
| 4800 | F: kernel/rcutorture.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4801 | |
Florian Fainelli | c1f766b | 2008-02-06 22:39:44 +0100 | [diff] [blame] | 4802 | RDC R-321X SoC |
| 4803 | P: Florian Fainelli |
Florian Fainelli | 1e50cc9 | 2009-04-30 15:08:10 -0700 | [diff] [blame] | 4804 | M: florian@openwrt.org |
Florian Fainelli | c1f766b | 2008-02-06 22:39:44 +0100 | [diff] [blame] | 4805 | S: Maintained |
| 4806 | |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 4807 | RDC R6040 FAST ETHERNET DRIVER |
| 4808 | P: Florian Fainelli |
Florian Fainelli | 1e50cc9 | 2009-04-30 15:08:10 -0700 | [diff] [blame] | 4809 | M: florian@openwrt.org |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 4810 | L: netdev@vger.kernel.org |
| 4811 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4812 | F: drivers/net/r6040.c |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 4813 | |
Andy Grover | a09ed66 | 2009-02-24 15:30:41 +0000 | [diff] [blame] | 4814 | RDS - RELIABLE DATAGRAM SOCKETS |
| 4815 | P: Andy Grover |
| 4816 | M: andy.grover@oracle.com |
Kyle McMartin | fbb5a55 | 2009-04-09 14:09:47 +0000 | [diff] [blame] | 4817 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
Andy Grover | a09ed66 | 2009-02-24 15:30:41 +0000 | [diff] [blame] | 4818 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4819 | F: net/rds/ |
Andy Grover | a09ed66 | 2009-02-24 15:30:41 +0000 | [diff] [blame] | 4820 | |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 4821 | READ-COPY UPDATE (RCU) |
| 4822 | P: Dipankar Sarma |
| 4823 | M: dipankar@in.ibm.com |
Joe Perches | 852f9bb | 2009-06-16 15:34:09 -0700 | [diff] [blame] | 4824 | P: Paul E. McKenney |
| 4825 | M: paulmck@linux.vnet.ibm.com |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 4826 | W: http://www.rdrop.com/users/paulmck/rclock/ |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 4827 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4828 | F: Documentation/RCU/rcu.txt |
| 4829 | F: Documentation/RCU/rcuref.txt |
| 4830 | F: include/linux/rcupdate.h |
| 4831 | F: include/linux/srcu.h |
| 4832 | F: kernel/rcupdate.c |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 4833 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4834 | REAL TIME CLOCK DRIVER |
| 4835 | P: Paul Gortmaker |
| 4836 | M: p_gortmaker@yahoo.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4837 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4838 | F: Documentation/rtc.txt |
| 4839 | F: drivers/rtc/ |
| 4840 | F: include/linux/rtc.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4841 | |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 4842 | REAL TIME CLOCK (RTC) SUBSYSTEM |
| 4843 | P: Alessandro Zummo |
| 4844 | M: a.zummo@towertech.it |
Alessandro Zummo | 7646549 | 2006-12-10 02:19:06 -0800 | [diff] [blame] | 4845 | L: rtc-linux@googlegroups.com |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 4846 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4847 | F: Documentation/rtc.txt |
| 4848 | F: drivers/rtc/ |
| 4849 | F: include/linux/rtc.h |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 4850 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4851 | REISERFS FILE SYSTEM |
Jeff Mahoney | 76c4e5e | 2007-06-08 13:47:02 -0700 | [diff] [blame] | 4852 | L: reiserfs-devel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4853 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4854 | F: fs/reiserfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4855 | |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 4856 | RFKILL |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 4857 | P: Johannes Berg |
| 4858 | M: johannes@sipsolutions.net |
| 4859 | L: linux-wireless@vger.kernel.org |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 4860 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 4861 | F Documentation/rfkill.txt |
| 4862 | F: net/rfkill/ |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 4863 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4864 | RISCOM8 DRIVER |
| 4865 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4866 | F: Documentation/serial/riscom8.txt |
| 4867 | F: drivers/char/riscom8* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4868 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4869 | ROCKETPORT DRIVER |
| 4870 | P: Comtrol Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4871 | W: http://www.comtrol.com |
| 4872 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4873 | F: Documentation/serial/rocket.txt |
| 4874 | F: drivers/char/rocket* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4875 | |
| 4876 | ROSE NETWORK LAYER |
| 4877 | P: Ralf Baechle |
| 4878 | M: ralf@linux-mips.org |
| 4879 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 4880 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4881 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4882 | F: include/linux/rose.h |
| 4883 | F: include/net/rose.h |
| 4884 | F: net/rose/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4885 | |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 4886 | RTL8180 WIRELESS DRIVER |
John W. Linville | 96dd603 | 2008-11-12 14:51:56 -0500 | [diff] [blame] | 4887 | P: John W. Linville |
| 4888 | M: linville@tuxdriver.com |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 4889 | L: linux-wireless@vger.kernel.org |
| 4890 | W: http://linuxwireless.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4891 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 4892 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4893 | F: drivers/net/wireless/rtl818* |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 4894 | |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 4895 | RTL8187 WIRELESS DRIVER |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 4896 | P: Herton Ronaldo Krzesinski |
| 4897 | M: herton@mandriva.com.br |
| 4898 | P: Hin-Tak Leung |
| 4899 | M: htl10@users.sourceforge.net |
| 4900 | P: Larry Finger |
| 4901 | M: Larry.Finger@lwfinger.net |
| 4902 | L: linux-wireless@vger.kernel.org |
| 4903 | W: http://linuxwireless.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4904 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 4905 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4906 | F: drivers/net/wireless/rtl818x/rtl8187* |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 4907 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 4908 | S3 SAVAGE FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4909 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 4910 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 4911 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4912 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4913 | F: drivers/video/savage/ |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 4914 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4915 | S390 |
| 4916 | P: Martin Schwidefsky |
| 4917 | M: schwidefsky@de.ibm.com |
Martin Schwidefsky | 8301425 | 2006-09-20 15:58:58 +0200 | [diff] [blame] | 4918 | P: Heiko Carstens |
| 4919 | M: heiko.carstens@de.ibm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4920 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 4921 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4922 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 4923 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4924 | F: arch/s390/ |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4925 | |
| 4926 | S390 NETWORK DRIVERS |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 4927 | P: Ursula Braun |
Ursula Braun | 23fcc8d | 2008-07-18 15:24:58 +0200 | [diff] [blame] | 4928 | M: ursula.braun@de.ibm.com |
Ursula Braun | b9192ad | 2007-10-22 16:16:15 +0200 | [diff] [blame] | 4929 | P: Frank Blaschka |
| 4930 | M: blaschka@linux.vnet.ibm.com |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4931 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 4932 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4933 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 4934 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4935 | F: drivers/s390/net/ |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4936 | |
Felix Beck | feed9b6 | 2009-03-26 15:24:23 +0100 | [diff] [blame] | 4937 | S390 ZCRYPT DRIVER |
| 4938 | P: Felix Beck |
| 4939 | M: felix.beck@de.ibm.com |
| 4940 | P: Ralph Wuerthner |
| 4941 | M: ralph.wuerthner@de.ibm.com |
| 4942 | M: linux390@de.ibm.com |
| 4943 | L: linux-s390@vger.kernel.org |
| 4944 | S: Supported |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 4945 | F: drivers/s390/crypto/ |
Felix Beck | feed9b6 | 2009-03-26 15:24:23 +0100 | [diff] [blame] | 4946 | |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4947 | S390 ZFCP DRIVER |
Swen Schillig | 0033bb4 | 2007-12-18 11:16:14 +0100 | [diff] [blame] | 4948 | P: Christof Schmitt |
| 4949 | M: christof.schmitt@de.ibm.com |
| 4950 | P: Martin Peschke |
| 4951 | M: mp3@de.ibm.com |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4952 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 4953 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4954 | W: http://www.ibm.com/developerworks/linux/linux390/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4955 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4956 | F: Documentation/s390/zfcpdump.txt |
| 4957 | F: drivers/s390/scsi/zfcp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4958 | |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 4959 | S390 IUCV NETWORK LAYER |
| 4960 | P: Ursula Braun |
Ursula Braun | 23fcc8d | 2008-07-18 15:24:58 +0200 | [diff] [blame] | 4961 | M: ursula.braun@de.ibm.com |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 4962 | M: linux390@de.ibm.com |
| 4963 | L: linux-s390@vger.kernel.org |
| 4964 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 4965 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4966 | F: drivers/s390/net/*iucv* |
| 4967 | F: include/net/iucv/ |
| 4968 | F: net/iucv/ |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 4969 | |
Ben Dooks | 4dde7f7 | 2008-06-30 22:40:38 +0100 | [diff] [blame] | 4970 | S3C24XX SD/MMC Driver |
| 4971 | P: Ben Dooks |
| 4972 | M: ben-linux@fluff.org |
| 4973 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Ben Dooks | 4dde7f7 | 2008-06-30 22:40:38 +0100 | [diff] [blame] | 4974 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4975 | F: drivers/mmc/host/s3cmci.* |
Ben Dooks | 4dde7f7 | 2008-06-30 22:40:38 +0100 | [diff] [blame] | 4976 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4977 | SAA7146 VIDEO4LINUX-2 DRIVER |
| 4978 | P: Michael Hunold |
| 4979 | M: michael@mihu.de |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 4980 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4981 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4982 | W: http://www.mihu.de/linux/saa7146 |
| 4983 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4984 | F: drivers/media/common/saa7146* |
| 4985 | F: drivers/media/video/*7146* |
| 4986 | F: include/media/*7146* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4987 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4988 | SC1200 WDT DRIVER |
| 4989 | P: Zwane Mwaikambo |
Zwane Mwaikambo | 3c7bf1e | 2005-08-18 11:24:07 -0700 | [diff] [blame] | 4990 | M: zwane@arm.linux.org.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4991 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4992 | F: drivers/watchdog/sc1200wdt.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4993 | |
| 4994 | SCHEDULER |
| 4995 | P: Ingo Molnar |
| 4996 | M: mingo@elte.hu |
Ingo Molnar | 01fad98 | 2009-04-08 17:27:59 +0200 | [diff] [blame] | 4997 | P: Peter Zijlstra |
| 4998 | M: peterz@infradead.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4999 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5000 | F: kernel/sched* |
| 5001 | F: include/linux/sched.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5002 | |
| 5003 | SCSI CDROM DRIVER |
| 5004 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 5005 | M: axboe@kernel.dk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5006 | L: linux-scsi@vger.kernel.org |
| 5007 | W: http://www.kernel.dk |
| 5008 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5009 | F: drivers/scsi/sr* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5010 | |
| 5011 | SCSI SG DRIVER |
| 5012 | P: Doug Gilbert |
| 5013 | M: dgilbert@interlog.com |
| 5014 | L: linux-scsi@vger.kernel.org |
| 5015 | W: http://www.torque.net/sg |
| 5016 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5017 | F: drivers/scsi/sg.c |
| 5018 | F: include/scsi/sg.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5019 | |
| 5020 | SCSI SUBSYSTEM |
| 5021 | P: James E.J. Bottomley |
James Bottomley | c4e1608 | 2007-11-03 08:40:30 -0500 | [diff] [blame] | 5022 | M: James.Bottomley@HansenPartnership.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5023 | L: linux-scsi@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5024 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
| 5025 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git |
| 5026 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5027 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5028 | F: drivers/scsi/ |
| 5029 | F: include/scsi/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5030 | |
| 5031 | SCSI TAPE DRIVER |
John Anthony Kazos Jr | dd4ef01 | 2007-05-09 08:06:37 +0200 | [diff] [blame] | 5032 | P: Kai Mäkisara |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5033 | M: Kai.Makisara@kolumbus.fi |
| 5034 | L: linux-scsi@vger.kernel.org |
| 5035 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5036 | F: Documentation/scsi/st.txt |
| 5037 | F: drivers/scsi/st* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5038 | |
| 5039 | SCTP PROTOCOL |
Sridhar Samudrala | 5f85813 | 2007-03-23 11:39:51 -0700 | [diff] [blame] | 5040 | P: Vlad Yasevich |
| 5041 | M: vladislav.yasevich@hp.com |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 5042 | P: Sridhar Samudrala |
| 5043 | M: sri@us.ibm.com |
Vlad Yasevich | 1a41879 | 2008-04-12 18:55:42 -0700 | [diff] [blame] | 5044 | L: linux-sctp@vger.kernel.org |
Sridhar Samudrala | 5f85813 | 2007-03-23 11:39:51 -0700 | [diff] [blame] | 5045 | W: http://lksctp.sourceforge.net |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 5046 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5047 | F: Documentation/networking/sctp.txt |
| 5048 | F: include/linux/sctp.h |
| 5049 | F: include/net/sctp/ |
| 5050 | F: net/sctp/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5051 | |
| 5052 | SCx200 CPU SUPPORT |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 5053 | P: Jim Cromie |
| 5054 | M: jim.cromie@gmail.com |
| 5055 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5056 | F: Documentation/i2c/busses/scx200_acb |
| 5057 | F: arch/x86/kernel/scx200_32.c |
| 5058 | F: drivers/watchdog/scx200_wdt.c |
| 5059 | F: drivers/i2c/busses/scx200* |
| 5060 | F: drivers/mtd/maps/scx200_docflash.c |
| 5061 | F: include/linux/scx200.h |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 5062 | |
| 5063 | SCx200 GPIO DRIVER |
| 5064 | P: Jim Cromie |
| 5065 | M: jim.cromie@gmail.com |
| 5066 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5067 | F: drivers/char/scx200_gpio.c |
| 5068 | F: include/linux/scx200_gpio.h |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 5069 | |
| 5070 | SCx200 HRT CLOCKSOURCE DRIVER |
| 5071 | P: Jim Cromie |
| 5072 | M: jim.cromie@gmail.com |
| 5073 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5074 | F: drivers/clocksource/scx200_hrt.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5075 | |
Sascha Sommer | 6a36913 | 2008-07-15 14:21:29 +0200 | [diff] [blame] | 5076 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
| 5077 | P: Sascha Sommer |
| 5078 | M: saschasommer@freenet.de |
| 5079 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
| 5080 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5081 | F: drivers/mmc/host/sdricoh_cs.c |
Sascha Sommer | 6a36913 | 2008-07-15 14:21:29 +0200 | [diff] [blame] | 5082 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 5083 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5084 | P: Pierre Ossman |
Pierre Ossman | 32710e8 | 2009-04-08 20:14:54 +0200 | [diff] [blame] | 5085 | M: pierre@ossman.eu |
Pierre Ossman | b8e2006 | 2009-03-14 21:17:32 +0100 | [diff] [blame] | 5086 | L: sdhci-devel@lists.ossman.eu |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5087 | S: Maintained |
| 5088 | |
Anton Vorontsov | 3085e9c | 2009-03-17 00:14:05 +0300 | [diff] [blame] | 5089 | SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) |
| 5090 | P: Anton Vorontsov |
| 5091 | M: avorontsov@ru.mvista.com |
| 5092 | L: linuxppc-dev@ozlabs.org |
| 5093 | L: sdhci-devel@lists.ossman.eu |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5094 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5095 | F: drivers/mmc/host/sdhci.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5096 | |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 5097 | SECURITY SUBSYSTEM |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 5098 | P: James Morris |
| 5099 | M: jmorris@namei.org |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 5100 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5101 | T: git git://www.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git |
James Morris | c8334dc | 2009-01-07 20:06:18 +1100 | [diff] [blame] | 5102 | W: http://security.wiki.kernel.org/ |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 5103 | S: Supported |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 5104 | F: security/ |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 5105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5106 | SECURITY CONTACT |
| 5107 | P: Security Officers |
| 5108 | M: security@kernel.org |
| 5109 | S: Supported |
| 5110 | |
| 5111 | SELINUX SECURITY MODULE |
| 5112 | P: Stephen Smalley |
| 5113 | M: sds@tycho.nsa.gov |
| 5114 | P: James Morris |
| 5115 | M: jmorris@namei.org |
Stephen Smalley | 588a315 | 2007-02-23 09:20:09 -0500 | [diff] [blame] | 5116 | P: Eric Paris |
| 5117 | M: eparis@parisplace.org |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 5118 | L: selinux@tycho.nsa.gov (subscribers-only, general discussion) |
Stephen Smalley | f058925 | 2008-09-11 09:20:26 -0400 | [diff] [blame] | 5119 | W: http://selinuxproject.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5120 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5121 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5122 | F: include/linux/selinux* |
| 5123 | F: security/selinux/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5124 | |
Jiri Slaby | cef2cf0 | 2007-05-08 00:31:45 -0700 | [diff] [blame] | 5125 | SENSABLE PHANTOM |
| 5126 | P: Jiri Slaby |
| 5127 | M: jirislaby@gmail.com |
| 5128 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5129 | F: drivers/misc/phantom.c |
| 5130 | F: include/linux/phantom.h |
Jiri Slaby | cef2cf0 | 2007-05-08 00:31:45 -0700 | [diff] [blame] | 5131 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 5132 | SERIAL ATA (SATA) SUBSYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5133 | P: Jeff Garzik |
| 5134 | M: jgarzik@pobox.com |
| 5135 | L: linux-ide@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5136 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5137 | S: Supported |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 5138 | F: drivers/ata/ |
| 5139 | F: include/linux/ata.h |
| 5140 | F: include/linux/libata.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5141 | |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 5142 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
| 5143 | P: Sathya Perla |
| 5144 | M: sathyap@serverengines.com |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 5145 | P: Subbu Seetharaman |
| 5146 | M: subbus@serverengines.com |
| 5147 | L: netdev@vger.kernel.org |
| 5148 | W: http://www.serverengines.com |
| 5149 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5150 | F: drivers/net/benet/ |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 5151 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 5152 | SFC NETWORK DRIVER |
| 5153 | P: Steve Hodgson |
| 5154 | P: Ben Hutchings |
| 5155 | P: Robert Stonehouse |
| 5156 | M: linux-net-drivers@solarflare.com |
| 5157 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5158 | F: drivers/net/sfc/ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 5159 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5160 | SGI GRU DRIVER |
| 5161 | P: Jack Steiner |
| 5162 | M: steiner@sgi.com |
| 5163 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5164 | F: drivers/misc/sgi-gru/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5165 | |
| 5166 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER |
| 5167 | P: Pat Gefre |
| 5168 | M: pfg@sgi.com |
| 5169 | L: linux-ia64@vger.kernel.org |
| 5170 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5171 | F: Documentation/ia64/serial.txt |
| 5172 | F: drivers/serial/ioc?_serial.c |
| 5173 | F: include/linux/ioc?.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5174 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5175 | SGI VISUAL WORKSTATION 320 AND 540 |
| 5176 | P: Andrey Panin |
| 5177 | M: pazke@donpac.ru |
| 5178 | L: linux-visws-devel@lists.sf.net |
| 5179 | W: http://linux-visws.sf.net |
| 5180 | S: Maintained for 2.6. |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5181 | F: Documentation/sgi-visws.txt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5182 | |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 5183 | SGI XP/XPC/XPNET DRIVER |
Robin Holt | a06bba4 | 2009-04-13 14:40:17 -0700 | [diff] [blame] | 5184 | P: Robin Holt |
| 5185 | M: holt@sgi.com |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 5186 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5187 | F: drivers/misc/sgi-xp/ |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 5188 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5189 | SHARP LH SUPPORT (LH7952X & LH7A40X) |
| 5190 | P: Marc Singer |
| 5191 | M: elf@buici.com |
| 5192 | W: http://projects.buici.com/arm |
| 5193 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 5194 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5195 | F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen |
| 5196 | F: arch/arm/mach-lh7a40x/ |
| 5197 | F: drivers/serial/serial_lh7a40x.c |
| 5198 | F: drivers/usb/gadget/lh7a40* |
| 5199 | F: drivers/usb/host/ohci-lh7a40* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5200 | |
| 5201 | SHPC HOTPLUG DRIVER |
| 5202 | P: Kristen Carlson Accardi |
| 5203 | M: kristen.c.accardi@intel.com |
| 5204 | L: linux-pci@vger.kernel.org |
| 5205 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5206 | F: drivers/pci/hotplug/shpchp* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5207 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5208 | SIMTEC EB110ATX (Chalice CATS) |
| 5209 | P: Ben Dooks |
| 5210 | P: Vincent Sanders |
| 5211 | M: support@simtec.co.uk |
| 5212 | W: http://www.simtec.co.uk/products/EB110ATX/ |
| 5213 | S: Supported |
| 5214 | |
| 5215 | SIMTEC EB2410ITX (BAST) |
| 5216 | P: Ben Dooks |
| 5217 | P: Vincent Sanders |
| 5218 | M: support@simtec.co.uk |
| 5219 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
| 5220 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5221 | F: arch/arm/mach-s3c2410/ |
| 5222 | F: drivers/*/*s3c2410* |
| 5223 | F: drivers/*/*/*s3c2410* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5224 | |
Francois Romieu | 92aab3c | 2005-07-30 13:11:18 +0200 | [diff] [blame] | 5225 | SIS 190 ETHERNET DRIVER |
| 5226 | P: Francois Romieu |
| 5227 | M: romieu@fr.zoreil.com |
| 5228 | L: netdev@vger.kernel.org |
| 5229 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5230 | F: drivers/net/sis190.c |
Francois Romieu | 92aab3c | 2005-07-30 13:11:18 +0200 | [diff] [blame] | 5231 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5232 | SIS 900/7016 FAST ETHERNET DRIVER |
| 5233 | P: Daniele Venzano |
| 5234 | M: venza@brownhat.org |
| 5235 | W: http://www.brownhat.org/sis900.html |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 5236 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5237 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5238 | F: drivers/net/sis900.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5239 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5240 | SIS 96X I2C/SMBUS DRIVER |
| 5241 | P: Mark M. Hoffman |
| 5242 | M: mhoffman@lightlink.com |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 5243 | L: linux-i2c@vger.kernel.org |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5244 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5245 | F: Documentation/i2c/busses/i2c-sis96x |
| 5246 | F: drivers/i2c/busses/i2c-sis96x.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5247 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5248 | SIS FRAMEBUFFER DRIVER |
| 5249 | P: Thomas Winischhofer |
| 5250 | M: thomas@winischhofer.net |
| 5251 | W: http://www.winischhofer.net/linuxsisvga.shtml |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 5252 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5253 | F: Documentation/fb/sisfb.txt |
| 5254 | F: drivers/video/sis/ |
| 5255 | F: include/video/sisfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5256 | |
| 5257 | SIS USB2VGA DRIVER |
| 5258 | P: Thomas Winischhofer |
| 5259 | M: thomas@winischhofer.net |
| 5260 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
| 5261 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5262 | F: drivers/usb/misc/sisusbvga/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5263 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5264 | SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS |
| 5265 | P: Stephen Hemminger |
| 5266 | M: shemminger@linux-foundation.org |
| 5267 | L: netdev@vger.kernel.org |
| 5268 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5269 | F: drivers/net/skge.* |
| 5270 | F: drivers/net/sky2.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5271 | |
Christoph Lameter | 415ad26d | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 5272 | SLAB ALLOCATOR |
| 5273 | P: Christoph Lameter |
Christoph Lameter | cde5353 | 2008-07-04 09:59:22 -0700 | [diff] [blame] | 5274 | M: cl@linux-foundation.org |
Christoph Lameter | 415ad26d | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 5275 | P: Pekka Enberg |
| 5276 | M: penberg@cs.helsinki.fi |
Pekka Enberg | c76d118 | 2008-02-11 23:52:47 +0200 | [diff] [blame] | 5277 | P: Matt Mackall |
| 5278 | M: mpm@selenic.com |
Christoph Lameter | 415ad26d | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 5279 | L: linux-mm@kvack.org |
| 5280 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5281 | F: include/linux/sl?b*.h |
| 5282 | F: mm/sl?b.c |
Christoph Lameter | 415ad26d | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 5283 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5284 | SMC91x ETHERNET DRIVER |
| 5285 | P: Nicolas Pitre |
| 5286 | M: nico@cam.org |
| 5287 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5288 | F: drivers/net/smc91x.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5289 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5290 | SMSC47B397 HARDWARE MONITOR DRIVER |
| 5291 | P: Mark M. Hoffman |
| 5292 | M: mhoffman@lightlink.com |
| 5293 | L: lm-sensors@lm-sensors.org |
| 5294 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5295 | F: Documentation/hwmon/smsc47b397 |
| 5296 | F: drivers/hwmon/smsc47b397.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5297 | |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 5298 | SMSC911x ETHERNET DRIVER |
| 5299 | P: Steve Glendinning |
| 5300 | M: steve.glendinning@smsc.com |
| 5301 | L: netdev@vger.kernel.org |
| 5302 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5303 | F: include/linux/smsc911x.h |
| 5304 | F: drivers/net/smsc911x.* |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 5305 | |
Steve Glendinning | 2cb3772 | 2008-12-11 20:54:30 -0800 | [diff] [blame] | 5306 | SMSC9420 PCI ETHERNET DRIVER |
| 5307 | P: Steve Glendinning |
| 5308 | M: steve.glendinning@smsc.com |
| 5309 | L: netdev@vger.kernel.org |
| 5310 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5311 | F: drivers/net/smsc9420.* |
Steve Glendinning | 2cb3772 | 2008-12-11 20:54:30 -0800 | [diff] [blame] | 5312 | |
Ben Nizette | b54f286 | 2008-03-13 22:27:30 +1100 | [diff] [blame] | 5313 | SMX UIO Interface |
| 5314 | P: Ben Nizette |
| 5315 | M: bn@niasdigital.com |
| 5316 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5317 | F: drivers/uio/uio_smx.c |
Ben Nizette | b54f286 | 2008-03-13 22:27:30 +1100 | [diff] [blame] | 5318 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5319 | SN-IA64 (Itanium) SUB-PLATFORM |
| 5320 | P: Jes Sorensen |
| 5321 | M: jes@sgi.com |
| 5322 | L: linux-altix@sgi.com |
| 5323 | L: linux-ia64@vger.kernel.org |
| 5324 | W: http://www.sgi.com/altix |
| 5325 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5326 | F: arch/ia64/sn/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5327 | |
Guennadi Liakhovetski | 668acf3 | 2008-07-19 07:54:43 -0300 | [diff] [blame] | 5328 | SOC-CAMERA V4L2 SUBSYSTEM |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5329 | P: Guennadi Liakhovetski |
| 5330 | M: g.liakhovetski@gmx.de |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 5331 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5332 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5333 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5334 | F: include/media/v4l2* |
| 5335 | F: drivers/media/video/v4l2* |
Guennadi Liakhovetski | 668acf3 | 2008-07-19 07:54:43 -0300 | [diff] [blame] | 5336 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5337 | SOEKRIS NET48XX LED SUPPORT |
| 5338 | P: Chris Boot |
| 5339 | M: bootc@bootc.net |
| 5340 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5341 | F: drivers/leds/leds-net48xx.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5342 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5343 | SOFTWARE RAID (Multiple Disks) SUPPORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5344 | P: Neil Brown |
NeilBrown | 524418b | 2007-01-26 00:57:01 -0800 | [diff] [blame] | 5345 | M: neilb@suse.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5346 | L: linux-raid@vger.kernel.org |
NeilBrown | 524418b | 2007-01-26 00:57:01 -0800 | [diff] [blame] | 5347 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5348 | F: drivers/md/ |
| 5349 | F: include/linux/raid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5350 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5351 | SONIC NETWORK DRIVER |
| 5352 | P: Thomas Bogendoerfer |
| 5353 | M: tsbogend@alpha.franken.de |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 5354 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5355 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5356 | F: drivers/net/sonic.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5357 | |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 5358 | SONICS SILICON BACKPLANE DRIVER (SSB) |
| 5359 | P: Michael Buesch |
| 5360 | M: mb@bu3sch.de |
| 5361 | L: netdev@vger.kernel.org |
| 5362 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5363 | F: drivers/ssb/ |
| 5364 | F: include/linux/ssb/ |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 5365 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5366 | SONY VAIO CONTROL DEVICE DRIVER |
Mattia Dongili | 0d477fa | 2007-02-08 20:16:40 +0100 | [diff] [blame] | 5367 | P: Mattia Dongili |
| 5368 | M: malattia@linux.it |
Mattia Dongili | 5b18167 | 2007-03-12 21:43:57 +0100 | [diff] [blame] | 5369 | L: linux-acpi@vger.kernel.org |
| 5370 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5371 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5372 | F: Documentation/laptops/sony-laptop.txt |
| 5373 | F: drivers/char/sonypi.c |
| 5374 | F: drivers/platform/x86/sony-laptop.c |
| 5375 | F: include/linux/sony-laptop.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5376 | |
Alex Dubov | baf8532 | 2008-02-09 10:20:54 -0800 | [diff] [blame] | 5377 | SONY MEMORYSTICK CARD SUPPORT |
| 5378 | P: Alex Dubov |
| 5379 | M: oakad@yahoo.com |
Alex Dubov | baf8532 | 2008-02-09 10:20:54 -0800 | [diff] [blame] | 5380 | W: http://tifmxx.berlios.de/ |
| 5381 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5382 | F: drivers/memstick/host/tifm_ms.c |
Alex Dubov | baf8532 | 2008-02-09 10:20:54 -0800 | [diff] [blame] | 5383 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5384 | SOUND |
| 5385 | P: Jaroslav Kysela |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 5386 | M: perex@perex.cz |
Takashi Iwai | 281712f | 2008-08-19 13:10:04 +0200 | [diff] [blame] | 5387 | P: Takashi Iwai |
| 5388 | M: tiwai@suse.de |
Joe Perches | 9371166 | 2009-06-16 15:34:07 -0700 | [diff] [blame] | 5389 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Joe Perches | 3126a17 | 2009-04-15 23:38:45 -0700 | [diff] [blame] | 5390 | W: http://www.alsa-project.org/ |
| 5391 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git |
| 5392 | T: git git://git.alsa-project.org/alsa-kernel.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5393 | S: Maintained |
Joe Perches | 3126a17 | 2009-04-15 23:38:45 -0700 | [diff] [blame] | 5394 | F: Documentation/sound/ |
| 5395 | F: include/sound/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5396 | F: sound/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5397 | |
Mark Brown | bd903bd | 2008-11-19 19:16:05 +0000 | [diff] [blame] | 5398 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 5399 | P: Liam Girdwood |
Liam Girdwood | b0b8daf | 2008-09-18 14:36:37 +0100 | [diff] [blame] | 5400 | M: lrg@slimlogic.co.uk |
Mark Brown | 2cad0ad | 2008-01-10 14:33:07 +0100 | [diff] [blame] | 5401 | P: Mark Brown |
| 5402 | M: broonie@opensource.wolfsonmicro.com |
Mark Brown | bb74a6e | 2009-05-13 17:23:54 +0100 | [diff] [blame] | 5403 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git |
Joe Perches | 9371166 | 2009-06-16 15:34:07 -0700 | [diff] [blame] | 5404 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Liam Girdwood | b0b8daf | 2008-09-18 14:36:37 +0100 | [diff] [blame] | 5405 | W: http://alsa-project.org/main/index.php/ASoC |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 5406 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5407 | F: sound/soc/ |
Mark Brown | e6e5512 | 2009-05-05 11:10:24 +0100 | [diff] [blame] | 5408 | F: include/sound/soc* |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 5409 | |
Sam Ravnborg | 473321f | 2009-01-04 15:47:49 -0800 | [diff] [blame] | 5410 | SPARC + UltraSPARC (sparc/sparc64) |
| 5411 | P: David S. Miller |
| 5412 | M: davem@davemloft.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5413 | L: sparclinux@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5414 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git |
| 5415 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5416 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5417 | F: arch/sparc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5418 | |
| 5419 | SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER |
| 5420 | P: Roger Wolff |
| 5421 | M: R.E.Wolff@BitWizard.nl |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5422 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5423 | F: Documentation/serial/specialix.txt |
| 5424 | F: drivers/char/specialix* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5425 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5426 | SPI SUBSYSTEM |
| 5427 | P: David Brownell |
| 5428 | M: dbrownell@users.sourceforge.net |
| 5429 | L: spi-devel-general@lists.sourceforge.net |
| 5430 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5431 | F: Documentation/spi/ |
| 5432 | F: drivers/spi/ |
| 5433 | F: include/linux/spi/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5434 | |
Jim Lewis | 2752e40 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 5435 | SPIDERNET NETWORK DRIVER for CELL |
Jens Osterkamp | cb8da8a | 2008-01-11 13:44:35 +0100 | [diff] [blame] | 5436 | P: Ishizaki Kou |
| 5437 | M: kou.ishizaki@toshiba.co.jp |
| 5438 | P: Jens Osterkamp |
| 5439 | M: jens@de.ibm.com |
Jim Lewis | 2752e40 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 5440 | L: netdev@vger.kernel.org |
| 5441 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5442 | F: Documentation/networking/spider_net.txt |
| 5443 | F: drivers/net/spider_net* |
Jim Lewis | 2752e40 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 5444 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5445 | SPU FILE SYSTEM |
| 5446 | P: Jeremy Kerr |
| 5447 | M: jk@ozlabs.org |
| 5448 | L: linuxppc-dev@ozlabs.org |
| 5449 | L: cbe-oss-dev@ozlabs.org |
| 5450 | W: http://www.ibm.com/developerworks/power/cell/ |
| 5451 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5452 | F: Documentation/filesystems/spufs.txt |
| 5453 | F: arch/powerpc/platforms/cell/spufs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5454 | |
Phillip Lougher | fc55584 | 2009-01-05 08:46:29 +0000 | [diff] [blame] | 5455 | SQUASHFS FILE SYSTEM |
| 5456 | P: Phillip Lougher |
| 5457 | M: phillip@lougher.demon.co.uk |
| 5458 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
| 5459 | W: http://squashfs.org.uk |
| 5460 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5461 | F: Documentation/filesystems/squashfs.txt |
| 5462 | F: fs/squashfs/ |
Phillip Lougher | fc55584 | 2009-01-05 08:46:29 +0000 | [diff] [blame] | 5463 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5464 | SRM (Alpha) environment access |
| 5465 | P: Jan-Benedict Glaw |
| 5466 | M: jbglaw@lug-owl.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5467 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5468 | F: arch/alpha/kernel/srm_env.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5469 | |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 5470 | STABLE BRANCH |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5471 | P: Greg Kroah-Hartman |
| 5472 | M: greg@kroah.com |
| 5473 | P: Chris Wright |
| 5474 | M: chrisw@sous-sol.org |
| 5475 | L: stable@kernel.org |
| 5476 | S: Maintained |
| 5477 | |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 5478 | STAGING SUBSYSTEM |
| 5479 | P: Greg Kroah-Hartman |
| 5480 | M: gregkh@suse.de |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 5481 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
Greg Kroah-Hartman | 1c6ccf6 | 2009-06-05 11:23:47 -0700 | [diff] [blame] | 5482 | L: devel@driverdev.osuosl.org |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 5483 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5484 | F: drivers/staging/ |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 5485 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5486 | STARFIRE/DURALAN NETWORK DRIVER |
| 5487 | P: Ion Badulescu |
| 5488 | M: ionut@cs.columbia.edu |
| 5489 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5490 | F: drivers/net/starfire* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5491 | |
| 5492 | STARMODE RADIO IP (STRIP) PROTOCOL DRIVER |
| 5493 | W: http://mosquitonet.Stanford.EDU/strip.html |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 5494 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5495 | F: drivers/net/wireless/strip.c |
| 5496 | F: include/linux/if_strip.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5497 | |
| 5498 | STRADIS MPEG-2 DECODER DRIVER |
| 5499 | P: Nathan Laredo |
| 5500 | M: laredo@gnu.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5501 | W: http://www.stradis.com/ |
| 5502 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5503 | F: drivers/media/video/stradis.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5504 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5505 | SUN3/3X |
| 5506 | P: Sam Creasey |
| 5507 | M: sammy@sammy.net |
| 5508 | W: http://sammy.net/sun3/ |
| 5509 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5510 | F: arch/m68k/kernel/*sun3* |
| 5511 | F: arch/m68k/sun3*/ |
| 5512 | F: arch/m68k/include/asm/sun3* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5513 | |
Paul Mundt | 2cbb12a | 2007-11-19 13:08:37 +0900 | [diff] [blame] | 5514 | SUPERH |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5515 | P: Paul Mundt |
| 5516 | M: lethal@linux-sh.org |
Paul Mundt | 2cbb12a | 2007-11-19 13:08:37 +0900 | [diff] [blame] | 5517 | L: linux-sh@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5518 | W: http://www.linux-sh.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5519 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git |
Paul Mundt | 5c806b2 | 2008-07-29 06:34:01 +0900 | [diff] [blame] | 5520 | S: Supported |
Paul Mundt | 066069e | 2009-04-14 06:32:08 +0900 | [diff] [blame] | 5521 | F: Documentation/sh/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5522 | F: arch/sh/ |
Paul Mundt | 066069e | 2009-04-14 06:32:08 +0900 | [diff] [blame] | 5523 | F: drivers/sh/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5524 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 5525 | SUSPEND TO RAM |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5526 | P: Len Brown |
| 5527 | M: len.brown@intel.com |
| 5528 | P: Pavel Machek |
Pavel Machek | ef35ce2 | 2009-02-18 14:48:16 -0800 | [diff] [blame] | 5529 | M: pavel@ucw.cz |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5530 | P: Rafael J. Wysocki |
| 5531 | M: rjw@sisk.pl |
| 5532 | L: linux-pm@lists.linux-foundation.org |
| 5533 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5534 | F: Documentation/power/ |
| 5535 | F: arch/x86/kernel/acpi/ |
| 5536 | F: drivers/base/power/ |
| 5537 | F: kernel/power/ |
| 5538 | F: include/linux/suspend.h |
| 5539 | F: include/linux/freezer.h |
| 5540 | F: include/linux/pm.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5541 | |
| 5542 | SVGA HANDLING |
| 5543 | P: Martin Mares |
| 5544 | M: mj@ucw.cz |
| 5545 | L: linux-video@atrey.karlin.mff.cuni.cz |
| 5546 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5547 | F: Documentation/svga.txt |
| 5548 | F: arch/x86/boot/video* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5549 | |
| 5550 | SYSV FILESYSTEM |
| 5551 | P: Christoph Hellwig |
| 5552 | M: hch@infradead.org |
| 5553 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5554 | F: Documentation/filesystems/sysv-fs.txt |
| 5555 | F: fs/sysv/ |
| 5556 | F: include/linux/sysv_fs.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5557 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5558 | TASKSTATS STATISTICS INTERFACE |
Balbir Singh | abc5f23 | 2008-07-04 09:59:42 -0700 | [diff] [blame] | 5559 | P: Balbir Singh |
| 5560 | M: balbir@linux.vnet.ibm.com |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5561 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5562 | F: Documentation/accounting/taskstats* |
| 5563 | F: include/linux/taskstats* |
| 5564 | F: kernel/taskstats.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5565 | |
Stephen Hemminger | 781b456a | 2006-07-10 20:25:29 -0700 | [diff] [blame] | 5566 | TC CLASSIFIER |
| 5567 | P: Jamal Hadi Salim |
| 5568 | M: hadi@cyberus.ca |
| 5569 | L: netdev@vger.kernel.org |
| 5570 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5571 | F: include/linux/pkt_cls.h |
| 5572 | F: include/net/pkt_cls.h |
| 5573 | F: net/sched/ |
Stephen Hemminger | 781b456a | 2006-07-10 20:25:29 -0700 | [diff] [blame] | 5574 | |
Wong Hoi Sing Edison | 5067f08 | 2006-09-13 20:31:13 -0700 | [diff] [blame] | 5575 | TCP LOW PRIORITY MODULE |
| 5576 | P: Wong Hoi Sing, Edison |
| 5577 | M: hswong3i@gmail.com |
| 5578 | P: Hung Hing Lun, Mike |
| 5579 | M: hlhung3i@gmail.com |
| 5580 | W: http://tcp-lp-mod.sourceforge.net/ |
| 5581 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5582 | F: net/ipv4/tcp_lp.c |
Wong Hoi Sing Edison | 5067f08 | 2006-09-13 20:31:13 -0700 | [diff] [blame] | 5583 | |
Andy Gospodarek | 1a348cc | 2007-09-17 18:50:36 -0700 | [diff] [blame] | 5584 | TEHUTI ETHERNET DRIVER |
| 5585 | P: Alexander Indenbaum |
| 5586 | M: baum@tehutinetworks.net |
| 5587 | P: Andy Gospodarek |
| 5588 | M: andy@greyhouse.net |
| 5589 | L: netdev@vger.kernel.org |
| 5590 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5591 | F: drivers/net/tehuti* |
Andy Gospodarek | 1a348cc | 2007-09-17 18:50:36 -0700 | [diff] [blame] | 5592 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5593 | Telecom Clock Driver for MCPL0010 |
| 5594 | P: Mark Gross |
| 5595 | M: mark.gross@intel.com |
| 5596 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5597 | F: drivers/char/tlclk.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5598 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 5599 | TENSILICA XTENSA PORT (xtensa) |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5600 | P: Chris Zankel |
| 5601 | M: chris@zankel.net |
| 5602 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5603 | F: arch/xtensa/ |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5604 | |
| 5605 | THINKPAD ACPI EXTRAS DRIVER |
| 5606 | P: Henrique de Moraes Holschuh |
| 5607 | M: ibm-acpi@hmh.eng.br |
| 5608 | L: ibm-acpi-devel@lists.sourceforge.net |
| 5609 | W: http://ibm-acpi.sourceforge.net |
| 5610 | W: http://thinkwiki.org/wiki/Ibm-acpi |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5611 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5612 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5613 | F: drivers/platform/x86/thinkpad_acpi.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5614 | |
Alex Dubov | 4020f2d | 2006-10-04 02:15:37 -0700 | [diff] [blame] | 5615 | TI FLASH MEDIA INTERFACE DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5616 | P: Alex Dubov |
| 5617 | M: oakad@yahoo.com |
| 5618 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5619 | F: drivers/misc/tifm* |
| 5620 | F: drivers/mmc/host/tifm_sd.c |
| 5621 | F: include/linux/tifm.h |
Alex Dubov | 4020f2d | 2006-10-04 02:15:37 -0700 | [diff] [blame] | 5622 | |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5623 | TIPC NETWORK LAYER |
| 5624 | P: Per Liden |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 5625 | M: per.liden@ericsson.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5626 | P: Jon Maloy |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 5627 | M: jon.maloy@ericsson.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5628 | P: Allan Stephens |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 5629 | M: allan.stephens@windriver.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5630 | L: tipc-discussion@lists.sourceforge.net |
| 5631 | W: http://tipc.sourceforge.net/ |
| 5632 | W: http://tipc.cslab.ericsson.net/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5633 | T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5634 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5635 | F: include/linux/tipc*.h |
| 5636 | F: include/net/tipc/ |
| 5637 | F: net/tipc/ |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5638 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5639 | TLAN NETWORK DRIVER |
| 5640 | P: Samuel Chessman |
| 5641 | M: chessman@tux.org |
Gabriel Craciunescu | 88c07dd | 2007-11-22 19:43:36 +0800 | [diff] [blame] | 5642 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5643 | W: http://sourceforge.net/projects/tlan/ |
| 5644 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5645 | F: Documentation/networking/tlan.txt |
| 5646 | F: drivers/net/tlan.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5647 | |
Kentaro Takeda | d74db3b | 2009-02-05 17:18:18 +0900 | [diff] [blame] | 5648 | TOMOYO SECURITY MODULE |
| 5649 | P: Kentaro Takeda |
| 5650 | M: takedakn@nttdata.co.jp |
| 5651 | P: Tetsuo Handa |
| 5652 | M: penguin-kernel@I-love.SAKURA.ne.jp |
Kentaro Takeda | d74db3b | 2009-02-05 17:18:18 +0900 | [diff] [blame] | 5653 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English) |
| 5654 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
| 5655 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) |
| 5656 | W: http://tomoyo.sourceforge.jp/ |
| 5657 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/ |
| 5658 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5659 | F: security/tomoyo/ |
Kentaro Takeda | d74db3b | 2009-02-05 17:18:18 +0900 | [diff] [blame] | 5660 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5661 | TOSHIBA ACPI EXTRAS DRIVER |
Johannes Berg | 1506553 | 2009-03-30 12:02:35 +0200 | [diff] [blame] | 5662 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5663 | F: drivers/platform/x86/toshiba_acpi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5664 | |
| 5665 | TOSHIBA SMM DRIVER |
| 5666 | P: Jonathan Buzzard |
| 5667 | M: jonathan@buzzard.org.uk |
| 5668 | L: tlinux-users@tce.toshiba-dme.co.jp |
| 5669 | W: http://www.buzzard.org.uk/toshiba/ |
| 5670 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5671 | F: drivers/char/toshiba.c |
| 5672 | F: include/linux/toshiba.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5673 | |
Pierre Ossman | d719f90 | 2009-03-24 21:06:09 +0100 | [diff] [blame] | 5674 | TMIO MMC DRIVER |
| 5675 | P: Ian Molton |
| 5676 | M: ian@mnementh.co.uk |
| 5677 | S: Maintained |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 5678 | F: drivers/mmc/host/tmio_mmc.* |
Pierre Ossman | d719f90 | 2009-03-24 21:06:09 +0100 | [diff] [blame] | 5679 | |
Hugh Dickins | 98f3260 | 2009-05-21 20:33:58 +0100 | [diff] [blame] | 5680 | TMPFS (SHMEM FILESYSTEM) |
| 5681 | P: Hugh Dickins |
| 5682 | M: hugh.dickins@tiscali.co.uk |
| 5683 | L: linux-mm@kvack.org |
| 5684 | S: Maintained |
| 5685 | F: include/linux/shmem_fs.h |
| 5686 | F: mm/shmem.c |
| 5687 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5688 | TPM DEVICE DRIVER |
Rajiv Andrade | 141c024 | 2008-07-21 14:21:37 -0700 | [diff] [blame] | 5689 | P: Debora Velarde |
| 5690 | M: debora@linux.vnet.ibm.com |
| 5691 | P: Rajiv Andrade |
| 5692 | M: srajiv@linux.vnet.ibm.com |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5693 | W: http://tpmdd.sourceforge.net |
| 5694 | P: Marcel Selhorst |
Marcel Selhorst | 7dcce13 | 2009-02-11 13:04:27 -0800 | [diff] [blame] | 5695 | M: m.selhorst@sirrix.com |
| 5696 | W: http://www.sirrix.com |
Rajiv Andrade | 63a10df | 2008-10-15 22:04:36 -0700 | [diff] [blame] | 5697 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5698 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5699 | F: drivers/char/tpm/ |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5700 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5701 | TRIVIAL PATCHES |
Jiri Kosina | 2b6a2f5 | 2008-11-14 11:55:03 +0100 | [diff] [blame] | 5702 | P: Jiri Kosina |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 5703 | M: trivial@kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5704 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5705 | S: Maintained |
Joe Perches | 130b76c | 2009-06-16 15:34:10 -0700 | [diff] [blame] | 5706 | F: drivers/char/tty_* |
| 5707 | F: drivers/serial/serial_core.c |
| 5708 | F: include/linux/serial_core.h |
| 5709 | F: include/linux/serial.h |
| 5710 | F: include/linux/tty.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5711 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5712 | TTY LAYER |
| 5713 | P: Alan Cox |
| 5714 | M: alan@lxorguk.ukuu.org.uk |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5715 | S: Maintained |
Alan Cox | e960bf7 | 2009-06-11 14:04:57 +0100 | [diff] [blame] | 5716 | T: stgit http://zeniv.linux.org.uk/~alan/ttydev/ |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5717 | |
Grant Grundler | 740db6d | 2008-02-17 11:53:49 -0700 | [diff] [blame] | 5718 | TULIP NETWORK DRIVERS |
| 5719 | P: Grant Grundler |
| 5720 | M: grundler@parisc-linux.org |
| 5721 | P: Kyle McMartin |
Kyle McMartin | 42a5a8a | 2008-06-06 17:16:17 -0400 | [diff] [blame] | 5722 | M: kyle@mcmartin.ca |
Grant Grundler | 740db6d | 2008-02-17 11:53:49 -0700 | [diff] [blame] | 5723 | L: netdev@vger.kernel.org |
| 5724 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5725 | F: drivers/net/tulip/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5726 | |
| 5727 | TUN/TAP driver |
| 5728 | P: Maxim Krasnyansky |
Dave Jones | 66777b7 | 2006-03-25 03:07:53 -0800 | [diff] [blame] | 5729 | M: maxk@qualcomm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5730 | L: vtun@office.satix.net |
| 5731 | W: http://vtun.sourceforge.net/tun |
| 5732 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5733 | F: Documentation/networking/tuntap.txt |
| 5734 | F: arch/um/os-Linux/drivers/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5735 | |
Maciej W. Rozycki | b454cc6 | 2007-02-05 16:28:25 -0800 | [diff] [blame] | 5736 | TURBOCHANNEL SUBSYSTEM |
| 5737 | P: Maciej W. Rozycki |
| 5738 | M: macro@linux-mips.org |
| 5739 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5740 | F: drivers/tc/ |
| 5741 | F: include/linux/tc.h |
Maciej W. Rozycki | b454cc6 | 2007-02-05 16:28:25 -0800 | [diff] [blame] | 5742 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5743 | U14-34F SCSI DRIVER |
| 5744 | P: Dario Ballabio |
| 5745 | M: ballabio_dario@emc.com |
| 5746 | L: linux-scsi@vger.kernel.org |
| 5747 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5748 | F: drivers/scsi/u14-34f.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5749 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5750 | UBI FILE SYSTEM (UBIFS) |
| 5751 | P: Artem Bityutskiy |
| 5752 | M: dedekind@infradead.org |
| 5753 | P: Adrian Hunter |
| 5754 | M: ext-adrian.hunter@nokia.com |
| 5755 | L: linux-mtd@lists.infradead.org |
Artem Bityutskiy | e2966cb | 2008-10-25 18:54:04 +0300 | [diff] [blame] | 5756 | T: git git://git.infradead.org/ubifs-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5757 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
| 5758 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5759 | F: Documentation/filesystems/ubifs.txt |
| 5760 | F: fs/ubifs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5761 | |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5762 | UCLINUX (AND M68KNOMMU) |
| 5763 | P: Greg Ungerer |
| 5764 | M: gerg@uclinux.org |
| 5765 | W: http://www.uclinux.org/ |
| 5766 | L: uclinux-dev@uclinux.org (subscribers-only) |
| 5767 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5768 | F: arch/m68knommu/ |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5769 | |
Robert P. J. Day | 14fadca | 2009-04-21 12:24:47 -0700 | [diff] [blame] | 5770 | UCLINUX FOR RENESAS H8/300 (H8300) |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5771 | P: Yoshinori Sato |
| 5772 | M: ysato@users.sourceforge.jp |
| 5773 | W: http://uclinux-h8.sourceforge.jp/ |
| 5774 | S: Supported |
| 5775 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5776 | UDF FILESYSTEM |
Jan Kara | 800fdfb | 2008-02-08 04:20:51 -0800 | [diff] [blame] | 5777 | P: Jan Kara |
| 5778 | M: jack@suse.cz |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5779 | W: http://linux-udf.sourceforge.net |
| 5780 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5781 | F: Documentation/filesystems/udf.txt |
| 5782 | F: fs/udf/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5783 | |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5784 | UFS FILESYSTEM |
| 5785 | P: Evgeniy Dushistov |
| 5786 | M: dushistov@mail.ru |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5787 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5788 | F: Documentation/filesystems/ufs.txt |
| 5789 | F: fs/ufs/ |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5790 | |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 5791 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
| 5792 | P: David Vrabel |
| 5793 | M: david.vrabel@csr.com |
| 5794 | L: linux-usb@vger.kernel.org |
| 5795 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5796 | F: drivers/uwb/* |
| 5797 | F: include/linux/uwb.h |
| 5798 | F: include/linux/uwb/ |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 5799 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5800 | UNIFORM CDROM DRIVER |
| 5801 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 5802 | M: axboe@kernel.dk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5803 | W: http://www.kernel.dk |
| 5804 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5805 | F: Documentation/cdrom/ |
| 5806 | F: drivers/cdrom/cdrom.c |
| 5807 | F: include/linux/cdrom.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5808 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5809 | UNSORTED BLOCK IMAGES (UBI) |
| 5810 | P: Artem Bityutskiy |
| 5811 | M: dedekind@infradead.org |
| 5812 | W: http://www.linux-mtd.infradead.org/ |
| 5813 | L: linux-mtd@lists.infradead.org |
Artem Bityutskiy | e2966cb | 2008-10-25 18:54:04 +0300 | [diff] [blame] | 5814 | T: git git://git.infradead.org/ubi-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5815 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 5816 | F: drivers/mtd/ubi/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5817 | F: include/linux/mtd/ubi.h |
| 5818 | F: include/mtd/ubi-user.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5819 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5820 | USB ACM DRIVER |
| 5821 | P: Oliver Neukum |
| 5822 | M: oliver@neukum.name |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 5823 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5824 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5825 | F: Documentation/usb/acm.txt |
| 5826 | F: drivers/usb/class/cdc-acm.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5827 | |
| 5828 | USB BLOCK DRIVER (UB ub) |
| 5829 | P: Pete Zaitcev |
| 5830 | M: zaitcev@redhat.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5831 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5832 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5833 | F: drivers/block/ub.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5834 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5835 | USB CDC ETHERNET DRIVER |
| 5836 | P: Greg Kroah-Hartman |
| 5837 | M: greg@kroah.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5838 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5839 | S: Maintained |
| 5840 | W: http://www.kroah.com/linux-usb/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5841 | F: drivers/net/usb/cdc_*.c |
| 5842 | F: include/linux/usb/cdc.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5843 | |
Peter Korsgaard | b02b371 | 2008-04-27 08:59:44 +0200 | [diff] [blame] | 5844 | USB CYPRESS C67X00 DRIVER |
| 5845 | P: Peter Korsgaard |
| 5846 | M: jacmet@sunsite.dk |
| 5847 | L: linux-usb@vger.kernel.org |
| 5848 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5849 | F: drivers/usb/c67x00/ |
Peter Korsgaard | b02b371 | 2008-04-27 08:59:44 +0200 | [diff] [blame] | 5850 | |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 5851 | USB DAVICOM DM9601 DRIVER |
| 5852 | P: Peter Korsgaard |
| 5853 | M: jacmet@sunsite.dk |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 5854 | L: netdev@vger.kernel.org |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 5855 | W: http://www.linux-usb.org/usbnet |
| 5856 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5857 | F: drivers/net/usb/dm9601.c |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 5858 | |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5859 | USB DIAMOND RIO500 DRIVER |
| 5860 | P: Cesar Miquel |
| 5861 | M: miquel@df.uba.ar |
| 5862 | L: rio500-users@lists.sourceforge.net |
| 5863 | W: http://rio500.sourceforge.net |
| 5864 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5865 | F: drivers/usb/misc/rio500* |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5866 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5867 | USB EHCI DRIVER |
| 5868 | P: David Brownell |
| 5869 | M: dbrownell@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5870 | L: linux-usb@vger.kernel.org |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 5871 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5872 | F: Documentation/usb/ehci.txt |
| 5873 | F: drivers/usb/host/ehci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5874 | |
Luca Risolia | 7ce08c9 | 2006-01-11 02:06:59 +0000 | [diff] [blame] | 5875 | USB ET61X[12]51 DRIVER |
| 5876 | P: Luca Risolia |
| 5877 | M: luca.risolia@studio.unibo.it |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5878 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 5879 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5880 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Luca Risolia | 7ce08c9 | 2006-01-11 02:06:59 +0000 | [diff] [blame] | 5881 | W: http://www.linux-projects.org |
| 5882 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5883 | F: drivers/media/video/et61x251/ |
Luca Risolia | 7ce08c9 | 2006-01-11 02:06:59 +0000 | [diff] [blame] | 5884 | |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 5885 | USB GADGET/PERIPHERAL SUBSYSTEM |
| 5886 | P: David Brownell |
| 5887 | M: dbrownell@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5888 | L: linux-usb@vger.kernel.org |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 5889 | W: http://www.linux-usb.org/gadget |
| 5890 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5891 | F: drivers/usb/gadget/ |
| 5892 | F: include/linux/usb/gadget* |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 5893 | |
Jiri Kosina | 2dea64b | 2007-07-11 12:12:11 +0200 | [diff] [blame] | 5894 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
Jiri Kosina | 641266fd | 2007-01-15 09:56:21 +0100 | [diff] [blame] | 5895 | P: Jiri Kosina |
| 5896 | M: jkosina@suse.cz |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5897 | L: linux-usb@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5898 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5899 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5900 | F: Documentation/usb/hiddev.txt |
| 5901 | F: drivers/hid/usbhid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5902 | |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 5903 | USB ISP116X DRIVER |
| 5904 | P: Olav Kongas |
| 5905 | M: ok@artecdesign.ee |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5906 | L: linux-usb@vger.kernel.org |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 5907 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5908 | F: drivers/usb/host/isp116x* |
| 5909 | F: include/linux/usb/isp116x.h |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 5910 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5911 | USB KAWASAKI LSI DRIVER |
| 5912 | P: Oliver Neukum |
| 5913 | M: oliver@neukum.name |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5914 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5915 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5916 | F: drivers/usb/serial/kl5kusb105.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5917 | |
| 5918 | USB MASS STORAGE DRIVER |
| 5919 | P: Matthew Dharm |
| 5920 | M: mdharm-usb@one-eyed-alien.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5921 | L: linux-usb@vger.kernel.org |
Matthew Dharm | 8836aeb | 2005-12-04 22:03:47 -0800 | [diff] [blame] | 5922 | L: usb-storage@lists.one-eyed-alien.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5923 | S: Maintained |
| 5924 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5925 | F: drivers/usb/storage/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5926 | |
| 5927 | USB OHCI DRIVER |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 5928 | P: David Brownell |
| 5929 | M: dbrownell@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5930 | L: linux-usb@vger.kernel.org |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 5931 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5932 | F: Documentation/usb/ohci.txt |
| 5933 | F: drivers/usb/host/ohci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5934 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 5935 | USB OPTION-CARD DRIVER |
| 5936 | P: Matthias Urlichs |
| 5937 | M: smurf@smurf.noris.de |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5938 | L: linux-usb@vger.kernel.org |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 5939 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5940 | F: drivers/usb/serial/option.c |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 5941 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5942 | USB OV511 DRIVER |
| 5943 | P: Mark McClelland |
| 5944 | M: mmcclell@bigfoot.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5945 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5946 | W: http://alpha.dyndns.org/ov511/ |
| 5947 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5948 | F: drivers/media/video/ov511.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5949 | |
| 5950 | USB PEGASUS DRIVER |
| 5951 | P: Petko Manolov |
| 5952 | M: petkan@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5953 | L: linux-usb@vger.kernel.org |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 5954 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5955 | W: http://pegasus2.sourceforge.net/ |
| 5956 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5957 | F: drivers/net/usb/pegasus.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5958 | |
Pete Zaitcev | 73e4fb3 | 2007-06-21 15:18:35 -0700 | [diff] [blame] | 5959 | USB PRINTER DRIVER (usblp) |
| 5960 | P: Pete Zaitcev |
| 5961 | M: zaitcev@redhat.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5962 | L: linux-usb@vger.kernel.org |
Pete Zaitcev | 73e4fb3 | 2007-06-21 15:18:35 -0700 | [diff] [blame] | 5963 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5964 | F: drivers/usb/class/usblp.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5965 | |
| 5966 | USB RTL8150 DRIVER |
| 5967 | P: Petko Manolov |
| 5968 | M: petkan@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5969 | L: linux-usb@vger.kernel.org |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 5970 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5971 | W: http://pegasus2.sourceforge.net/ |
| 5972 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5973 | F: drivers/net/usb/rtl8150.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5974 | |
| 5975 | USB SE401 DRIVER |
| 5976 | P: Jeroen Vreeken |
| 5977 | M: pe1rxq@amsat.org |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5978 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5979 | W: http://www.chello.nl/~j.vreeken/se401/ |
| 5980 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5981 | F: Documentation/video4linux/se401.txt |
| 5982 | F: drivers/media/video/se401.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5983 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5984 | USB SERIAL BELKIN F5U103 DRIVER |
| 5985 | P: William Greathouse |
| 5986 | M: wgreathouse@smva.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5987 | L: linux-usb@vger.kernel.org |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5988 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5989 | F: drivers/usb/serial/belkin_sa.* |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5990 | |
| 5991 | USB SERIAL CYPRESS M8 DRIVER |
| 5992 | P: Lonnie Mendez |
| 5993 | M: dignome@gmail.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5994 | L: linux-usb@vger.kernel.org |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5995 | S: Maintained |
| 5996 | W: http://geocities.com/i0xox0i |
| 5997 | W: http://firstlight.net/cvs |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5998 | F: drivers/usb/serial/cypress_m8.* |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5999 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6000 | USB SERIAL CYBERJACK DRIVER |
| 6001 | P: Matthias Bruestle and Harald Welte |
| 6002 | M: support@reiner-sct.com |
| 6003 | W: http://www.reiner-sct.de/support/treiber_cyberjack.php |
| 6004 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6005 | F: drivers/usb/serial/cyberjack.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6006 | |
| 6007 | USB SERIAL DIGI ACCELEPORT DRIVER |
| 6008 | P: Peter Berger and Al Borchers |
| 6009 | M: pberger@brimson.com |
| 6010 | M: alborchers@steinerpoint.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6011 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6012 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6013 | F: drivers/usb/serial/digi_acceleport.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6014 | |
| 6015 | USB SERIAL DRIVER |
| 6016 | P: Greg Kroah-Hartman |
| 6017 | M: gregkh@suse.de |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6018 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6019 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6020 | F: Documentation/usb/usb-serial.txt |
| 6021 | F: drivers/usb/serial/generic.c |
| 6022 | F: drivers/usb/serial/usb-serial.c |
| 6023 | F: include/linux/usb/serial.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6024 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6025 | USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER |
| 6026 | P: Gary Brubaker |
| 6027 | M: xavyer@ix.netcom.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6028 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6029 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6030 | F: drivers/usb/serial/empeg.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6031 | |
| 6032 | USB SERIAL KEYSPAN DRIVER |
| 6033 | P: Greg Kroah-Hartman |
| 6034 | M: greg@kroah.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6035 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6036 | W: http://www.kroah.com/linux/ |
| 6037 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6038 | F: drivers/usb/serial/*keyspan* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6039 | |
| 6040 | USB SERIAL WHITEHEAT DRIVER |
Stuart MacDonald | 8bc8493 | 2007-05-04 16:00:03 -0400 | [diff] [blame] | 6041 | P: Support Department |
| 6042 | M: support@connecttech.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6043 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6044 | W: http://www.connecttech.com |
| 6045 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6046 | F: drivers/usb/serial/whiteheat* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6047 | |
Steve Glendinning | 2f7ca80 | 2008-10-02 05:27:57 +0000 | [diff] [blame] | 6048 | USB SMSC95XX ETHERNET DRIVER |
| 6049 | P: Steve Glendinning |
| 6050 | M: steve.glendinning@smsc.com |
| 6051 | L: netdev@vger.kernel.org |
| 6052 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6053 | F: drivers/net/usb/smsc95xx.* |
Steve Glendinning | 2f7ca80 | 2008-10-02 05:27:57 +0000 | [diff] [blame] | 6054 | |
Luca Risolia | f423b9a | 2007-03-26 16:12:04 -0300 | [diff] [blame] | 6055 | USB SN9C1xx DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6056 | P: Luca Risolia |
| 6057 | M: luca.risolia@studio.unibo.it |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6058 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6059 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6060 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6061 | W: http://www.linux-projects.org |
| 6062 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6063 | F: Documentation/video4linux/sn9c102.txt |
| 6064 | F: drivers/media/video/sn9c102/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6065 | |
| 6066 | USB SUBSYSTEM |
| 6067 | P: Greg Kroah-Hartman |
| 6068 | M: gregkh@suse.de |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6069 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6070 | W: http://www.linux-usb.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 6071 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6072 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6073 | F: Documentation/usb/ |
| 6074 | F: drivers/net/usb/ |
| 6075 | F: drivers/usb/ |
| 6076 | F: include/linux/usb.h |
| 6077 | F: include/linux/usb/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6078 | |
| 6079 | USB UHCI DRIVER |
| 6080 | P: Alan Stern |
| 6081 | M: stern@rowland.harvard.edu |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6082 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6083 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6084 | F: drivers/usb/host/uhci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6085 | |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 6086 | USB "USBNET" DRIVER FRAMEWORK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6087 | P: David Brownell |
| 6088 | M: dbrownell@users.sourceforge.net |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 6089 | L: netdev@vger.kernel.org |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 6090 | W: http://www.linux-usb.org/usbnet |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6091 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6092 | F: drivers/net/usb/usbnet.c |
| 6093 | F: include/linux/usb/usbnet.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6094 | |
Laurent Pinchart | c0efd23 | 2008-06-30 15:04:50 -0300 | [diff] [blame] | 6095 | USB VIDEO CLASS |
| 6096 | P: Laurent Pinchart |
| 6097 | M: laurent.pinchart@skynet.be |
Jiri Slaby | a67534a | 2008-12-10 09:09:27 -0300 | [diff] [blame] | 6098 | L: linux-uvc-devel@lists.berlios.de (subscribers-only) |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6099 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6100 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Laurent Pinchart | c0efd23 | 2008-06-30 15:04:50 -0300 | [diff] [blame] | 6101 | W: http://linux-uvc.berlios.de |
| 6102 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6103 | F: drivers/media/video/uvc/ |
Laurent Pinchart | c0efd23 | 2008-06-30 15:04:50 -0300 | [diff] [blame] | 6104 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6105 | USB W996[87]CF DRIVER |
| 6106 | P: Luca Risolia |
| 6107 | M: luca.risolia@studio.unibo.it |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6108 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6109 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6110 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6111 | W: http://www.linux-projects.org |
| 6112 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6113 | F: Documentation/video4linux/w9968cf.txt |
| 6114 | F: drivers/media/video/w996* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6115 | |
Jussi Kivilinna | bf164cc | 2008-01-26 00:51:51 +0200 | [diff] [blame] | 6116 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
| 6117 | P: Jussi Kivilinna |
| 6118 | M: jussi.kivilinna@mbnet.fi |
| 6119 | L: linux-wireless@vger.kernel.org |
| 6120 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6121 | F: drivers/net/wireless/rndis_wlan.c |
Jussi Kivilinna | bf164cc | 2008-01-26 00:51:51 +0200 | [diff] [blame] | 6122 | |
Sarah Sharp | eb6bab1 | 2009-04-29 19:07:13 -0700 | [diff] [blame] | 6123 | USB XHCI DRIVER |
| 6124 | P: Sarah Sharp |
| 6125 | M: sarah.a.sharp@intel.com |
| 6126 | L: linux-usb@vger.kernel.org |
| 6127 | S: Supported |
| 6128 | |
Luca Risolia | 60f7805 | 2006-02-06 16:29:35 +0000 | [diff] [blame] | 6129 | USB ZC0301 DRIVER |
| 6130 | P: Luca Risolia |
| 6131 | M: luca.risolia@studio.unibo.it |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6132 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6133 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6134 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Luca Risolia | 60f7805 | 2006-02-06 16:29:35 +0000 | [diff] [blame] | 6135 | W: http://www.linux-projects.org |
| 6136 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6137 | F: Documentation/video4linux/zc0301.txt |
| 6138 | F: drivers/media/video/zc0301/ |
Luca Risolia | 60f7805 | 2006-02-06 16:29:35 +0000 | [diff] [blame] | 6139 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6140 | USB ZD1201 DRIVER |
| 6141 | P: Jeroen Vreeken |
| 6142 | M: pe1rxq@amsat.org |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6143 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6144 | W: http://linux-lc100020.sourceforge.net |
| 6145 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6146 | F: drivers/net/wireless/zd1201.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6147 | |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 6148 | USB ZR364XX DRIVER |
| 6149 | P: Antoine Jacquet |
| 6150 | M: royale@zerezo.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6151 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6152 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6153 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 6154 | W: http://royale.zerezo.com/zr364xx/ |
| 6155 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6156 | F: Documentation/video4linux/zr364xx.txt |
| 6157 | F: drivers/media/video/zr364xx.c |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 6158 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 6159 | USER-MODE LINUX (UML) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6160 | P: Jeff Dike |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 6161 | M: jdike@addtoit.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6162 | L: user-mode-linux-devel@lists.sourceforge.net |
| 6163 | L: user-mode-linux-user@lists.sourceforge.net |
| 6164 | W: http://user-mode-linux.sourceforge.net |
| 6165 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6166 | F: Documentation/uml/ |
| 6167 | F: arch/um/ |
| 6168 | F: fs/hostfs/ |
| 6169 | F: fs/hppfs/ |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 6170 | |
Hans-Jürgen Koch | e5f114e | 2007-12-05 15:08:07 +0100 | [diff] [blame] | 6171 | USERSPACE I/O (UIO) |
| 6172 | P: Hans J. Koch |
| 6173 | M: hjk@linutronix.de |
| 6174 | P: Greg Kroah-Hartman |
| 6175 | M: gregkh@suse.de |
Hans-Jürgen Koch | e5f114e | 2007-12-05 15:08:07 +0100 | [diff] [blame] | 6176 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6177 | F: Documentation/DocBook/uio-howto.tmpl |
| 6178 | F: drivers/uio/ |
| 6179 | F: include/linux/uio*.h |
Hans-Jürgen Koch | e5f114e | 2007-12-05 15:08:07 +0100 | [diff] [blame] | 6180 | |
Karel Zak | f899b0a | 2008-05-23 13:04:21 -0700 | [diff] [blame] | 6181 | UTIL-LINUX-NG PACKAGE |
| 6182 | P: Karel Zak |
| 6183 | M: kzak@redhat.com |
| 6184 | L: util-linux-ng@vger.kernel.org |
| 6185 | W: http://kernel.org/~kzak/util-linux-ng/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6186 | T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git |
Karel Zak | f899b0a | 2008-05-23 13:04:21 -0700 | [diff] [blame] | 6187 | S: Maintained |
| 6188 | |
Michal Januszewski | c1fd1c0 | 2008-10-15 22:03:48 -0700 | [diff] [blame] | 6189 | UVESAFB DRIVER |
| 6190 | P: Michal Januszewski |
| 6191 | M: spock@gentoo.org |
| 6192 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 6193 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
| 6194 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6195 | F: Documentation/fb/uvesafb.txt |
| 6196 | F: drivers/video/uvesafb.* |
Michal Januszewski | c1fd1c0 | 2008-10-15 22:03:48 -0700 | [diff] [blame] | 6197 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 6198 | VFAT/FAT/MSDOS FILESYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6199 | P: OGAWA Hirofumi |
| 6200 | M: hirofumi@mail.parknet.co.jp |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6201 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6202 | F: Documentation/filesystems/vfat.txt |
| 6203 | F: fs/fat/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6205 | VIA RHINE NETWORK DRIVER |
| 6206 | P: Roger Luethi |
| 6207 | M: rl@hellgate.ch |
| 6208 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6209 | F: drivers/net/via-rhine.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6210 | |
Jean Delvare | 32c0a52 | 2005-09-22 21:47:58 +0200 | [diff] [blame] | 6211 | VIAPRO SMBUS DRIVER |
| 6212 | P: Jean Delvare |
| 6213 | M: khali@linux-fr.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 6214 | L: linux-i2c@vger.kernel.org |
Jean Delvare | 32c0a52 | 2005-09-22 21:47:58 +0200 | [diff] [blame] | 6215 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6216 | F: Documentation/i2c/busses/i2c-viapro |
| 6217 | F: drivers/i2c/busses/i2c-viapro.c |
Jean Delvare | 32c0a52 | 2005-09-22 21:47:58 +0200 | [diff] [blame] | 6218 | |
Joseph Chan | 69e4a7c | 2008-10-15 22:03:31 -0700 | [diff] [blame] | 6219 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
| 6220 | P: Joseph Chan |
| 6221 | M: JosephChan@via.com.tw |
| 6222 | P: Scott Fang |
| 6223 | M: ScottFang@viatech.com.cn |
| 6224 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 6225 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6226 | F: drivers/video/via/ |
Joseph Chan | 69e4a7c | 2008-10-15 22:03:31 -0700 | [diff] [blame] | 6227 | |
Francois Romieu | 01f2073 | 2007-01-26 00:57:17 -0800 | [diff] [blame] | 6228 | VIA VELOCITY NETWORK DRIVER |
| 6229 | P: Francois Romieu |
| 6230 | M: romieu@fr.zoreil.com |
| 6231 | L: netdev@vger.kernel.org |
| 6232 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6233 | F: drivers/net/via-velocity.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6234 | |
Patrick McHardy | be7f827 | 2007-10-23 20:26:36 -0700 | [diff] [blame] | 6235 | VLAN (802.1Q) |
| 6236 | P: Patrick McHardy |
| 6237 | M: kaber@trash.net |
| 6238 | L: netdev@vger.kernel.org |
| 6239 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6240 | F: drivers/net/macvlan.c |
| 6241 | F: include/linux/if_*vlan.h |
| 6242 | F: net/8021q/ |
Patrick McHardy | be7f827 | 2007-10-23 20:26:36 -0700 | [diff] [blame] | 6243 | |
Florian Fainelli | 55e331c | 2009-06-16 15:33:53 -0700 | [diff] [blame] | 6244 | VLYNQ BUS |
| 6245 | P: Florian Fainelli |
| 6246 | M: florian@openwrt.org |
| 6247 | L: openwrt-devel@lists.openwrt.org |
| 6248 | S: Maintained |
| 6249 | F: drivers/vlynq/vlynq.c |
| 6250 | F: include/linux/vlynq.h |
| 6251 | |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 6252 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
| 6253 | P: Liam Girdwood |
Liam Girdwood | 8a62ab4 | 2008-09-14 17:40:21 +0100 | [diff] [blame] | 6254 | M: lrg@slimlogic.co.uk |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 6255 | P: Mark Brown |
| 6256 | M: broonie@opensource.wolfsonmicro.com |
| 6257 | W: http://opensource.wolfsonmicro.com/node/15 |
Liam Girdwood | 1dd68f0 | 2009-02-02 21:43:31 +0000 | [diff] [blame] | 6258 | W: http://www.slimlogic.co.uk/?p=48 |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6259 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 6260 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6261 | F: drivers/regulator/ |
| 6262 | F: include/linux/regulator/ |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 6263 | |
Juerg Haefliger | ab41319 | 2006-09-24 20:54:04 +0200 | [diff] [blame] | 6264 | VT1211 HARDWARE MONITOR DRIVER |
| 6265 | P: Juerg Haefliger |
| 6266 | M: juergh@gmail.com |
| 6267 | L: lm-sensors@lm-sensors.org |
| 6268 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6269 | F: Documentation/hwmon/vt1211 |
| 6270 | F: drivers/hwmon/vt1211.c |
Juerg Haefliger | ab41319 | 2006-09-24 20:54:04 +0200 | [diff] [blame] | 6271 | |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 6272 | VT8231 HARDWARE MONITOR DRIVER |
| 6273 | P: Roger Lucas |
Roger Lucas | af86576 | 2008-02-13 07:52:06 -0500 | [diff] [blame] | 6274 | M: vt8231@hiddenengine.co.uk |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 6275 | L: lm-sensors@lm-sensors.org |
| 6276 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6277 | F: drivers/hwmon/vt8231.c |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 6278 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6279 | W1 DALLAS'S 1-WIRE BUS |
| 6280 | P: Evgeniy Polyakov |
| 6281 | M: johnpol@2ka.mipt.ru |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6282 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6283 | F: Documentation/w1/ |
| 6284 | F: drivers/w1/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6285 | |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 6286 | W83791D HARDWARE MONITORING DRIVER |
Marc Hulsman | 25845c2 | 2008-06-08 10:59:41 -0400 | [diff] [blame] | 6287 | P: Marc Hulsman |
| 6288 | M: m.hulsman@tudelft.nl |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 6289 | L: lm-sensors@lm-sensors.org |
Marc Hulsman | 25845c2 | 2008-06-08 10:59:41 -0400 | [diff] [blame] | 6290 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6291 | F: Documentation/hwmon/w83791d |
| 6292 | F: drivers/hwmon/w83791d.c |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 6293 | |
Rudolf Marek | 61db011 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 6294 | W83793 HARDWARE MONITORING DRIVER |
| 6295 | P: Rudolf Marek |
| 6296 | M: r.marek@assembler.cz |
| 6297 | L: lm-sensors@lm-sensors.org |
| 6298 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6299 | F: Documentation/hwmon/w83793 |
| 6300 | F: drivers/hwmon/w83793.c |
Rudolf Marek | 61db011 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 6301 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6302 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
| 6303 | P: Pierre Ossman |
Pierre Ossman | 32710e8 | 2009-04-08 20:14:54 +0200 | [diff] [blame] | 6304 | M: pierre@ossman.eu |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6305 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6306 | F: drivers/mmc/host/wbsd.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6307 | |
Wim Van Sebroeck | 3527761 | 2006-01-15 21:21:14 +0100 | [diff] [blame] | 6308 | WATCHDOG DEVICE DRIVERS |
| 6309 | P: Wim Van Sebroeck |
| 6310 | M: wim@iguana.be |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6311 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git |
Wim Van Sebroeck | 3527761 | 2006-01-15 21:21:14 +0100 | [diff] [blame] | 6312 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6313 | F: Documentation/watchdog/ |
| 6314 | F: drivers/watchdog/ |
| 6315 | F: include/linux/watchdog.h |
Wim Van Sebroeck | 3527761 | 2006-01-15 21:21:14 +0100 | [diff] [blame] | 6316 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6317 | WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS |
| 6318 | P: Jean Tourrilhes |
| 6319 | M: jt@hpl.hp.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 6320 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6321 | W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/ |
| 6322 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6323 | F: Documentation/networking/wavelan.txt |
| 6324 | F: drivers/net/wireless/wavelan* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6325 | |
| 6326 | WD7000 SCSI DRIVER |
| 6327 | P: Miroslav Zagorac |
| 6328 | M: zaga@fly.cc.fer.hr |
| 6329 | L: linux-scsi@vger.kernel.org |
| 6330 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6331 | F: drivers/scsi/wd7000.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6332 | |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 6333 | WIMAX STACK |
| 6334 | P: Inaky Perez-Gonzalez |
| 6335 | M: inaky.perez-gonzalez@intel.com |
| 6336 | M: linux-wimax@intel.com |
| 6337 | L: wimax@linuxwimax.org |
| 6338 | S: Supported |
| 6339 | W: http://linuxwimax.org |
| 6340 | |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 6341 | WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM |
| 6342 | P: David Vrabel |
| 6343 | M: david.vrabel@csr.com |
| 6344 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6345 | F: include/linux/wlp.h |
| 6346 | F: drivers/uwb/wlp/ |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 6347 | |
Dmitry Torokhov | 5fc14680 | 2005-11-20 00:50:06 -0500 | [diff] [blame] | 6348 | WISTRON LAPTOP BUTTON DRIVER |
| 6349 | P: Miloslav Trmac |
| 6350 | M: mitr@volny.cz |
| 6351 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6352 | F: drivers/input/misc/wistron_btns.c |
Dmitry Torokhov | 5fc14680 | 2005-11-20 00:50:06 -0500 | [diff] [blame] | 6353 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6354 | WL3501 WIRELESS PCMCIA CARD DRIVER |
| 6355 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 6356 | M: acme@ghostprotocols.net |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 6357 | L: linux-wireless@vger.kernel.org |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 6358 | W: http://oops.ghostprotocols.net:81/blog |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6359 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6360 | F: drivers/net/wireless/wl3501* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6361 | |
Mark Brown | febf1df | 2008-04-02 00:51:09 -0400 | [diff] [blame] | 6362 | WM97XX TOUCHSCREEN DRIVERS |
| 6363 | P: Mark Brown |
| 6364 | M: broonie@opensource.wolfsonmicro.com |
| 6365 | P: Liam Girdwood |
Liam Girdwood | b8d055a | 2008-10-13 23:00:15 -0400 | [diff] [blame] | 6366 | M: lrg@slimlogic.co.uk |
Mark Brown | febf1df | 2008-04-02 00:51:09 -0400 | [diff] [blame] | 6367 | L: linux-input@vger.kernel.org |
| 6368 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch |
| 6369 | W: http://opensource.wolfsonmicro.com/node/7 |
| 6370 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6371 | F: drivers/input/touchscreen/*wm97* |
| 6372 | F: include/linux/wm97xx.h |
Mark Brown | febf1df | 2008-04-02 00:51:09 -0400 | [diff] [blame] | 6373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6374 | X.25 NETWORK LAYER |
| 6375 | P: Henner Eisen |
| 6376 | M: eis@baty.hanse.de |
| 6377 | L: linux-x25@vger.kernel.org |
| 6378 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6379 | F: Documentation/networking/x25* |
| 6380 | F: include/net/x25* |
| 6381 | F: net/x25/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6382 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6383 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
| 6384 | P: Thomas Gleixner |
| 6385 | M: tglx@linutronix.de |
| 6386 | P: Ingo Molnar |
| 6387 | M: mingo@redhat.com |
| 6388 | P: H. Peter Anvin |
| 6389 | M: hpa@zytor.com |
H. Peter Anvin | bcde563 | 2009-02-02 21:42:40 -0800 | [diff] [blame] | 6390 | M: x86@kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6391 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6392 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6393 | F: Documentation/x86/ |
| 6394 | F: arch/x86/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6395 | |
Jeremy Fitzhardinge | 4cdf6bc | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 6396 | XEN HYPERVISOR INTERFACE |
| 6397 | P: Jeremy Fitzhardinge |
| 6398 | M: jeremy@xensource.com |
| 6399 | P: Chris Wright |
| 6400 | M: chrisw@sous-sol.org |
| 6401 | L: virtualization@lists.osdl.org |
| 6402 | L: xen-devel@lists.xensource.com |
| 6403 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6404 | F: arch/x86/xen/ |
| 6405 | F: drivers/*/xen-*front.c |
| 6406 | F: drivers/xen/ |
| 6407 | F: arch/x86/include/asm/xen/ |
| 6408 | F: include/xen/ |
Jeremy Fitzhardinge | 4cdf6bc | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 6409 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6410 | XFS FILESYSTEM |
| 6411 | P: Silicon Graphics Inc |
Felix Blyakher | b58a4cc | 2009-02-03 15:37:18 -0600 | [diff] [blame] | 6412 | P: Felix Blyakher |
| 6413 | M: felixb@sgi.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6414 | M: xfs-masters@oss.sgi.com |
Nathan Scott | d7ede1a | 2006-06-13 16:28:11 +1000 | [diff] [blame] | 6415 | L: xfs@oss.sgi.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6416 | W: http://oss.sgi.com/projects/xfs |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6417 | T: git git://oss.sgi.com/xfs/xfs.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6418 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6419 | F: Documentation/filesystems/xfs.txt |
| 6420 | F: fs/xfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6421 | |
Grant Likely | c9d3d8e | 2007-10-01 16:33:51 +0200 | [diff] [blame] | 6422 | XILINX SYSTEMACE DRIVER |
| 6423 | P: Grant Likely |
| 6424 | M: grant.likely@secretlab.ca |
| 6425 | W: http://www.secretlab.ca/ |
Grant Likely | c9d3d8e | 2007-10-01 16:33:51 +0200 | [diff] [blame] | 6426 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6427 | F: drivers/block/xsysace.c |
Grant Likely | c9d3d8e | 2007-10-01 16:33:51 +0200 | [diff] [blame] | 6428 | |
Peter Korsgaard | 238b872 | 2006-12-06 20:35:17 -0800 | [diff] [blame] | 6429 | XILINX UARTLITE SERIAL DRIVER |
| 6430 | P: Peter Korsgaard |
| 6431 | M: jacmet@sunsite.dk |
| 6432 | L: linux-serial@vger.kernel.org |
| 6433 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6434 | F: drivers/serial/uartlite.c |
Peter Korsgaard | 238b872 | 2006-12-06 20:35:17 -0800 | [diff] [blame] | 6435 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6436 | YAM DRIVER FOR AX.25 |
| 6437 | P: Jean-Paul Roubelat |
| 6438 | M: jpr@f6fbb.org |
| 6439 | L: linux-hams@vger.kernel.org |
| 6440 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6441 | F: drivers/net/hamradio/yam* |
| 6442 | F: include/linux/yam.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6443 | |
Henk | af64a5e | 2005-10-12 15:02:56 +0200 | [diff] [blame] | 6444 | YEALINK PHONE DRIVER |
| 6445 | P: Henk Vergonet |
| 6446 | M: Henk.Vergonet@gmail.com |
| 6447 | L: usbb2k-api-dev@nongnu.org |
| 6448 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6449 | F: Documentation/input/yealink.txt |
| 6450 | F: drivers/input/misc/yealink.* |
Henk | af64a5e | 2005-10-12 15:02:56 +0200 | [diff] [blame] | 6451 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6452 | Z8530 DRIVER FOR AX.25 |
| 6453 | P: Joerg Reuter |
| 6454 | M: jreuter@yaina.de |
| 6455 | W: http://yaina.de/jreuter/ |
| 6456 | W: http://www.qsl.net/dl1bke/ |
| 6457 | L: linux-hams@vger.kernel.org |
| 6458 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6459 | F: Documentation/networking/z8530drv.txt |
| 6460 | F: drivers/net/hamradio/*scc.c |
| 6461 | F: drivers/net/hamradio/z8530.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6462 | |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 6463 | ZD1211RW WIRELESS DRIVER |
| 6464 | P: Daniel Drake |
| 6465 | M: dsd@gentoo.org |
| 6466 | P: Ulrich Kunitz |
| 6467 | M: kune@deine-taler.de |
| 6468 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 6469 | L: linux-wireless@vger.kernel.org |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 6470 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
| 6471 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6472 | F: drivers/net/wireless/zd1211rw/ |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 6473 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6474 | ZR36067 VIDEO FOR LINUX DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6475 | L: mjpeg-users@lists.sourceforge.net |
Trent Piepho | f63145e | 2009-01-24 20:52:41 -0300 | [diff] [blame] | 6476 | L: linux-media@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6477 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
Trent Piepho | f63145e | 2009-01-24 20:52:41 -0300 | [diff] [blame] | 6478 | T: Mercurial http://linuxtv.org/hg/v4l-dvb |
| 6479 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6480 | F: drivers/media/video/zoran/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6481 | |
Maciej W. Rozycki | 8b4a408 | 2007-07-18 00:49:11 -0700 | [diff] [blame] | 6482 | ZS DECSTATION Z85C30 SERIAL DRIVER |
| 6483 | P: Maciej W. Rozycki |
| 6484 | M: macro@linux-mips.org |
| 6485 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6486 | F: drivers/serial/zs.* |
Maciej W. Rozycki | 8b4a408 | 2007-07-18 00:49:11 -0700 | [diff] [blame] | 6487 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6488 | THE REST |
| 6489 | P: Linus Torvalds |
Joe Perches | 34d03cc | 2009-06-16 15:34:06 -0700 | [diff] [blame] | 6490 | M: torvalds@linux-foundation.org |
| 6491 | L: linux-kernel@vger.kernel.org |
Joe Perches | cfe81f7 | 2009-04-07 21:09:58 -0700 | [diff] [blame] | 6492 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6493 | S: Buried alive in reporters |
Joe Perches | 34d03cc | 2009-06-16 15:34:06 -0700 | [diff] [blame] | 6494 | F: * |
| 6495 | F: */ |