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 | |
| 39 | PLEASE try to include any credit lines you want added with the |
| 40 | patch. It avoids people being missed off by mistake and makes |
| 41 | it easier to know who wants adding and who doesn't. |
| 42 | |
| 43 | PLEASE document known bugs. If it doesn't work for everything |
| 44 | or does something very odd once a month document it. |
| 45 | |
Alan Cox | c9ee133 | 2006-05-20 15:00:12 -0700 | [diff] [blame] | 46 | PLEASE remember that submissions must be made under the terms |
Randy Dunlap | 4500371 | 2007-08-30 23:56:37 -0700 | [diff] [blame] | 47 | of the OSDL certificate of contribution and should include a |
| 48 | Signed-off-by: line. The current version of this "Developer's |
| 49 | Certificate of Origin" (DCO) is listed in the file |
| 50 | Documentation/SubmittingPatches. |
Alan Cox | c9ee133 | 2006-05-20 15:00:12 -0700 | [diff] [blame] | 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | 6. Make sure you have the right to send any changes you make. If you |
| 53 | do changes at work you may find your employer owns the patch |
| 54 | not you. |
| 55 | |
Alan Cox | c9ee133 | 2006-05-20 15:00:12 -0700 | [diff] [blame] | 56 | 7. When sending security related changes or reports to a maintainer |
| 57 | please Cc: security@kernel.org, especially if the maintainer |
| 58 | does not respond. |
| 59 | |
| 60 | 8. Happy hacking. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 62 | ----------------------------------- |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
| 64 | Maintainers List (try to look for most precise areas first) |
| 65 | |
| 66 | Note: For the hard of thinking, this list is meant to remain in alphabetical |
| 67 | order. If you could add yourselves to it in alphabetical order that would be |
| 68 | so much easier [Ed] |
| 69 | |
| 70 | P: Person |
| 71 | M: Mail patches to |
| 72 | L: Mailing list that is relevant to this area |
| 73 | W: Web-page with status/info |
Alan Cox | e960bf7 | 2009-06-11 14:04:57 +0100 | [diff] [blame] | 74 | 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] | 75 | S: Status, one of the following: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
| 77 | Supported: Someone is actually paid to look after this. |
| 78 | Maintained: Someone actually looks after it. |
| 79 | Odd Fixes: It has a maintainer but they don't have time to do |
| 80 | much other than throw the odd patch in. See below.. |
| 81 | Orphan: No current maintainer [but maybe you could take the |
| 82 | role as you write your new code]. |
| 83 | Obsolete: Old code. Something tagged obsolete generally means |
| 84 | it has been replaced by a better system and you |
| 85 | should be using that. |
| 86 | |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 87 | F: Files and directories with wildcard patterns. |
| 88 | A trailing slash includes all files and subdirectory files. |
| 89 | F: drivers/net/ all files in and below drivers/net |
| 90 | F: drivers/net/* all files in drivers/net, but not below |
| 91 | F: */net/* all files in "any top level directory"/net |
| 92 | One pattern per line. Multiple F: lines acceptable. |
| 93 | X: Files and directories that are NOT maintained, same rules as F: |
| 94 | Files exclusions are tested before file matches. |
| 95 | Can be useful for excluding a specific subdirectory, for instance: |
| 96 | F: net/ |
| 97 | X: net/ipv6/ |
| 98 | matches all files in and below net excluding net/ipv6/ |
| 99 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | 3C505 NETWORK DRIVER |
| 101 | P: Philip Blundell |
| 102 | M: philb@gnu.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 103 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 105 | F: drivers/net/3c505* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
Steffen Klassert | a6d8991 | 2007-08-10 14:05:27 -0700 | [diff] [blame] | 107 | 3C59X NETWORK DRIVER |
| 108 | P: Steffen Klassert |
| 109 | M: klassert@mathematik.tu-chemnitz.de |
| 110 | L: netdev@vger.kernel.org |
| 111 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 112 | F: Documentation/networking/vortex.txt |
| 113 | F: drivers/net/3c59x.c |
Steffen Klassert | a6d8991 | 2007-08-10 14:05:27 -0700 | [diff] [blame] | 114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | 3CR990 NETWORK DRIVER |
| 116 | P: David Dillow |
| 117 | M: dave@thedillows.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 118 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 120 | F: drivers/net/typhoon* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 122 | 3W-9XXX SATA-RAID CONTROLLER DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | P: Adam Radford |
| 124 | M: linuxraid@amcc.com |
| 125 | L: linux-scsi@vger.kernel.org |
| 126 | W: http://www.amcc.com |
| 127 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 128 | F: drivers/scsi/3w-9xxx* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 130 | 3W-XXXX ATA-RAID CONTROLLER DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | P: Adam Radford |
| 132 | M: linuxraid@amcc.com |
| 133 | L: linux-scsi@vger.kernel.org |
| 134 | W: http://www.amcc.com |
| 135 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 136 | F: drivers/scsi/3w-xxxx* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
| 138 | 53C700 AND 53C700-66 SCSI DRIVER |
| 139 | P: James E.J. Bottomley |
| 140 | M: James.Bottomley@HansenPartnership.com |
| 141 | L: linux-scsi@vger.kernel.org |
| 142 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 143 | F: drivers/scsi/53c700* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
| 145 | 6PACK NETWORK DRIVER FOR AX.25 |
| 146 | P: Andreas Koensgen |
| 147 | M: ajk@iehk.rwth-aachen.de |
| 148 | L: linux-hams@vger.kernel.org |
| 149 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 150 | F: drivers/net/hamradio/6pack.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
| 153 | P: Francois Romieu |
| 154 | M: romieu@fr.zoreil.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 155 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 157 | F: drivers/net/r8169.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | |
| 159 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | L: linux-serial@vger.kernel.org |
| 161 | W: http://serial.sourceforge.net |
Alan Cox | 4b6ae89 | 2009-06-11 12:45:08 +0100 | [diff] [blame] | 162 | M: alan@lxorguk.ukuu.org.uk |
| 163 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 164 | F: drivers/serial/8250* |
| 165 | F: include/linux/serial_8250.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | |
| 167 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] |
| 168 | P: Paul Gortmaker |
| 169 | M: p_gortmaker@yahoo.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 170 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 172 | F: drivers/net/*8390* |
| 173 | F: drivers/net/ax88796.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
Eric Van Hensbergen | 67543e5 | 2006-03-25 03:07:29 -0800 | [diff] [blame] | 175 | 9P FILE SYSTEM |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 176 | P: Eric Van Hensbergen |
| 177 | M: ericvh@gmail.com |
| 178 | P: Ron Minnich |
Eric Van Hensbergen | 27a2a5f | 2007-07-23 13:06:13 -0500 | [diff] [blame] | 179 | M: rminnich@sandia.gov |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 180 | P: Latchesar Ionkov |
| 181 | M: lucho@ionkov.net |
| 182 | L: v9fs-developer@lists.sourceforge.net |
Eric Van Hensbergen | 27a2a5f | 2007-07-23 13:06:13 -0500 | [diff] [blame] | 183 | W: http://swik.net/v9fs |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 184 | 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] | 185 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 186 | F: Documentation/filesystems/9p.txt |
| 187 | F: fs/9p/ |
Eric Van Hensbergen | 67543e5 | 2006-03-25 03:07:29 -0800 | [diff] [blame] | 188 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | A2232 SERIAL BOARD DRIVER |
| 190 | P: Enver Haase |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | M: A2232@gmx.net |
| 192 | L: linux-m68k@lists.linux-m68k.org |
| 193 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 194 | F: drivers/char/ser_a2232* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 196 | AACRAID SCSI RAID DRIVER |
| 197 | P: Adaptec OEM Raid Solutions |
| 198 | M: aacraid@adaptec.com |
| 199 | L: linux-scsi@vger.kernel.org |
| 200 | W: http://www.adaptec.com/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 202 | F: Documentation/scsi/aacraid.txt |
| 203 | F: drivers/scsi/aacraid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 205 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
Hans de Goede | f2b84bb | 2006-06-04 20:22:24 +0200 | [diff] [blame] | 206 | P: Hans de Goede |
| 207 | M: j.w.r.degoede@hhs.nl |
| 208 | L: lm-sensors@lm-sensors.org |
| 209 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 210 | F: drivers/hwmon/abituguru.c |
Hans de Goede | f2b84bb | 2006-06-04 20:22:24 +0200 | [diff] [blame] | 211 | |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 212 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
| 213 | P: Alistair John Strachan |
| 214 | M: alistair@devzero.co.uk |
| 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/abituguru3.c |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 218 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | ACENIC DRIVER |
| 220 | P: Jes Sorensen |
| 221 | M: jes@trained-monkey.org |
| 222 | L: linux-acenic@sunsite.dk |
| 223 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 224 | F: drivers/net/acenic* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 226 | ACER WMI LAPTOP EXTRAS |
| 227 | P: Carlos Corbacho |
| 228 | M: carlos@strangeworlds.co.uk |
| 229 | L: aceracpi@googlegroups.com (subscribers-only) |
| 230 | W: http://code.google.com/p/aceracpi |
| 231 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 232 | F: drivers/platform/x86/acer-wmi.c |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 233 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | ACPI |
Andi Kleen | 54cd314 | 2008-09-04 13:30:07 +0200 | [diff] [blame] | 235 | P: Len Brown |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 236 | M: lenb@kernel.org |
Len Brown | 6968e50 | 2005-12-30 00:32:49 -0500 | [diff] [blame] | 237 | L: linux-acpi@vger.kernel.org |
Len Brown | 38e09d8 | 2007-10-25 17:55:59 -0400 | [diff] [blame] | 238 | W: http://www.lesswatts.org/projects/acpi/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 239 | 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] | 240 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 241 | F: drivers/acpi/ |
| 242 | F: drivers/pnp/pnpacpi/ |
| 243 | F: include/linux/acpi.h |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 244 | |
| 245 | ACPI BATTERY DRIVERS |
Len Brown | a414655 | 2007-06-23 15:54:36 -0400 | [diff] [blame] | 246 | P: Alexey Starikovskiy |
| 247 | M: astarikovskiy@suse.de |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 248 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 249 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 250 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 251 | F: drivers/acpi/battery.c |
| 252 | F: drivers/acpi/*sbs* |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 253 | |
| 254 | ACPI EC DRIVER |
| 255 | P: Alexey Starikovskiy |
Len Brown | a414655 | 2007-06-23 15:54:36 -0400 | [diff] [blame] | 256 | M: astarikovskiy@suse.de |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 257 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 258 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 259 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 260 | F: drivers/acpi/ec.c |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 261 | |
| 262 | ACPI FAN DRIVER |
Len Brown | 65573ee | 2008-06-27 11:22:46 -0400 | [diff] [blame] | 263 | P: Zhang Rui |
| 264 | M: rui.zhang@intel.com |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 265 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 266 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 267 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 268 | F: drivers/acpi/fan.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | |
Kristen Carlson Accardi | 998be20 | 2006-07-26 10:52:33 -0700 | [diff] [blame] | 270 | ACPI PCI HOTPLUG DRIVER |
| 271 | P: Kristen Carlson Accardi |
| 272 | M: kristen.c.accardi@intel.com |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 273 | L: linux-pci@vger.kernel.org |
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/pci/hotplug/acpi* |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 276 | |
| 277 | ACPI THERMAL DRIVER |
Len Brown | 65573ee | 2008-06-27 11:22:46 -0400 | [diff] [blame] | 278 | P: Zhang Rui |
| 279 | M: rui.zhang@intel.com |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 280 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 281 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 282 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 283 | F: drivers/acpi/*thermal* |
Kristen Carlson Accardi | 998be20 | 2006-07-26 10:52:33 -0700 | [diff] [blame] | 284 | |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 285 | ACPI VIDEO DRIVER |
Len Brown | 65573ee | 2008-06-27 11:22:46 -0400 | [diff] [blame] | 286 | P: Zhang Rui |
Len Brown | 38e09d8 | 2007-10-25 17:55:59 -0400 | [diff] [blame] | 287 | M: rui.zhang@intel.com |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 288 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 289 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 290 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 291 | F: drivers/acpi/video.c |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 292 | |
Carlos Corbacho | bff431e | 2008-02-05 02:17:04 +0000 | [diff] [blame] | 293 | ACPI WMI DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 294 | P: Carlos Corbacho |
| 295 | M: carlos@strangeworlds.co.uk |
| 296 | L: linux-acpi@vger.kernel.org |
| 297 | W: http://www.lesswatts.org/projects/acpi/ |
| 298 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 299 | F: drivers/platform/x86/wmi.c |
Carlos Corbacho | bff431e | 2008-02-05 02:17:04 +0000 | [diff] [blame] | 300 | |
Thibaut VARENE | 2f39d51 | 2008-02-20 21:05:56 +0100 | [diff] [blame] | 301 | AD1889 ALSA SOUND DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 302 | P: Kyle McMartin |
| 303 | M: kyle@mcmartin.ca |
| 304 | P: Thibaut Varene |
| 305 | M: T-Bone@parisc-linux.org |
| 306 | W: http://wiki.parisc-linux.org/AD1889 |
| 307 | L: linux-parisc@vger.kernel.org |
| 308 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 309 | F: sound/pci/ad1889.* |
Thibaut VARENE | 2f39d51 | 2008-02-20 21:05:56 +0100 | [diff] [blame] | 310 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | ADM1025 HARDWARE MONITOR DRIVER |
| 312 | P: Jean Delvare |
| 313 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 314 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 316 | F: Documentation/hwmon/adm1025 |
| 317 | F: drivers/hwmon/adm1025.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | |
Corentin Labbe | cae2caa | 2007-02-14 21:15:04 +0100 | [diff] [blame] | 319 | ADM1029 HARDWARE MONITOR DRIVER |
| 320 | P: Corentin Labbe |
| 321 | M: corentin.labbe@geomatys.fr |
| 322 | L: lm-sensors@lm-sensors.org |
| 323 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 324 | F: drivers/hwmon/adm1029.c |
Corentin Labbe | cae2caa | 2007-02-14 21:15:04 +0100 | [diff] [blame] | 325 | |
Michael Wu | cc0b88c | 2007-08-31 01:15:25 -0400 | [diff] [blame] | 326 | ADM8211 WIRELESS DRIVER |
| 327 | P: Michael Wu |
| 328 | M: flamingice@sourmilk.net |
| 329 | L: linux-wireless@vger.kernel.org |
| 330 | W: http://linuxwireless.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 331 | 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] | 332 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 333 | F: drivers/net/wireless/adm8211.* |
Michael Wu | cc0b88c | 2007-08-31 01:15:25 -0400 | [diff] [blame] | 334 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | ADT746X FAN DRIVER |
| 336 | P: Colin Leroy |
| 337 | M: colin@colino.net |
| 338 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 339 | F: drivers/macintosh/therm_adt746x.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | |
Matthew Wilcox | 8c6af9e | 2007-07-26 11:03:19 -0400 | [diff] [blame] | 341 | ADVANSYS SCSI DRIVER |
| 342 | P: Matthew Wilcox |
| 343 | M: matthew@wil.cx |
| 344 | L: linux-scsi@vger.kernel.org |
| 345 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 346 | F: Documentation/scsi/advansys.txt |
| 347 | F: drivers/scsi/advansys.c |
Matthew Wilcox | 8c6af9e | 2007-07-26 11:03:19 -0400 | [diff] [blame] | 348 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | AEDSP16 DRIVER |
| 350 | P: Riccardo Facchetti |
| 351 | M: fizban@tin.it |
| 352 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 353 | F: sound/oss/aedsp16.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | |
| 355 | AFFS FILE SYSTEM |
| 356 | P: Roman Zippel |
| 357 | M: zippel@linux-m68k.org |
| 358 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 359 | F: Documentation/filesystems/affs.txt |
| 360 | F: fs/affs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 362 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
| 363 | P: David Howells |
| 364 | M: dhowells@redhat.com |
| 365 | L: linux-afs@lists.infradead.org |
| 366 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 367 | F: fs/afs/ |
| 368 | F: include/net/af_rxrpc.h |
| 369 | F: net/rxrpc/af_rxrpc.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 370 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | AGPGART DRIVER |
Dave Jones | 70e8992 | 2007-07-09 20:23:50 -0400 | [diff] [blame] | 372 | P: David Airlie |
| 373 | M: airlied@linux.ie |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 374 | 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] | 375 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 376 | F: drivers/char/agp/ |
| 377 | F: include/linux/agp* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | |
| 379 | AHA152X SCSI DRIVER |
| 380 | P: Juergen E. Fischer |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 381 | M: fischer@norbit.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | L: linux-scsi@vger.kernel.org |
| 383 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 384 | F: drivers/scsi/aha152x* |
| 385 | F: drivers/scsi/pcmcia/aha152x* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | |
Hannes Reinecke | 64624d4 | 2007-10-19 10:32:29 +0200 | [diff] [blame] | 387 | AIC7XXX / AIC79XX SCSI DRIVER |
| 388 | P: Hannes Reinecke |
| 389 | M: hare@suse.de |
| 390 | L: linux-scsi@vger.kernel.org |
| 391 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 392 | F: drivers/scsi/aic7xxx/ |
| 393 | F: drivers/scsi/aic7xxx_old/ |
Hannes Reinecke | 64624d4 | 2007-10-19 10:32:29 +0200 | [diff] [blame] | 394 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 395 | AIO |
| 396 | P: Benjamin LaHaise |
| 397 | M: bcrl@kvack.org |
| 398 | L: linux-aio@kvack.org |
| 399 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 400 | F: fs/aio.c |
| 401 | F: include/linux/*aio*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 402 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | ALCATEL SPEEDTOUCH USB DRIVER |
| 404 | P: Duncan Sands |
| 405 | M: duncan.sands@free.fr |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 406 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | W: http://www.linux-usb.org/SpeedTouch/ |
| 408 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 409 | F: drivers/usb/atm/speedtch.c |
| 410 | F: drivers/usb/atm/usbatm.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 412 | ALCHEMY AU1XX0 MMC DRIVER |
Manuel Lauss | 08fcb72 | 2008-06-09 08:40:35 +0200 | [diff] [blame] | 413 | P: Manuel Lauss |
| 414 | M: manuel.lauss@gmail.com |
| 415 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 416 | F: drivers/mmc/host/au1xmmc.c |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 417 | |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 418 | ALI1563 I2C DRIVER |
| 419 | P: Rudolf Marek |
Jean Delvare | 7188cc6 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 420 | M: r.marek@assembler.cz |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 421 | L: linux-i2c@vger.kernel.org |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 422 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 423 | F: Documentation/i2c/busses/i2c-ali1563 |
| 424 | F: drivers/i2c/busses/i2c-ali1563.c |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 425 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | ALPHA PORT |
| 427 | P: Richard Henderson |
| 428 | M: rth@twiddle.net |
| 429 | S: Odd Fixes for 2.4; Maintained for 2.6. |
| 430 | P: Ivan Kokshaysky |
| 431 | M: ink@jurassic.park.msu.ru |
| 432 | S: Maintained for 2.4; PCI support for 2.6. |
Cheng Renquan | a940669 | 2009-03-31 15:23:35 -0700 | [diff] [blame] | 433 | L: linux-alpha@vger.kernel.org |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 434 | F: arch/alpha/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 436 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
| 437 | P: Thomas Dahlmann |
Thomas Dahlmann | ba94471 | 2009-05-28 14:34:30 -0700 | [diff] [blame] | 438 | M: dahlmann.thomas@arcor.de |
Jordan Crouse | 67d7671 | 2008-05-12 14:02:22 -0700 | [diff] [blame] | 439 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 440 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 441 | F: drivers/usb/gadget/amd5536udc.* |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 442 | |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 443 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 444 | P: Jordan Crouse |
Jordan Crouse | 67d7671 | 2008-05-12 14:02:22 -0700 | [diff] [blame] | 445 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 446 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
| 447 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 448 | F: arch/x86/kernel/geode_32.c |
| 449 | F: drivers/char/hw_random/geode-rng.c |
| 450 | F: drivers/crypto/geode* |
| 451 | F: drivers/video/geode/ |
| 452 | F: arch/x86/include/asm/geode.h |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 453 | |
Joerg Roedel | 919ee7d | 2008-06-26 21:28:09 +0200 | [diff] [blame] | 454 | AMD IOMMU (AMD-VI) |
| 455 | P: Joerg Roedel |
| 456 | M: joerg.roedel@amd.com |
| 457 | L: iommu@lists.linux-foundation.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 458 | 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] | 459 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 460 | F: arch/x86/kernel/amd_iommu*.c |
| 461 | F: arch/x86/include/asm/amd_iommu*.h |
Joerg Roedel | 919ee7d | 2008-06-26 21:28:09 +0200 | [diff] [blame] | 462 | |
Peter Oruba | e7f5b30 | 2008-07-28 18:44:11 +0200 | [diff] [blame] | 463 | AMD MICROCODE UPDATE SUPPORT |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 464 | P: Andreas Herrmann |
Randy Dunlap | f403bb8 | 2009-04-13 14:39:36 -0700 | [diff] [blame] | 465 | M: andreas.herrmann3@amd.com |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 466 | L: amd64-microcode@amd64.org |
| 467 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 468 | F: arch/x86/kernel/microcode_amd.c |
Peter Oruba | e7f5b30 | 2008-07-28 18:44:11 +0200 | [diff] [blame] | 469 | |
Stelian Pop | 284f42b | 2006-12-12 18:18:31 +0100 | [diff] [blame] | 470 | AMS (Apple Motion Sensor) DRIVER |
| 471 | P: Stelian Pop |
| 472 | M: stelian@popies.net |
| 473 | P: Michael Hanselmann |
| 474 | M: linux-kernel@hansmi.ch |
| 475 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 476 | F: drivers/hwmon/ams/ |
Stelian Pop | 284f42b | 2006-12-12 18:18:31 +0100 | [diff] [blame] | 477 | |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 478 | AMSO1100 RNIC DRIVER |
| 479 | P: Tom Tucker |
| 480 | M: tom@opengridcomputing.com |
| 481 | P: Steve Wise |
| 482 | M: swise@opengridcomputing.com |
Roland Dreier | 7852682 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 483 | L: general@lists.openfabrics.org |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 484 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 485 | F: drivers/infiniband/hw/amso1100/ |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 486 | |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 487 | AOA (Apple Onboard Audio) ALSA DRIVER |
| 488 | P: Johannes Berg |
| 489 | M: johannes@sipsolutions.net |
| 490 | L: linuxppc-dev@ozlabs.org |
Takashi Iwai | 8262204 | 2007-04-16 12:32:52 +0200 | [diff] [blame] | 491 | L: alsa-devel@alsa-project.org (subscribers-only) |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 492 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 493 | F: sound/aoa/ |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 494 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | APM DRIVER |
| 496 | P: Stephen Rothwell |
| 497 | M: sfr@canb.auug.org.au |
| 498 | L: linux-laptop@vger.kernel.org |
| 499 | W: http://www.canb.auug.org.au/~sfr/ |
| 500 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 501 | F: arch/x86/kernel/apm_32.c |
| 502 | F: include/linux/apm_bios.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | |
Henrik Rydberg | bd7aa4b | 2008-09-02 14:35:43 -0700 | [diff] [blame] | 504 | APPLE BCM5974 MULTITOUCH DRIVER |
| 505 | P: Henrik Rydberg |
| 506 | M: rydberg@euromail.se |
| 507 | L: linux-input@vger.kernel.org |
| 508 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 509 | F: drivers/input/mouse/bcm5974.c |
Henrik Rydberg | bd7aa4b | 2008-09-02 14:35:43 -0700 | [diff] [blame] | 510 | |
Nicolas Boichat | 6f2fad7 | 2007-05-08 00:24:52 -0700 | [diff] [blame] | 511 | APPLE SMC DRIVER |
| 512 | P: Nicolas Boichat |
| 513 | M: nicolas@boichat.ch |
| 514 | L: mactel-linux-devel@lists.sourceforge.net |
| 515 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 516 | F: drivers/hwmon/applesmc.c |
Nicolas Boichat | 6f2fad7 | 2007-05-08 00:24:52 -0700 | [diff] [blame] | 517 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | APPLETALK NETWORK LAYER |
| 519 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 520 | M: acme@ghostprotocols.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 522 | F: drivers/net/appletalk/ |
| 523 | F: net/appletalk/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | |
Johannes Berg | eb9ebe6 | 2007-10-27 23:42:45 -0400 | [diff] [blame] | 525 | APPLETOUCH TOUCHPAD DRIVER |
| 526 | P: Johannes Berg |
| 527 | M: johannes@sipsolutions.net |
Dmitry Torokhov | eb76c5c | 2007-11-02 09:07:33 -0400 | [diff] [blame] | 528 | L: linux-input@vger.kernel.org |
Johannes Berg | eb9ebe6 | 2007-10-27 23:42:45 -0400 | [diff] [blame] | 529 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 530 | F: Documentation/input/appletouch.txt |
| 531 | F: drivers/input/mouse/appletouch.c |
Johannes Berg | eb9ebe6 | 2007-10-27 23:42:45 -0400 | [diff] [blame] | 532 | |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 533 | ARC FRAMEBUFFER DRIVER |
| 534 | P: Jaya Kumar |
| 535 | M: jayalk@intworks.biz |
| 536 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 537 | F: drivers/video/arcfb.c |
| 538 | F: drivers/video/fb_defio.c |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 539 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | ARM MFM AND FLOPPY DRIVERS |
| 541 | P: Ian Molton |
| 542 | M: spyro@f2s.com |
| 543 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 544 | F: arch/arm/lib/floppydma.S |
| 545 | F: arch/arm/include/asm/floppy.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 547 | ARM PORT |
| 548 | P: Russell King |
| 549 | M: linux@arm.linux.org.uk |
| 550 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 551 | W: http://www.arm.linux.org.uk/ |
| 552 | S: Maintained |
| 553 | F: arch/arm/ |
| 554 | |
Russell King | 2761f5c | 2007-05-24 06:56:08 +0200 | [diff] [blame] | 555 | ARM PRIMECELL MMCI PL180/1 DRIVER |
Pierre Ossman | 6d79947 | 2008-07-22 14:36:57 +0200 | [diff] [blame] | 556 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 557 | F: drivers/mmc/host/mmci.* |
Russell King | 2761f5c | 2007-05-24 06:56:08 +0200 | [diff] [blame] | 558 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 559 | ARM/ADI ROADRUNNER MACHINE SUPPORT |
| 560 | P: Lennert Buytenhek |
| 561 | M: kernel@wantstofly.org |
| 562 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 563 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 564 | F: arch/arm/mach-ixp23xx/ |
| 565 | F: arch/arm/mach-ixp23xx/include/mach/ |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 566 | |
| 567 | ARM/ADS SPHERE MACHINE SUPPORT |
| 568 | P: Lennert Buytenhek |
| 569 | M: kernel@wantstofly.org |
| 570 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 571 | S: Maintained |
| 572 | |
Sergey Lapin | 9c784f9 | 2008-08-03 02:29:48 +0100 | [diff] [blame] | 573 | ARM/AFEB9260 MACHINE SUPPORT |
| 574 | P: Sergey Lapin |
| 575 | M: slapin@ossfans.org |
| 576 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 577 | S: Maintained |
| 578 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 579 | ARM/AJECO 1ARM MACHINE SUPPORT |
| 580 | P: Lennert Buytenhek |
| 581 | M: kernel@wantstofly.org |
| 582 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 583 | S: Maintained |
| 584 | |
Andrew Victor | d4a89c7 | 2006-12-04 13:56:21 +0100 | [diff] [blame] | 585 | ARM/ATMEL AT91RM9200 ARM ARCHITECTURE |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 586 | P: Andrew Victor |
| 587 | M: linux@maxim.org.za |
| 588 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 589 | W: http://maxim.org.za/at91_26.html |
| 590 | S: Maintained |
Andrew Victor | d4a89c7 | 2006-12-04 13:56:21 +0100 | [diff] [blame] | 591 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 592 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
| 593 | P: Lennert Buytenhek |
| 594 | M: kernel@wantstofly.org |
| 595 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 596 | S: Maintained |
| 597 | |
| 598 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT |
| 599 | P: Lennert Buytenhek |
| 600 | M: kernel@wantstofly.org |
| 601 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 602 | S: Maintained |
| 603 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 604 | ARM/CLKDEV SUPPORT |
| 605 | P: Russell King |
| 606 | M: linux@arm.linux.org.uk |
| 607 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 608 | F: arch/arm/common/clkdev.c |
| 609 | F: arch/arm/include/asm/clkdev.h |
| 610 | |
Mike Rapoport | d48134e | 2008-08-20 09:03:26 +0100 | [diff] [blame] | 611 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
Russell King | a9da4f7 | 2008-07-12 21:42:04 +0100 | [diff] [blame] | 612 | P: Mike Rapoport |
| 613 | M: mike@compulab.co.il |
| 614 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 615 | S: Maintained |
| 616 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | ARM/CORGI MACHINE SUPPORT |
| 618 | P: Richard Purdie |
| 619 | M: rpurdie@rpsys.net |
| 620 | S: Maintained |
| 621 | |
Paulius Zaleckas | 881a95f | 2009-03-26 10:06:27 +0200 | [diff] [blame] | 622 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
| 623 | P: Paulius Zaleckas |
| 624 | M: paulius.zaleckas@teltonika.lt |
| 625 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 626 | T: git git://gitorious.org/linux-gemini/mainline.git |
Paulius Zaleckas | 881a95f | 2009-03-26 10:06:27 +0200 | [diff] [blame] | 627 | S: Maintained |
Paulius Zaleckas | f49afbb | 2009-05-28 16:41:36 +0300 | [diff] [blame] | 628 | F: arch/arm/mach-gemini/ |
Paulius Zaleckas | 881a95f | 2009-03-26 10:06:27 +0200 | [diff] [blame] | 629 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 630 | ARM/EBSA110 MACHINE SUPPORT |
| 631 | P: Russell King |
| 632 | M: linux@arm.linux.org.uk |
| 633 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 634 | W: http://www.arm.linux.org.uk/ |
| 635 | S: Maintained |
| 636 | F: arch/arm/mach-ebsa110/ |
| 637 | F: drivers/net/arm/am79c961a.* |
| 638 | |
Russell King | a9da4f7 | 2008-07-12 21:42:04 +0100 | [diff] [blame] | 639 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
| 640 | P: Daniel Ribeiro |
| 641 | M: drwyrm@gmail.com |
| 642 | P: Stefan Schmidt |
| 643 | M: stefan@openezx.org |
| 644 | P: Harald Welte |
| 645 | M: laforge@openezx.org |
| 646 | L: openezx-devel@lists.openezx.org (subscribers-only) |
| 647 | W: http://www.openezx.org/ |
| 648 | S: Maintained |
| 649 | |
Paulius Zaleckas | 6a915af | 2009-03-25 13:10:20 +0200 | [diff] [blame] | 650 | ARM/FARADAY FA526 PORT |
| 651 | P: Paulius Zaleckas |
| 652 | M: paulius.zaleckas@teltonika.lt |
| 653 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 654 | S: Maintained |
Paulius Zaleckas | f49afbb | 2009-05-28 16:41:36 +0300 | [diff] [blame] | 655 | F: arch/arm/mm/*-fa* |
Paulius Zaleckas | 6a915af | 2009-03-25 13:10:20 +0200 | [diff] [blame] | 656 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 657 | ARM/FOOTBRIDGE ARCHITECTURE |
| 658 | P: Russell King |
| 659 | M: linux@arm.linux.org.uk |
| 660 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 661 | W: http://www.arm.linux.org.uk/ |
| 662 | S: Maintained |
| 663 | F: arch/arm/include/asm/hardware/dec21285.h |
| 664 | F: arch/arm/mach-footbridge/ |
| 665 | |
Sascha Hauer | 86183a5 | 2008-07-24 23:50:35 +0200 | [diff] [blame] | 666 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
| 667 | P: Sascha Hauer |
| 668 | M: kernel@pengutronix.de |
| 669 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 670 | S: Maintained |
| 671 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 672 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
| 673 | P: Lennert Buytenhek |
| 674 | M: kernel@wantstofly.org |
| 675 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 676 | S: Maintained |
| 677 | |
Jaya Kumar | 90b8fc3 | 2008-03-15 05:11:07 +0100 | [diff] [blame] | 678 | ARM/GUMSTIX MACHINE SUPPORT |
| 679 | P: Steve Sakoman |
| 680 | M: sakoman@gmail.com |
| 681 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 682 | S: Maintained |
| 683 | |
Philipp Zabel | ef47d5f | 2009-05-28 07:07:47 +0200 | [diff] [blame] | 684 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
| 685 | P: Philipp Zabel |
| 686 | M: philipp.zabel@gmail.com |
| 687 | S: Maintained |
| 688 | F: arch/arm/mach-pxa/hx4700.c |
| 689 | F: arch/arm/mach-pxa/include/mach/hx4700.h |
| 690 | |
Kristoffer Ericson | 21f37bc | 2006-11-21 01:20:31 +0100 | [diff] [blame] | 691 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 692 | P: Kristoffer Ericson |
| 693 | M: kristoffer.ericson@gmail.com |
| 694 | W: www.jlime.com |
| 695 | S: Maintained |
Kristoffer Ericson | 21f37bc | 2006-11-21 01:20:31 +0100 | [diff] [blame] | 696 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 697 | ARM/INTEL IOP32X ARM ARCHITECTURE |
| 698 | P: Lennert Buytenhek |
| 699 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 700 | P: Dan Williams |
| 701 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 702 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 703 | S: Supported |
| 704 | |
| 705 | ARM/INTEL IOP33X ARM ARCHITECTURE |
| 706 | P: Dan Williams |
| 707 | M: dan.j.williams@intel.com |
| 708 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 709 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 710 | |
| 711 | ARM/INTEL IOP13XX ARM ARCHITECTURE |
| 712 | P: Lennert Buytenhek |
| 713 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 714 | P: Dan Williams |
| 715 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 716 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 717 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 718 | |
| 719 | ARM/INTEL IQ81342EX MACHINE SUPPORT |
| 720 | P: Lennert Buytenhek |
| 721 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 722 | P: Dan Williams |
| 723 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 724 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 725 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 726 | |
| 727 | ARM/INTEL IXP2000 ARM ARCHITECTURE |
| 728 | P: Lennert Buytenhek |
| 729 | M: kernel@wantstofly.org |
| 730 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 731 | S: Maintained |
| 732 | |
| 733 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
| 734 | P: Lennert Buytenhek |
| 735 | M: kernel@wantstofly.org |
| 736 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 737 | S: Maintained |
| 738 | |
| 739 | ARM/INTEL IXP23XX ARM ARCHITECTURE |
| 740 | P: Lennert Buytenhek |
| 741 | M: kernel@wantstofly.org |
| 742 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 743 | S: Maintained |
| 744 | |
| 745 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
| 746 | P: Lennert Buytenhek |
| 747 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 748 | P: Dan Williams |
| 749 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 750 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 751 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 752 | |
| 753 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT |
| 754 | P: Lennert Buytenhek |
| 755 | M: kernel@wantstofly.org |
| 756 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 757 | S: Maintained |
| 758 | |
| 759 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
| 760 | P: Lennert Buytenhek |
| 761 | M: kernel@wantstofly.org |
| 762 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 763 | S: Maintained |
| 764 | |
Philipp Zabel | 3b886171 | 2008-07-09 21:27:15 +0100 | [diff] [blame] | 765 | ARM/MAGICIAN MACHINE SUPPORT |
| 766 | P: Philipp Zabel |
| 767 | M: philipp.zabel@gmail.com |
| 768 | S: Maintained |
| 769 | |
Kristoffer Ericson | 9624dfe | 2008-10-09 16:50:46 +0100 | [diff] [blame] | 770 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
| 771 | P: Michael Petchkovsky |
| 772 | M: mkpetch@internode.on.net |
| 773 | S: Maintained |
| 774 | |
Dirk Opfer | 8459c15 | 2005-11-06 14:27:52 +0000 | [diff] [blame] | 775 | ARM/TOSA MACHINE SUPPORT |
Dmitry Eremin-Solenikov | bfa0b1c | 2009-01-06 14:41:05 -0800 | [diff] [blame] | 776 | P: Dmitry Eremin-Solenikov |
Dmitry Baryshkov | 9388704 | 2008-07-07 10:50:06 +0100 | [diff] [blame] | 777 | M: dbaryshkov@gmail.com |
Dirk Opfer | 8459c15 | 2005-11-06 14:27:52 +0000 | [diff] [blame] | 778 | P: Dirk Opfer |
| 779 | M: dirk@opfer-online.de |
| 780 | S: Maintained |
| 781 | |
Marek Vasut | 54088bf | 2009-03-24 00:29:29 +0100 | [diff] [blame] | 782 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2 SUPPORT |
Marek Vašut | b5e4ad5 | 2008-07-07 17:25:46 +0100 | [diff] [blame] | 783 | P: Marek Vasut |
| 784 | M: marek.vasut@gmail.com |
| 785 | W: http://hackndev.com |
| 786 | S: Maintained |
| 787 | |
Sergey Lapin | c49e1e6 | 2008-08-29 15:47:52 +0100 | [diff] [blame] | 788 | ARM/PALMZ72 SUPPORT |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 789 | P: Sergey Lapin |
| 790 | M: slapin@ossfans.org |
| 791 | W: http://hackndev.com |
| 792 | S: Maintained |
Sergey Lapin | c49e1e6 | 2008-08-29 15:47:52 +0100 | [diff] [blame] | 793 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | ARM/PLEB SUPPORT |
| 795 | P: Peter Chubb |
| 796 | M: pleb@gelato.unsw.edu.au |
| 797 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
| 798 | S: Maintained |
| 799 | |
| 800 | ARM/PT DIGITAL BOARD PORT |
| 801 | P: Stefan Eletzhofer |
| 802 | M: stefan.eletzhofer@eletztrick.de |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 803 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | W: http://www.arm.linux.org.uk/ |
| 805 | S: Maintained |
| 806 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 807 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
| 808 | P: Lennert Buytenhek |
| 809 | M: kernel@wantstofly.org |
| 810 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 811 | S: Maintained |
| 812 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 813 | ARM/RISCPC ARCHITECTURE |
| 814 | P: Russell King |
| 815 | M: linux@arm.linux.org.uk |
| 816 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 817 | W: http://www.arm.linux.org.uk/ |
| 818 | S: Maintained |
| 819 | F: arch/arm/common/time-acorn.c |
| 820 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
| 821 | F: arch/arm/include/asm/hardware/ioc.h |
| 822 | F: arch/arm/include/asm/hardware/iomd.h |
| 823 | F: arch/arm/include/asm/hardware/memc.h |
| 824 | F: arch/arm/mach-rpc/ |
| 825 | F: drivers/net/arm/ether* |
| 826 | F: drivers/scsi/arm/ |
| 827 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | ARM/SHARK MACHINE SUPPORT |
| 829 | P: Alexander Schulz |
| 830 | M: alex@shark-linux.de |
| 831 | W: http://www.shark-linux.de/shark.html |
| 832 | S: Maintained |
| 833 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | ARM/S3C2410 ARM ARCHITECTURE |
| 835 | P: Ben Dooks |
Ben Dooks | 449d4dd | 2006-12-22 01:10:23 -0800 | [diff] [blame] | 836 | M: ben-linux@fluff.org |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 837 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | W: http://www.fluff.org/ben/linux/ |
| 839 | S: Maintained |
| 840 | |
| 841 | ARM/S3C2440 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 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 848 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
| 849 | P: Lennert Buytenhek |
| 850 | M: kernel@wantstofly.org |
| 851 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 852 | S: Maintained |
| 853 | |
| 854 | ARM/THECUS N2100 MACHINE SUPPORT |
| 855 | P: Lennert Buytenhek |
| 856 | M: kernel@wantstofly.org |
| 857 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 858 | S: Maintained |
| 859 | |
wanzongshun | 98ad6e3 | 2009-02-13 06:04:32 +0100 | [diff] [blame] | 860 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 861 | P: Wan ZongShun |
| 862 | M: mcuos.com@gmail.com |
| 863 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 864 | W: http://www.mcuos.com |
| 865 | S: Maintained |
wanzongshun | 98ad6e3 | 2009-02-13 06:04:32 +0100 | [diff] [blame] | 866 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 867 | ARM/VFP SUPPORT |
| 868 | P: Russell King |
| 869 | M: linux@arm.linux.org.uk |
| 870 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 871 | W: http://www.arm.linux.org.uk/ |
| 872 | S: Maintained |
| 873 | F: arch/arm/vfp/ |
| 874 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | ARPD SUPPORT |
| 876 | P: Jonathan Layes |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 877 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 879 | F: net/ipv4/arp.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | |
| 881 | ASUS ACPI EXTRAS DRIVER |
Len Brown | 0b67d94 | 2006-12-22 21:18:56 -0500 | [diff] [blame] | 882 | P: Corentin Chary |
| 883 | M: corentincj@iksaif.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | P: Karol Kozimor |
| 885 | M: sziwan@users.sourceforge.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | L: acpi4asus-user@lists.sourceforge.net |
| 887 | W: http://sourceforge.net/projects/acpi4asus |
Len Brown | 0b67d94 | 2006-12-22 21:18:56 -0500 | [diff] [blame] | 888 | W: http://xf.iksaif.net/acpi4asus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 890 | F: arch/x86/kernel/acpi/boot.c |
| 891 | F: drivers/platform/x86/asus_acpi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 893 | ASUS ASB100 HARDWARE MONITOR DRIVER |
| 894 | P: Mark M. Hoffman |
| 895 | M: mhoffman@lightlink.com |
| 896 | L: lm-sensors@lm-sensors.org |
| 897 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 898 | F: drivers/hwmon/asb100.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 899 | |
Corentin Chary | 85091b7 | 2007-01-26 14:04:30 +0100 | [diff] [blame] | 900 | ASUS LAPTOP EXTRAS DRIVER |
| 901 | P: Corentin Chary |
| 902 | M: corentincj@iksaif.net |
| 903 | L: acpi4asus-user@lists.sourceforge.net |
| 904 | W: http://sourceforge.net/projects/acpi4asus |
| 905 | W: http://xf.iksaif.net/acpi4asus |
| 906 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 907 | F: drivers/platform/x86/asus-laptop.c |
Corentin Chary | 85091b7 | 2007-01-26 14:04:30 +0100 | [diff] [blame] | 908 | |
Andrew Morton | 953a647 | 2008-11-06 12:53:28 -0800 | [diff] [blame] | 909 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 910 | P: Dan Williams |
| 911 | M: dan.j.williams@intel.com |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 912 | P: Maciej Sosnowski |
| 913 | M: maciej.sosnowski@intel.com |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 914 | L: linux-kernel@vger.kernel.org |
| 915 | W: http://sourceforge.net/projects/xscaleiop |
| 916 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 917 | F: Documentation/crypto/async-tx-api.txt |
| 918 | F: crypto/async_tx/ |
| 919 | F: drivers/dma/ |
| 920 | F: include/linux/dmaengine.h |
| 921 | F: include/linux/async_tx.h |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 922 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 923 | ATA OVER ETHERNET (AOE) DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | P: Ed L. Cashin |
| 925 | M: ecashin@coraid.com |
| 926 | W: http://www.coraid.com/support/linux |
| 927 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 928 | F: Documentation/aoe/ |
| 929 | F: drivers/block/aoe/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 931 | ATHEROS ATH5K WIRELESS DRIVER |
| 932 | P: Jiri Slaby |
| 933 | M: jirislaby@gmail.com |
| 934 | P: Nick Kossifidis |
| 935 | M: mickflemm@gmail.com |
| 936 | P: Luis R. Rodriguez |
Luis R. Rodriguez | 4fe0657 | 2008-10-13 14:08:07 -0700 | [diff] [blame] | 937 | M: lrodriguez@atheros.com |
Bob Copeland | adef199 | 2008-10-29 08:30:57 -0400 | [diff] [blame] | 938 | P: Bob Copeland |
| 939 | M: me@bobcopeland.com |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 940 | L: linux-wireless@vger.kernel.org |
| 941 | L: ath5k-devel@lists.ath5k.org |
| 942 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 943 | F: drivers/net/wireless/ath5k/ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 944 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 945 | ATHEROS ATH9K WIRELESS DRIVER |
| 946 | P: Luis R. Rodriguez |
| 947 | M: lrodriguez@atheros.com |
| 948 | P: Jouni Malinen |
| 949 | M: jmalinen@atheros.com |
Luis R. Rodriguez | 295936c | 2009-03-27 17:21:05 -0400 | [diff] [blame] | 950 | P: Sujith Manoharan |
| 951 | M: Sujith.Manoharan@atheros.com |
| 952 | P: Vasanthakumar Thiagarajan |
| 953 | M: vasanth@atheros.com |
| 954 | P: Senthil Balasubramanian |
| 955 | M: senthilkumar@atheros.com |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 956 | L: linux-wireless@vger.kernel.org |
| 957 | L: ath9k-devel@lists.ath9k.org |
| 958 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 959 | F: drivers/net/wireless/ath9k/ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 960 | |
Christian Lamparter | 75ca88c | 2009-03-21 23:11:49 +0100 | [diff] [blame] | 961 | ATHEROS AR9170 WIRELESS DRIVER |
| 962 | P: Christian Lamparter |
| 963 | M: chunkeey@web.de |
| 964 | L: linux-wireless@vger.kernel.org |
| 965 | W: http://wireless.kernel.org/en/users/Drivers/ar9170 |
| 966 | S: Maintained |
| 967 | F: drivers/net/wireless/ar9170/ |
| 968 | |
Ville Syrjala | 6f69a6d | 2008-04-21 22:21:10 +0000 | [diff] [blame] | 969 | ATI_REMOTE2 DRIVER |
| 970 | P: Ville Syrjala |
| 971 | M: syrjala@sci.fi |
| 972 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 973 | F: drivers/input/misc/ati_remote2.c |
Ville Syrjala | 6f69a6d | 2008-04-21 22:21:10 +0000 | [diff] [blame] | 974 | |
Chris Snook | 7ae115b | 2008-09-09 03:26:57 -0400 | [diff] [blame] | 975 | ATLX ETHERNET DRIVERS |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 976 | P: Jay Cliburn |
| 977 | M: jcliburn@gmail.com |
| 978 | P: Chris Snook |
| 979 | M: csnook@redhat.com |
Chris Snook | 7ae115b | 2008-09-09 03:26:57 -0400 | [diff] [blame] | 980 | P: Jie Yang |
| 981 | M: jie.yang@atheros.com |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 982 | L: atl1-devel@lists.sourceforge.net |
| 983 | W: http://sourceforge.net/projects/atl1 |
| 984 | W: http://atl1.sourceforge.net |
| 985 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 986 | F: drivers/net/atlx/ |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 987 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | ATM |
| 989 | P: Chas Williams |
| 990 | M: chas@cmf.nrl.navy.mil |
Roland Dreier | f37bf90 | 2006-09-13 20:39:33 -0700 | [diff] [blame] | 991 | L: linux-atm-general@lists.sourceforge.net (subscribers-only) |
Jiri Slaby | 44ae98b | 2008-11-30 23:27:11 -0800 | [diff] [blame] | 992 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | W: http://linux-atm.sourceforge.net |
| 994 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 995 | F: drivers/atm/ |
| 996 | F: include/linux/atm* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 998 | ATMEL AT91 MCI DRIVER |
Pierre Ossman | 81764fa | 2007-07-15 18:47:38 +0200 | [diff] [blame] | 999 | P: Nicolas Ferre |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1000 | M: nicolas.ferre@atmel.com |
Pierre Ossman | 81764fa | 2007-07-15 18:47:38 +0200 | [diff] [blame] | 1001 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 1002 | W: http://www.atmel.com/products/AT91/ |
| 1003 | W: http://www.at91.com/ |
| 1004 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1005 | F: drivers/mmc/host/at91_mci.c |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 1006 | |
Haavard Skinnemoen | a1cfac4 | 2008-02-08 04:21:00 -0800 | [diff] [blame] | 1007 | ATMEL AT91 / AT32 SERIAL DRIVER |
| 1008 | P: Haavard Skinnemoen |
| 1009 | M: hskinnemoen@atmel.com |
| 1010 | L: linux-kernel@vger.kernel.org |
| 1011 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1012 | F: drivers/serial/atmel_serial.c |
Haavard Skinnemoen | a1cfac4 | 2008-02-08 04:21:00 -0800 | [diff] [blame] | 1013 | |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1014 | ATMEL LCDFB DRIVER |
| 1015 | P: Nicolas Ferre |
| 1016 | M: nicolas.ferre@atmel.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 1017 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1018 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1019 | F: drivers/video/atmel_lcdfb.c |
| 1020 | F: include/video/atmel_lcdc.h |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1021 | |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 1022 | ATMEL MACB ETHERNET DRIVER |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 1023 | P: Haavard Skinnemoen |
| 1024 | M: hskinnemoen@atmel.com |
| 1025 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1026 | F: drivers/net/macb.* |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 1027 | |
Haavard Skinnemoen | 754ce4f | 2007-02-14 00:33:09 -0800 | [diff] [blame] | 1028 | ATMEL SPI DRIVER |
| 1029 | P: Haavard Skinnemoen |
| 1030 | M: hskinnemoen@atmel.com |
| 1031 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1032 | F: drivers/spi/atmel_spi.* |
Haavard Skinnemoen | 754ce4f | 2007-02-14 00:33:09 -0800 | [diff] [blame] | 1033 | |
Haavard Skinnemoen | 914a3f3 | 2007-10-10 02:29:43 -0700 | [diff] [blame] | 1034 | ATMEL USBA UDC DRIVER |
| 1035 | P: Haavard Skinnemoen |
| 1036 | M: hskinnemoen@atmel.com |
| 1037 | L: kernel@avr32linux.org |
| 1038 | W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver |
| 1039 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1040 | F: drivers/usb/gadget/atmel_usba_udc.* |
Haavard Skinnemoen | 914a3f3 | 2007-10-10 02:29:43 -0700 | [diff] [blame] | 1041 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | ATMEL WIRELESS DRIVER |
| 1043 | P: Simon Kelley |
| 1044 | M: simon@thekelleys.org.uk |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 1045 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | W: http://www.thekelleys.org.uk/atmel |
| 1047 | W: http://atmelwlandriver.sourceforge.net/ |
| 1048 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1049 | F: drivers/net/wireless/atmel* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 1051 | AUDIT SUBSYSTEM |
Eric Paris | 0ef1970 | 2008-04-18 10:47:32 -0400 | [diff] [blame] | 1052 | P: Al Viro |
| 1053 | M: viro@zeniv.linux.org.uk |
| 1054 | P: Eric Paris |
| 1055 | M: eparis@redhat.com |
Gabriel C | b9a0620 | 2007-08-10 13:00:56 -0700 | [diff] [blame] | 1056 | L: linux-audit@redhat.com (subscribers-only) |
David Woodhouse | ad3f9a2 | 2005-07-13 15:28:29 +0100 | [diff] [blame] | 1057 | W: http://people.redhat.com/sgrubb/audit/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1058 | 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] | 1059 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1060 | F: include/linux/audit.h |
| 1061 | F: kernel/audit* |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 1062 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1063 | AUXILIARY DISPLAY DRIVERS |
| 1064 | P: Miguel Ojeda Sandonis |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1065 | M: miguel.ojeda.sandonis@gmail.com |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1066 | L: linux-kernel@vger.kernel.org |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1067 | W: http://miguelojeda.es/auxdisplay.htm |
| 1068 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1069 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1070 | F: drivers/auxdisplay/ |
| 1071 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1072 | |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1073 | AVR32 ARCHITECTURE |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1074 | P: Haavard Skinnemoen |
| 1075 | M: hskinnemoen@atmel.com |
| 1076 | W: http://www.atmel.com/products/AVR32/ |
| 1077 | W: http://avr32linux.org/ |
| 1078 | W: http://avrfreaks.net/ |
| 1079 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1080 | F: arch/avr32/ |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1081 | |
| 1082 | AVR32/AT32AP MACHINE SUPPORT |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1083 | P: Haavard Skinnemoen |
| 1084 | M: hskinnemoen@atmel.com |
| 1085 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1086 | F: arch/avr32/mach-at32ap/ |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1087 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | AX.25 NETWORK LAYER |
| 1089 | P: Ralf Baechle |
| 1090 | M: ralf@linux-mips.org |
| 1091 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 1092 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1094 | F: include/linux/ax25.h |
| 1095 | F: include/net/ax25.h |
| 1096 | F: net/ax25/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1098 | B43 WIRELESS DRIVER |
| 1099 | P: Michael Buesch |
| 1100 | M: mb@bu3sch.de |
| 1101 | P: Stefano Brivio |
| 1102 | M: stefano.brivio@polimi.it |
| 1103 | L: linux-wireless@vger.kernel.org |
| 1104 | W: http://linuxwireless.org/en/users/Drivers/b43 |
| 1105 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1106 | F: drivers/net/wireless/b43/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1107 | |
| 1108 | B43LEGACY WIRELESS DRIVER |
| 1109 | P: Larry Finger |
| 1110 | M: Larry.Finger@lwfinger.net |
| 1111 | P: Stefano Brivio |
| 1112 | M: stefano.brivio@polimi.it |
| 1113 | L: linux-wireless@vger.kernel.org |
| 1114 | W: http://linuxwireless.org/en/users/Drivers/b43 |
| 1115 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1116 | F: drivers/net/wireless/b43legacy/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1117 | |
Richard Purdie | 300abeb | 2007-02-07 22:21:07 +0000 | [diff] [blame] | 1118 | BACKLIGHT CLASS/SUBSYSTEM |
| 1119 | P: Richard Purdie |
| 1120 | M: rpurdie@rpsys.net |
| 1121 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1122 | F: drivers/video/backlight/ |
| 1123 | F: include/linux/backlight.h |
Richard Purdie | 300abeb | 2007-02-07 22:21:07 +0000 | [diff] [blame] | 1124 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1125 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
| 1126 | P: Thomas Sailer |
| 1127 | M: t.sailer@alumni.ethz.ch |
| 1128 | L: linux-hams@vger.kernel.org |
| 1129 | W: http://www.baycom.org/~tom/ham/ham.html |
| 1130 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1131 | F: drivers/net/hamradio/baycom* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1132 | |
| 1133 | BEFS FILE SYSTEM |
| 1134 | P: Sergey S. Kostyliov |
| 1135 | M: rathamahata@php4.ru |
| 1136 | L: linux-kernel@vger.kernel.org |
| 1137 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1138 | F: Documentation/filesystems/befs.txt |
| 1139 | F: fs/befs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1140 | |
| 1141 | BFS FILE SYSTEM |
| 1142 | P: Tigran A. Aivazian |
| 1143 | M: tigran@aivazian.fsnet.co.uk |
| 1144 | L: linux-kernel@vger.kernel.org |
| 1145 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1146 | F: Documentation/filesystems/bfs.txt |
| 1147 | F: fs/bfs/ |
| 1148 | F: include/linux/bfs_fs.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1149 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1150 | BLACKFIN ARCHITECTURE |
Mike Frysinger | 6c83429 | 2009-05-24 02:13:15 -0400 | [diff] [blame] | 1151 | P: Mike Frysinger |
| 1152 | M: vapier@gentoo.org |
Mike Frysinger | 5b93e13 | 2009-02-04 16:49:45 +0800 | [diff] [blame] | 1153 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | e3b2d3f | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1154 | W: http://blackfin.uclinux.org |
| 1155 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1156 | F: arch/blackfin/ |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1157 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1158 | BLACKFIN EMAC DRIVER |
Mike Frysinger | 6c83429 | 2009-05-24 02:13:15 -0400 | [diff] [blame] | 1159 | P: Michael Hennerich |
| 1160 | M: michael.hennerich@analog.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1161 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1162 | W: http://blackfin.uclinux.org |
| 1163 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1164 | F: drivers/net/bfin_mac.* |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1165 | |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1166 | BLACKFIN RTC DRIVER |
| 1167 | P: Mike Frysinger |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1168 | M: vapier.adi@gmail.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1169 | L: uclinux-dist-devel@blackfin.uclinux.org |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1170 | W: http://blackfin.uclinux.org |
| 1171 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1172 | F: drivers/rtc/rtc-bfin.c |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1173 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1174 | BLACKFIN SERIAL DRIVER |
Mike Frysinger | 9c5e710 | 2007-11-17 23:19:44 +0800 | [diff] [blame] | 1175 | P: Sonic Zhang |
| 1176 | M: sonic.zhang@analog.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1177 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | e3b2d3f | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1178 | W: http://blackfin.uclinux.org |
| 1179 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1180 | F: drivers/serial/bfin_5xx.c |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1181 | |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 1182 | BLACKFIN WATCHDOG DRIVER |
| 1183 | P: Mike Frysinger |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 1184 | M: vapier.adi@gmail.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1185 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 1186 | W: http://blackfin.uclinux.org |
| 1187 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1188 | F: drivers/watchdog/bfin_wdt.c |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 1189 | |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 1190 | BLACKFIN I2C TWI DRIVER |
| 1191 | P: Sonic Zhang |
| 1192 | M: sonic.zhang@analog.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1193 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 1194 | W: http://blackfin.uclinux.org/ |
| 1195 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1196 | F: drivers/i2c/busses/i2c-bfin-twi.c |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 1197 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | BLOCK LAYER |
| 1199 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 1200 | M: axboe@kernel.dk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1201 | L: linux-kernel@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1202 | 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] | 1203 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1204 | F: block/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 1206 | BLOCK2MTD DRIVER |
| 1207 | P: Joern Engel |
| 1208 | M: joern@lazybastard.org |
| 1209 | L: linux-mtd@lists.infradead.org |
| 1210 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1211 | F: drivers/mtd/devices/block2mtd.c |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 1212 | |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 1213 | BLUETOOTH DRIVERS |
| 1214 | P: Marcel Holtmann |
| 1215 | M: marcel@holtmann.org |
| 1216 | L: linux-bluetooth@vger.kernel.org |
| 1217 | W: http://www.bluez.org/ |
| 1218 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1219 | F: drivers/bluetooth/ |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 1220 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | BLUETOOTH SUBSYSTEM |
| 1222 | P: Marcel Holtmann |
| 1223 | M: marcel@holtmann.org |
Pavel Machek | 781c284 | 2008-03-20 15:41:02 -0700 | [diff] [blame] | 1224 | L: linux-bluetooth@vger.kernel.org |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 1225 | W: http://www.bluez.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1226 | 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] | 1227 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1228 | F: net/bluetooth/ |
| 1229 | F: include/net/bluetooth/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | BONDING DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 1232 | P: Jay Vosburgh |
| 1233 | M: fubar@us.ibm.com |
| 1234 | L: bonding-devel@lists.sourceforge.net |
| 1235 | W: http://sourceforge.net/projects/bonding/ |
| 1236 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1237 | F: drivers/net/bonding/ |
| 1238 | F: include/linux/if_bonding.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1239 | |
Gary Zambrano | 3910589 | 2006-06-22 17:26:20 -0700 | [diff] [blame] | 1240 | BROADCOM B44 10/100 ETHERNET DRIVER |
| 1241 | P: Gary Zambrano |
| 1242 | M: zambrano@broadcom.com |
| 1243 | L: netdev@vger.kernel.org |
| 1244 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1245 | F: drivers/net/b44.* |
Gary Zambrano | 3910589 | 2006-06-22 17:26:20 -0700 | [diff] [blame] | 1246 | |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1247 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
| 1248 | P: Michael Chan |
| 1249 | M: mchan@broadcom.com |
| 1250 | L: netdev@vger.kernel.org |
| 1251 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1252 | F: drivers/net/bnx2.* |
| 1253 | F: drivers/net/bnx2_* |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1254 | |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 1255 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
Eilon Greenstein | 24e3fce | 2008-06-12 14:30:28 -0700 | [diff] [blame] | 1256 | P: Eilon Greenstein |
| 1257 | M: eilong@broadcom.com |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 1258 | L: netdev@vger.kernel.org |
| 1259 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1260 | F: drivers/net/bnx2x* |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 1261 | |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1262 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
Matt Carlson | 1318136 | 2009-02-25 14:41:06 +0000 | [diff] [blame] | 1263 | P: Matt Carlson |
| 1264 | M: mcarlson@broadcom.com |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1265 | P: Michael Chan |
| 1266 | M: mchan@broadcom.com |
| 1267 | L: netdev@vger.kernel.org |
| 1268 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1269 | F: drivers/net/tg3.* |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1270 | |
Jens Axboe | 5cdf7f7 | 2007-07-17 08:58:06 +0200 | [diff] [blame] | 1271 | BSG (block layer generic sg v4 driver) |
| 1272 | P: FUJITA Tomonori |
| 1273 | M: fujita.tomonori@lab.ntt.co.jp |
| 1274 | L: linux-scsi@vger.kernel.org |
| 1275 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1276 | F: block/bsg.c |
| 1277 | F: include/linux/bsg.h |
Jens Axboe | 5cdf7f7 | 2007-07-17 08:58:06 +0200 | [diff] [blame] | 1278 | |
Michael Buesch | ff1d5c2 | 2008-07-25 01:46:10 -0700 | [diff] [blame] | 1279 | BT8XXGPIO DRIVER |
| 1280 | P: Michael Buesch |
| 1281 | M: mb@bu3sch.de |
| 1282 | W: http://bu3sch.de/btgpio.php |
| 1283 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1284 | F: drivers/gpio/bt8xxgpio.c |
Michael Buesch | ff1d5c2 | 2008-07-25 01:46:10 -0700 | [diff] [blame] | 1285 | |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 1286 | BTRFS FILE SYSTEM |
| 1287 | P: Chris Mason |
| 1288 | M: chris.mason@oracle.com |
| 1289 | L: linux-btrfs@vger.kernel.org |
| 1290 | W: http://btrfs.wiki.kernel.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1291 | 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] | 1292 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1293 | F: Documentation/filesystems/btrfs.txt |
| 1294 | F: fs/btrfs/ |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 1295 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | BTTV VIDEO4LINUX DRIVER |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 1297 | P: Mauro Carvalho Chehab |
Mauro Carvalho Chehab | 8d58d77 | 2006-01-27 16:32:02 -0200 | [diff] [blame] | 1298 | M: mchehab@infradead.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 1299 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 1300 | W: http://linuxtv.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1301 | 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] | 1302 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1303 | F: Documentation/video4linux/bttv/ |
| 1304 | F: drivers/media/video/bt8xx/bttv* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | |
David Howells | a5432f5 | 2009-04-20 15:46:45 +0100 | [diff] [blame] | 1306 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
| 1307 | P: David Howells |
| 1308 | M: dhowells@redhat.com |
| 1309 | L: linux-cachefs@redhat.com |
| 1310 | S: Supported |
| 1311 | F: Documentation/filesystems/caching/cachefiles.txt |
| 1312 | F: fs/cachefiles/ |
| 1313 | |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1314 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 1315 | P: Jonathan Corbet |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1316 | M: corbet@lwn.net |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 1317 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1318 | 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] | 1319 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1320 | F: Documentation/video4linux/cafe_ccic |
| 1321 | F: drivers/media/video/cafe_ccic* |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1322 | |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 1323 | CALGARY x86-64 IOMMU |
| 1324 | P: Muli Ben-Yehuda |
| 1325 | M: muli@il.ibm.com |
| 1326 | P: Jon D. Mason |
Jon Mason | d8d2bed | 2006-10-05 18:47:21 +0200 | [diff] [blame] | 1327 | M: jdmason@kudzu.us |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 1328 | L: linux-kernel@vger.kernel.org |
| 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 Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1380 | L: linux-kernel@vger.kernel.org |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1381 | W: http://miguelojeda.es/auxdisplay.htm |
| 1382 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1383 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1384 | F: drivers/auxdisplay/cfag12864b.c |
| 1385 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1386 | |
| 1387 | CFAG12864BFB LCD FRAMEBUFFER DRIVER |
| 1388 | P: Miguel Ojeda Sandonis |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1389 | M: miguel.ojeda.sandonis@gmail.com |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1390 | L: linux-kernel@vger.kernel.org |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1391 | W: http://miguelojeda.es/auxdisplay.htm |
| 1392 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1393 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1394 | F: drivers/auxdisplay/cfag12864bfb.c |
| 1395 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1396 | |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 1397 | CFG80211 and NL80211 |
| 1398 | P: Johannes Berg |
| 1399 | M: johannes@sipsolutions.net |
| 1400 | L: linux-wireless@vger.kernel.org |
| 1401 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1402 | F: include/linux/nl80211.h |
| 1403 | F: include/net/cfg80211.h |
| 1404 | F: net/wireless/* |
| 1405 | X: net/wireless/wext* |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 1406 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1407 | CHECKPATCH |
| 1408 | P: Andy Whitcroft |
Andy Whitcroft | b0e0b43 | 2009-01-06 14:41:22 -0800 | [diff] [blame] | 1409 | M: apw@canonical.com |
| 1410 | L: linux-kernel@vger.kernel.org |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1411 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1412 | F: scripts/checkpatch.pl |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1413 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1414 | CISCO 10G ETHERNET DRIVER |
| 1415 | P: Scott Feldman |
| 1416 | M: scofeldm@cisco.com |
| 1417 | P: Joe Eykholt |
| 1418 | M: jeykholt@cisco.com |
Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 1419 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1420 | F: drivers/net/enic/ |
Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 1421 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1422 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
| 1423 | P: Lennert Buytenhek |
| 1424 | M: kernel@wantstofly.org |
| 1425 | L: netdev@vger.kernel.org |
| 1426 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1427 | F: drivers/net/arm/ep93xx_eth.c |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1428 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1429 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
| 1430 | P: Lennert Buytenhek |
| 1431 | M: kernel@wantstofly.org |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 1432 | L: linux-usb@vger.kernel.org |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1433 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1434 | F: drivers/usb/host/ohci-ep93xx.c |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1435 | |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 1436 | CIRRUS LOGIC CS4270 SOUND DRIVER |
| 1437 | P: Timur Tabi |
| 1438 | M: timur@freescale.com |
| 1439 | L: alsa-devel@alsa-project.org |
| 1440 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1441 | F: sound/soc/codecs/cs4270* |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 1442 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1443 | CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER |
| 1444 | P: Cirrus Logic Corporation (kernel 2.2 driver) |
| 1445 | M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com> |
| 1446 | P: Nils Faerber (port to kernel 2.4) |
| 1447 | M: Nils Faerber <nils@kernelconcepts.de> |
| 1448 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1449 | F: Documentation/input/cs461x.txt |
| 1450 | F: sound/pci/cs46xx/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1452 | CLK API |
| 1453 | P: Russell King |
| 1454 | M: linux@arm.linux.org.uk |
| 1455 | F: include/linux/clk.h |
| 1456 | |
Abhijeet Joglekar | 5df6d73 | 2009-04-17 18:33:26 -0700 | [diff] [blame] | 1457 | CISCO FCOE HBA DRIVER |
| 1458 | P: Abhijeet Joglekar |
| 1459 | M: abjoglek@cisco.com |
| 1460 | P: Joe Eykholt |
| 1461 | M: jeykholt@cisco.com |
| 1462 | L: linux-scsi@vger.kernel.org |
| 1463 | S: Supported |
| 1464 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | CODA FILE SYSTEM |
| 1466 | P: Jan Harkes |
| 1467 | M: jaharkes@cs.cmu.edu |
| 1468 | M: coda@cs.cmu.edu |
| 1469 | L: codalist@coda.cs.cmu.edu |
| 1470 | W: http://www.coda.cs.cmu.edu/ |
| 1471 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1472 | F: Documentation/filesystems/coda.txt |
| 1473 | F: fs/coda/ |
| 1474 | F: include/linux/coda*.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1475 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1476 | COMMON INTERNET FILE SYSTEM (CIFS) |
| 1477 | P: Steve French |
| 1478 | M: sfrench@samba.org |
| 1479 | L: linux-cifs-client@lists.samba.org |
| 1480 | L: samba-technical@lists.samba.org |
| 1481 | W: http://linux-cifs.samba.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1482 | 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] | 1483 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1484 | F: Documentation/filesystems/cifs.txt |
| 1485 | F: fs/cifs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1486 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | COMPACTPCI HOTPLUG CORE |
| 1488 | P: Scott Murray |
| 1489 | M: scottm@somanetworks.com |
| 1490 | M: scott@spiteful.org |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 1491 | L: linux-pci@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1492 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1493 | F: drivers/pci/hotplug/cpci_hotplug* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | |
| 1495 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER |
| 1496 | P: Scott Murray |
| 1497 | M: scottm@somanetworks.com |
| 1498 | M: scott@spiteful.org |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 1499 | L: linux-pci@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1501 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1502 | |
| 1503 | COMPACTPCI HOTPLUG GENERIC DRIVER |
| 1504 | P: Scott Murray |
| 1505 | M: scottm@somanetworks.com |
| 1506 | M: scott@spiteful.org |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 1507 | L: linux-pci@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1509 | F: drivers/pci/hotplug/cpcihp_generic.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1510 | |
Cezary Jackiewicz | 5411552 | 2008-06-09 16:22:22 -0700 | [diff] [blame] | 1511 | COMPAL LAPTOP SUPPORT |
| 1512 | P: Cezary Jackiewicz |
| 1513 | M: cezary.jackiewicz@gmail.com |
| 1514 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1515 | F: drivers/platform/x86/compal-laptop.c |
Cezary Jackiewicz | 5411552 | 2008-06-09 16:22:22 -0700 | [diff] [blame] | 1516 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1517 | COMPUTONE INTELLIPORT MULTIPORT CARD |
| 1518 | P: Michael H. Warfield |
Adrian Bunk | 07d46de | 2005-06-25 14:59:13 -0700 | [diff] [blame] | 1519 | M: mhw@wittsend.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1520 | W: http://www.wittsend.com/computone.html |
Adrian Bunk | 07d46de | 2005-06-25 14:59:13 -0700 | [diff] [blame] | 1521 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1522 | F: Documentation/serial/computone.txt |
| 1523 | F: drivers/char/ip2/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1524 | |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 1525 | CONEXANT ACCESSRUNNER USB DRIVER |
| 1526 | P: Simon Arlott |
| 1527 | M: cxacru@fire.lp0.eu |
Simon Arlott | 9ae5e3b | 2007-05-09 08:38:10 +0200 | [diff] [blame] | 1528 | L: accessrunner-general@lists.sourceforge.net |
| 1529 | W: http://accessrunner.sourceforge.net/ |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 1530 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1531 | F: drivers/usb/atm/cxacru.c |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 1532 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1533 | CONFIGFS |
| 1534 | P: Joel Becker |
| 1535 | M: joel.becker@oracle.com |
| 1536 | L: linux-kernel@vger.kernel.org |
| 1537 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1538 | F: fs/configfs/ |
| 1539 | F: include/linux/configfs.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1540 | |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 1541 | CONTROL GROUPS (CGROUPS) |
| 1542 | P: Paul Menage |
| 1543 | M: menage@google.com |
KOSAKI Motohiro | 01c4a42 | 2009-02-11 13:04:35 -0800 | [diff] [blame] | 1544 | P: Li Zefan |
| 1545 | M: lizf@cn.fujitsu.com |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 1546 | L: containers@lists.linux-foundation.org |
| 1547 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1548 | F: include/linux/cgroup* |
| 1549 | F: kernel/cgroup* |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 1550 | |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1551 | CORETEMP HARDWARE MONITORING DRIVER |
| 1552 | P: Rudolf Marek |
| 1553 | M: r.marek@assembler.cz |
| 1554 | L: lm-sensors@lm-sensors.org |
| 1555 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1556 | F: Documentation/hwmon/coretemp |
| 1557 | F: drivers/hwmon/coretemp.c |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1558 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1559 | COSA/SRP SYNC SERIAL DRIVER |
| 1560 | P: Jan "Yenya" Kasprzak |
| 1561 | M: kas@fi.muni.cz |
| 1562 | W: http://www.fi.muni.cz/~kas/cosa/ |
| 1563 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1564 | F: drivers/net/wan/cosa* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1565 | |
Florian Fainelli | 4371ee3 | 2009-06-01 02:43:17 -0700 | [diff] [blame] | 1566 | CPMAC ETHERNET DRIVER |
| 1567 | P: Florian Fainelli |
| 1568 | M: florian@openwrt.org |
| 1569 | L: netdev@vger.kernel.org |
| 1570 | S: Maintained |
| 1571 | F: drivers/net/cpmac.c |
| 1572 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1573 | CPU FREQUENCY DRIVERS |
| 1574 | P: Dave Jones |
Dave Jones | f4432c5 | 2008-10-20 13:31:45 -0400 | [diff] [blame] | 1575 | M: davej@redhat.com |
Dave Jones | bc5f65d | 2008-07-31 18:22:59 -0400 | [diff] [blame] | 1576 | L: cpufreq@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1577 | W: http://www.codemonkey.org.uk/projects/cpufreq/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1578 | 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] | 1579 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1580 | F: arch/x86/kernel/cpu/cpufreq/ |
| 1581 | F: drivers/cpufreq/ |
| 1582 | F: include/linux/cpufreq.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 | |
| 1584 | CPUID/MSR DRIVER |
| 1585 | P: H. Peter Anvin |
| 1586 | M: hpa@zytor.com |
| 1587 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1588 | F: arch/x86/kernel/cpuid.c |
| 1589 | F: arch/x86/kernel/msr.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1590 | |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1591 | CPUSETS |
Paul Jackson | 6bffd7b | 2008-05-01 04:34:21 -0700 | [diff] [blame] | 1592 | P: Paul Menage |
Paul Jackson | 6bffd7b | 2008-05-01 04:34:21 -0700 | [diff] [blame] | 1593 | M: menage@google.com |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1594 | L: linux-kernel@vger.kernel.org |
| 1595 | W: http://www.bullopensource.org/cpuset/ |
Paul Jackson | 551e172 | 2008-06-12 15:21:31 -0700 | [diff] [blame] | 1596 | W: http://oss.sgi.com/projects/cpusets/ |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1597 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1598 | F: Documentation/cgroups/cpusets.txt |
| 1599 | F: include/linux/cpuset.h |
| 1600 | F: kernel/cpuset.c |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1601 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1602 | CRAMFS FILESYSTEM |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 1603 | W: http://sourceforge.net/projects/cramfs/ |
| 1604 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1605 | F: Documentation/filesystems/cramfs.txt |
| 1606 | F: fs/cramfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | |
| 1608 | CRIS PORT |
| 1609 | P: Mikael Starvik |
| 1610 | M: starvik@axis.com |
Jesper Nilsson | 0b07aa6 | 2008-01-25 13:22:29 +0100 | [diff] [blame] | 1611 | P: Jesper Nilsson |
| 1612 | M: jesper.nilsson@axis.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | L: dev-etrax@axis.com |
| 1614 | W: http://developer.axis.com |
| 1615 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1616 | F: arch/cris/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1617 | |
| 1618 | CRYPTO API |
| 1619 | P: Herbert Xu |
| 1620 | M: herbert@gondor.apana.org.au |
| 1621 | P: David S. Miller |
| 1622 | M: davem@davemloft.net |
| 1623 | L: linux-crypto@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1624 | 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] | 1625 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1626 | F: Documentation/crypto/ |
| 1627 | F: arch/*/crypto/ |
| 1628 | F: crypto/ |
| 1629 | F: drivers/crypto/ |
| 1630 | F: include/crypto/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1631 | |
Neil Horman | 5b07bd5 | 2009-02-05 16:03:04 +1100 | [diff] [blame] | 1632 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
| 1633 | P: Neil Horman |
| 1634 | M: nhorman@tuxdriver.com |
| 1635 | L: linux-crypto@vger.kernel.org |
| 1636 | S: Maintained |
| 1637 | |
Jaya Kumar | 9b4ffa4 | 2005-11-17 10:12:23 +0100 | [diff] [blame] | 1638 | CS5535 Audio ALSA driver |
| 1639 | P: Jaya Kumar |
| 1640 | M: jayakumar.alsa@gmail.com |
| 1641 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1642 | F: sound/pci/cs5535audio/ |
Jaya Kumar | 9b4ffa4 | 2005-11-17 10:12:23 +0100 | [diff] [blame] | 1643 | |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 1644 | CX18 VIDEO4LINUX DRIVER |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1645 | P: Hans Verkuil |
| 1646 | M: hverkuil@xs4all.nl |
| 1647 | P: Andy Walls |
| 1648 | M: awalls@radix.net |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 1649 | L: ivtv-devel@ivtvdriver.org |
| 1650 | L: ivtv-users@ivtvdriver.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 1651 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1652 | 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] | 1653 | W: http://linuxtv.org |
| 1654 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1655 | F: Documentation/video4linux/cx18.txt |
| 1656 | F: drivers/media/video/cx18/ |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 1657 | |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 1658 | CXGB3 ETHERNET DRIVER (CXGB3) |
| 1659 | P: Divy Le Ray |
| 1660 | M: divy@chelsio.com |
| 1661 | L: netdev@vger.kernel.org |
| 1662 | W: http://www.chelsio.com |
| 1663 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1664 | F: drivers/net/cxgb3/ |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 1665 | |
| 1666 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) |
| 1667 | P: Steve Wise |
| 1668 | M: swise@chelsio.com |
| 1669 | L: general@lists.openfabrics.org |
| 1670 | W: http://www.openfabrics.org |
| 1671 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1672 | F: drivers/infiniband/hw/cxgb3/ |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 1673 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1674 | CYBERPRO FB DRIVER |
| 1675 | P: Russell King |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1676 | M: linux@arm.linux.org.uk |
| 1677 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1678 | W: http://www.arm.linux.org.uk/ |
| 1679 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1680 | F: drivers/video/cyber2000fb.* |
Knut Petersen | 9fa68ea | 2005-09-09 13:04:56 -0700 | [diff] [blame] | 1681 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1682 | CYCLADES 2X SYNC CARD DRIVER |
| 1683 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 1684 | M: acme@ghostprotocols.net |
| 1685 | W: http://oops.ghostprotocols.net:81/blog |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1686 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1687 | F: drivers/net/wan/cycx* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1688 | |
| 1689 | CYCLADES ASYNC MUX DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1690 | W: http://www.cyclades.com/ |
Jiri Slaby | d459883 | 2007-02-12 00:51:53 -0800 | [diff] [blame] | 1691 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1692 | F: drivers/char/cyclades.c |
| 1693 | F: include/linux/cyclades.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1694 | |
| 1695 | CYCLADES PC300 DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | W: http://www.cyclades.com/ |
Jiri Slaby | d459883 | 2007-02-12 00:51:53 -0800 | [diff] [blame] | 1697 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1698 | F: drivers/net/wan/pc300* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1699 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1700 | DAMA SLAVE for AX.25 |
| 1701 | P: Joerg Reuter |
| 1702 | M: jreuter@yaina.de |
| 1703 | W: http://yaina.de/jreuter/ |
| 1704 | W: http://www.qsl.net/dl1bke/ |
| 1705 | L: linux-hams@vger.kernel.org |
| 1706 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1707 | F: net/ax25/af_ax25.c |
| 1708 | F: net/ax25/ax25_dev.c |
| 1709 | F: net/ax25/ax25_ds_* |
| 1710 | F: net/ax25/ax25_in.c |
| 1711 | F: net/ax25/ax25_out.c |
| 1712 | F: net/ax25/ax25_timer.c |
| 1713 | F: net/ax25/sysctl_net_ax25.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1714 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1715 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
| 1716 | P: Tobias Ringstrom |
| 1717 | M: tori@unhappy.mine.nu |
| 1718 | L: netdev@vger.kernel.org |
| 1719 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1720 | F: Documentation/networking/dmfe.txt |
| 1721 | F: drivers/net/tulip/dmfe.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1722 | |
| 1723 | DC390/AM53C974 SCSI driver |
| 1724 | P: Kurt Garloff |
| 1725 | M: garloff@suse.de |
| 1726 | W: http://www.garloff.de/kurt/linux/dc390/ |
| 1727 | P: Guennadi Liakhovetski |
| 1728 | M: g.liakhovetski@gmx.de |
| 1729 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1730 | F: drivers/scsi/tmscsim.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1731 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | DC395x SCSI driver |
| 1733 | P: Oliver Neukum |
| 1734 | M: oliver@neukum.name |
| 1735 | P: Ali Akcaagac |
| 1736 | M: aliakc@web.de |
| 1737 | P: Jamie Lenehan |
| 1738 | M: lenehan@twibble.org |
| 1739 | W: http://twibble.org/dist/dc395x/ |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 1740 | L: dc395x@twibble.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1741 | L: http://lists.twibble.org/mailman/listinfo/dc395x/ |
| 1742 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1743 | F: Documentation/scsi/dc395x.txt |
| 1744 | F: drivers/scsi/dc395x.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1745 | |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1746 | DCCP PROTOCOL |
| 1747 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 1748 | M: acme@ghostprotocols.net |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1749 | L: dccp@vger.kernel.org |
Ian McDonald | f3b84ec | 2005-11-10 13:05:01 -0800 | [diff] [blame] | 1750 | W: http://linux-net.osdl.org/index.php/DCCP |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1751 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1752 | F: include/linux/dccp.h |
| 1753 | F: include/linux/tfrc.h |
| 1754 | F: net/dccp/ |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1755 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | DECnet NETWORK LAYER |
Christine Caulfield | 8943f26 | 2008-02-14 19:31:31 -0800 | [diff] [blame] | 1757 | P: Christine Caulfield |
| 1758 | M: christine.caulfield@googlemail.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1759 | W: http://linux-decnet.sourceforge.net |
| 1760 | L: linux-decnet-user@lists.sourceforge.net |
| 1761 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1762 | F: Documentation/networking/decnet.txt |
| 1763 | F: net/decnet/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1764 | |
| 1765 | DEFXX FDDI NETWORK DRIVER |
| 1766 | P: Maciej W. Rozycki |
| 1767 | M: macro@linux-mips.org |
| 1768 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1769 | F: drivers/net/defxx.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1770 | |
Matthew Garrett | ad8f07c | 2009-01-07 18:08:56 -0800 | [diff] [blame] | 1771 | DELL LAPTOP DRIVER |
| 1772 | P: Matthew Garrett |
| 1773 | M: mjg59@srcf.ucam.org |
| 1774 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1775 | F: drivers/platform/x86/dell-laptop.c |
Matthew Garrett | ad8f07c | 2009-01-07 18:08:56 -0800 | [diff] [blame] | 1776 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1777 | DELL LAPTOP SMM DRIVER |
| 1778 | P: Massimo Dal Zotto |
| 1779 | M: dz@debian.org |
| 1780 | W: http://www.debian.org/~dz/i8k/ |
| 1781 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1782 | F: drivers/char/i8k.c |
| 1783 | F: include/linux/i8k.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1784 | |
Doug Warzecha | 90563ec | 2005-09-06 15:17:15 -0700 | [diff] [blame] | 1785 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
| 1786 | P: Doug Warzecha |
| 1787 | M: Douglas_Warzecha@dell.com |
| 1788 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1789 | F: Documentation/dcdbas.txt |
| 1790 | F: drivers/firmware/dcdbas.* |
Doug Warzecha | 90563ec | 2005-09-06 15:17:15 -0700 | [diff] [blame] | 1791 | |
Matthew Garrett | 0b3f610 | 2009-01-09 20:17:11 +0000 | [diff] [blame] | 1792 | DELL WMI EXTRAS DRIVER |
| 1793 | P: Matthew Garrett |
| 1794 | M: mjg59@srcf.ucam.org |
| 1795 | S: Maintained |
| 1796 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1797 | DEVICE NUMBER REGISTRY |
| 1798 | P: Torben Mathiasen |
| 1799 | M: device@lanana.org |
| 1800 | W: http://lanana.org/docs/device-list/index.html |
| 1801 | L: linux-kernel@vger.kernel.org |
| 1802 | S: Maintained |
| 1803 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1804 | DEVICE-MAPPER (LVM) |
| 1805 | P: Alasdair Kergon |
| 1806 | L: dm-devel@redhat.com |
| 1807 | W: http://sources.redhat.com/dm |
| 1808 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1809 | F: Documentation/device-mapper/ |
| 1810 | F: drivers/md/dm* |
| 1811 | F: include/linux/device-mapper.h |
| 1812 | F: include/linux/dm-*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1813 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1814 | DIGI INTL. EPCA DRIVER |
| 1815 | P: Digi International, Inc |
| 1816 | M: Eng.Linux@digi.com |
| 1817 | L: Eng.Linux@digi.com |
| 1818 | W: http://www.digi.com |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 1819 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1820 | F: Documentation/serial/digiepca.txt |
| 1821 | F: drivers/char/epca* |
| 1822 | F: drivers/char/digi* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1823 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 1824 | DIRECTORY NOTIFICATION (DNOTIFY) |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 1825 | P: Eric Paris |
| 1826 | M: eparis@parisplace.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1827 | L: linux-kernel@vger.kernel.org |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 1828 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1829 | F: Documentation/filesystems/dnotify.txt |
| 1830 | F: fs/notify/dnotify/ |
| 1831 | F: include/linux/dnotify.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1832 | |
| 1833 | DISK GEOMETRY AND PARTITION HANDLING |
| 1834 | P: Andries Brouwer |
| 1835 | M: aeb@cwi.nl |
| 1836 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
| 1837 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html |
| 1838 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html |
| 1839 | S: Maintained |
| 1840 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 1841 | DISKQUOTA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1842 | P: Jan Kara |
| 1843 | M: jack@suse.cz |
| 1844 | L: linux-kernel@vger.kernel.org |
| 1845 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1846 | F: Documentation/filesystems/quota.txt |
| 1847 | F: fs/quota/ |
| 1848 | F: include/linux/quota*.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1849 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 1850 | DISTRIBUTED LOCK MANAGER (DLM) |
Christine Caulfield | 8943f26 | 2008-02-14 19:31:31 -0800 | [diff] [blame] | 1851 | P: Christine Caulfield |
| 1852 | M: ccaulfie@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1853 | P: David Teigland |
| 1854 | M: teigland@redhat.com |
David Teigland | a464418 | 2006-06-22 15:29:57 -0400 | [diff] [blame] | 1855 | L: cluster-devel@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1856 | W: http://sources.redhat.com/cluster/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1857 | 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] | 1858 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1859 | F: fs/dlm/ |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1860 | |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1861 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 1862 | P: Maciej Sosnowski |
| 1863 | M: maciej.sosnowski@intel.com |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1864 | P: Dan Williams |
| 1865 | M: dan.j.williams@intel.com |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 1866 | L: linux-kernel@vger.kernel.org |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1867 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1868 | F: drivers/dma/ |
| 1869 | F: include/linux/dma* |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 1870 | |
Juerg Haefliger | b825037 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 1871 | DME1737 HARDWARE MONITOR DRIVER |
| 1872 | P: Juerg Haefliger |
| 1873 | M: juergh@gmail.com |
| 1874 | L: lm-sensors@lm-sensors.org |
| 1875 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1876 | F: Documentation/hwmon/dme1737 |
| 1877 | F: drivers/hwmon/dme1737.c |
Juerg Haefliger | b825037 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 1878 | |
Martin Waitz | ba483d5 | 2005-06-17 13:20:59 -0700 | [diff] [blame] | 1879 | DOCBOOK FOR DOCUMENTATION |
Randy Dunlap | 0f40efb | 2006-07-03 00:24:15 -0700 | [diff] [blame] | 1880 | P: Randy Dunlap |
| 1881 | M: rdunlap@xenotime.net |
Martin Waitz | ba483d5 | 2005-06-17 13:20:59 -0700 | [diff] [blame] | 1882 | S: Maintained |
| 1883 | |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 1884 | DOCKING STATION DRIVER |
Len Brown | c5d191b | 2008-09-24 02:53:25 -0400 | [diff] [blame] | 1885 | P: Shaohua Li |
| 1886 | M: shaohua.li@intel.com |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 1887 | L: linux-acpi@vger.kernel.org |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 1888 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1889 | F: drivers/acpi/dock.c |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 1890 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1891 | DOCUMENTATION |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 1892 | P: Randy Dunlap |
| 1893 | M: rdunlap@xenotime.net |
| 1894 | L: linux-doc@vger.kernel.org |
| 1895 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1896 | F: Documentation/ |
Randy Dunlap | abbaeff | 2008-07-04 09:59:57 -0700 | [diff] [blame] | 1897 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1898 | DOUBLETALK DRIVER |
| 1899 | P: James R. Van Zandt |
| 1900 | M: jrv@vanzandt.mv.com |
| 1901 | L: blinux-list@redhat.com |
| 1902 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1903 | F: drivers/char/dtlk.c |
| 1904 | F: include/linux/dtlk.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1905 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1906 | DPT_I2O SCSI RAID DRIVER |
| 1907 | P: Adaptec OEM Raid Solutions |
| 1908 | M: aacraid@adaptec.com |
| 1909 | L: linux-scsi@vger.kernel.org |
| 1910 | W: http://www.adaptec.com/ |
| 1911 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1912 | F: drivers/scsi/dpt* |
| 1913 | F: drivers/scsi/dpt/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1914 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1915 | DRIVER CORE, KOBJECTS, AND SYSFS |
| 1916 | P: Greg Kroah-Hartman |
| 1917 | M: gregkh@suse.de |
| 1918 | L: linux-kernel@vger.kernel.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 1919 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1920 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1921 | F: Documentation/kobject.txt |
Joe Perches | 7cfc51b | 2009-04-08 10:04:18 -0700 | [diff] [blame] | 1922 | F: drivers/base/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1923 | F: fs/sysfs/ |
| 1924 | F: include/linux/kobj* |
| 1925 | F: lib/kobj* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1926 | |
| 1927 | DRM DRIVERS |
| 1928 | P: David Airlie |
| 1929 | M: airlied@linux.ie |
| 1930 | L: dri-devel@lists.sourceforge.net |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1931 | 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] | 1932 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1933 | F: drivers/gpu/drm/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1934 | |
| 1935 | DSCC4 DRIVER |
Francois Romieu | 01f2073 | 2007-01-26 00:57:17 -0800 | [diff] [blame] | 1936 | P: Francois Romieu |
| 1937 | M: romieu@fr.zoreil.com |
| 1938 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1939 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1940 | F: drivers/net/wan/dscc4.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1941 | |
Maciej W. Rozycki | 789c704 | 2008-02-07 00:15:13 -0800 | [diff] [blame] | 1942 | DZ DECSTATION DZ11 SERIAL DRIVER |
| 1943 | P: Maciej W. Rozycki |
| 1944 | M: macro@linux-mips.org |
| 1945 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1946 | F: drivers/serial/dz.* |
Maciej W. Rozycki | 789c704 | 2008-02-07 00:15:13 -0800 | [diff] [blame] | 1947 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | EATA-DMA SCSI DRIVER |
| 1949 | P: Michael Neuffer |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1950 | M: mike@i-Connect.Net |
| 1951 | L: linux-eata@i-connect.net |
| 1952 | L: linux-scsi@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1953 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1954 | F: drivers/scsi/eata* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1955 | |
| 1956 | EATA ISA/EISA/PCI SCSI DRIVER |
| 1957 | P: Dario Ballabio |
| 1958 | M: ballabio_dario@emc.com |
| 1959 | L: linux-scsi@vger.kernel.org |
| 1960 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1961 | F: drivers/scsi/eata.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1962 | |
| 1963 | EATA-PIO SCSI DRIVER |
| 1964 | P: Michael Neuffer |
| 1965 | M: mike@i-Connect.Net |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1966 | L: linux-eata@i-connect.net |
| 1967 | L: linux-scsi@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1968 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1969 | F: drivers/scsi/eata_pio.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1970 | |
| 1971 | EBTABLES |
| 1972 | P: Bart De Schuymer |
| 1973 | M: bart.de.schuymer@pandora.be |
| 1974 | L: ebtables-user@lists.sourceforge.net |
| 1975 | L: ebtables-devel@lists.sourceforge.net |
| 1976 | W: http://ebtables.sourceforge.net/ |
| 1977 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1978 | F: include/linux/netfilter_bridge/ebt_*.h |
| 1979 | F: net/bridge/netfilter/ebt*.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1980 | |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 1981 | ECRYPT FILE SYSTEM |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1982 | P: Tyler Hicks |
| 1983 | M: tyhicks@linux.vnet.ibm.com |
| 1984 | M: Dustin Kirkland |
| 1985 | P: kirkland@canonical.com |
Michael Halcrow | 6dc7516 | 2008-12-15 13:54:17 -0800 | [diff] [blame] | 1986 | L: ecryptfs-devel@lists.launchpad.net |
| 1987 | W: https://launchpad.net/ecryptfs |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 1988 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1989 | F: Documentation/filesystems/ecryptfs.txt |
| 1990 | F: fs/ecryptfs/ |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 1991 | |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 1992 | EDAC-CORE |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1993 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 1994 | M: dougthompson@xmission.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 1995 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1996 | W: bluesmoke.sourceforge.net |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 1997 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1998 | F: Documentation/edac.txt |
| 1999 | F: drivers/edac/edac_* |
| 2000 | F: include/linux/edac.h |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2001 | |
Borislav Petkov | c476c23 | 2009-05-20 20:31:58 +0200 | [diff] [blame] | 2002 | EDAC-AMD64 |
| 2003 | P: Doug Thompson |
| 2004 | M: dougthompson@xmission.com |
| 2005 | P: Borislav Petkov |
| 2006 | M: borislav.petkov@amd.com |
| 2007 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 2008 | W: bluesmoke.sourceforge.net |
| 2009 | S: Supported |
| 2010 | F: drivers/edac/amd64_edac* |
| 2011 | |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2012 | EDAC-E752X |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 2013 | P: Mark Gross |
| 2014 | M: mark.gross@intel.com |
Joe Perches | 681a1b4 | 2009-05-28 14:34:18 -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/e752x_edac.c |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2021 | |
| 2022 | EDAC-E7XXX |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 2023 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2024 | M: dougthompson@xmission.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2025 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [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/e7xxx_edac.c |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2029 | |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2030 | EDAC-I82443BXGX |
| 2031 | P: Tim Small |
| 2032 | M: tim@buttersideup.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/i82443bxgx_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2037 | |
| 2038 | EDAC-I3000 |
| 2039 | P: Jason Uhlenkott |
| 2040 | M: juhlenko@akamai.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 | 6bc7840 | 2007-07-19 01:50:12 -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/i3000_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2045 | |
| 2046 | EDAC-I5000 |
| 2047 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2048 | M: dougthompson@xmission.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2049 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [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/i5000_edac.c |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2053 | |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 2054 | EDAC-I5400 |
| 2055 | P: Mauro Carvalho Chehab |
| 2056 | M: mchehab@redhat.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2057 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 2058 | W: bluesmoke.sourceforge.net |
| 2059 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2060 | F: drivers/edac/i5400_edac.c |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 2061 | |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2062 | EDAC-I82975X |
| 2063 | P: Ranganathan Desikan |
| 2064 | P: Arvind R. |
| 2065 | M: rdesikan@jetzbroadband.com |
| 2066 | M: arvind@acarlab.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 | ba9a591 | 2007-07-19 01:50:32 -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/i82975x_edac.c |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2071 | |
| 2072 | EDAC-PASEMI |
| 2073 | P: Egor Martovetsky |
| 2074 | M: egor@pasemi.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2075 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [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/pasemi_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2079 | |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2080 | EDAC-R82600 |
| 2081 | P: Tim Small |
| 2082 | M: tim@buttersideup.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2083 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2084 | W: bluesmoke.sourceforge.net |
| 2085 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2086 | F: drivers/edac/r82600_edac.c |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 2087 | |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 2088 | EEEPC LAPTOP EXTRAS DRIVER |
| 2089 | P: Corentin Chary |
| 2090 | M: corentincj@iksaif.net |
| 2091 | L: acpi4asus-user@lists.sourceforge.net |
| 2092 | W: http://sourceforge.net/projects/acpi4asus |
| 2093 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2094 | F: drivers/platform/x86/eeepc-laptop.c |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 2095 | |
Josh Triplett | 0bee8d2 | 2006-07-30 03:03:58 -0700 | [diff] [blame] | 2096 | EFS FILESYSTEM |
| 2097 | W: http://aeschi.ch.eu.org/efs/ |
| 2098 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2099 | F: fs/efs/ |
Josh Triplett | 0bee8d2 | 2006-07-30 03:03:58 -0700 | [diff] [blame] | 2100 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 2101 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 2102 | P: Hoang-Nam Nguyen |
| 2103 | M: hnguyen@de.ibm.com |
| 2104 | P: Christoph Raisch |
| 2105 | M: raisch@de.ibm.com |
Roland Dreier | 7852682 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 2106 | L: general@lists.openfabrics.org |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 2107 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2108 | F: drivers/infiniband/hw/ehca/ |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 2109 | |
David Woodhouse | 3e3a7d6 | 2008-05-01 04:34:46 -0700 | [diff] [blame] | 2110 | EMBEDDED LINUX |
| 2111 | P: Paul Gortmaker |
| 2112 | M: paul.gortmaker@windriver.com |
Matt Mackall | 0f24922 | 2009-04-21 12:24:47 -0700 | [diff] [blame] | 2113 | P: Matt Mackall |
| 2114 | M: mpm@selenic.com |
Uwe Kleine-König | a46add7 | 2008-09-09 00:11:39 +0200 | [diff] [blame] | 2115 | P: David Woodhouse |
David Woodhouse | 3e3a7d6 | 2008-05-01 04:34:46 -0700 | [diff] [blame] | 2116 | M: dwmw2@infradead.org |
| 2117 | L: linux-embedded@vger.kernel.org |
| 2118 | S: Maintained |
| 2119 | |
James.Smart@Emulex.Com | 3a1c1d4 | 2005-08-11 13:42:35 -0400 | [diff] [blame] | 2120 | EMULEX LPFC FC SCSI DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2121 | P: James Smart |
| 2122 | M: james.smart@emulex.com |
| 2123 | L: linux-scsi@vger.kernel.org |
| 2124 | W: http://sourceforge.net/projects/lpfcxxxx |
| 2125 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2126 | F: drivers/scsi/lpfc/ |
James.Smart@Emulex.Com | 3a1c1d4 | 2005-08-11 13:42:35 -0400 | [diff] [blame] | 2127 | |
Michał Mirosław | 5f5bac8 | 2009-05-22 20:33:59 +0200 | [diff] [blame] | 2128 | ENE CB710 FLASH CARD READER DRIVER |
| 2129 | P: Michał Mirosław |
| 2130 | M: mirq-linux@rere.qmqm.pl |
| 2131 | L: linux-kernel@vger.kernel.org |
| 2132 | S: Maintained |
| 2133 | F: drivers/misc/cb710/ |
| 2134 | F: drivers/mmc/host/cb710-mmc.* |
| 2135 | F: include/linux/cb710.h |
| 2136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2137 | EPSON 1355 FRAMEBUFFER DRIVER |
| 2138 | P: Christopher Hoover |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2139 | M: ch@murgatroid.com |
| 2140 | P: Christopher Hoover |
| 2141 | M: ch@hpl.hp.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2142 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2143 | F: drivers/video/epson1355fb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2144 | |
Kristoffer Ericson | d5ca900 | 2008-10-15 22:03:54 -0700 | [diff] [blame] | 2145 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
| 2146 | P: Kristoffer Ericson |
| 2147 | M: kristoffer.ericson@gmail.com |
| 2148 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2149 | F: drivers/video/s1d13xxxfb.c |
| 2150 | F: include/video/s1d13xxxfb.h |
Kristoffer Ericson | d5ca900 | 2008-10-15 22:03:54 -0700 | [diff] [blame] | 2151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2152 | ETHEREXPRESS-16 NETWORK DRIVER |
| 2153 | P: Philip Blundell |
| 2154 | M: philb@gnu.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 2155 | L: netdev@vger.kernel.org |
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: drivers/net/eexpress.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2158 | |
| 2159 | ETHERNET BRIDGE |
| 2160 | P: Stephen Hemminger |
Stephen Hemminger | 65ebe63 | 2007-01-23 11:38:57 -0800 | [diff] [blame] | 2161 | M: shemminger@linux-foundation.org |
David Brownell | f318a63 | 2007-04-23 14:41:06 -0700 | [diff] [blame] | 2162 | L: bridge@lists.linux-foundation.org |
Adrian Bunk | 57c511d | 2008-06-03 16:00:01 -0700 | [diff] [blame] | 2163 | W: http://www.linux-foundation.org/en/Net:Bridge |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2164 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2165 | F: include/linux/netfilter_bridge/ |
| 2166 | F: net/bridge/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2167 | |
| 2168 | ETHERTEAM 16I DRIVER |
| 2169 | P: Mika Kuoppala |
| 2170 | M: miku@iki.fi |
| 2171 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2172 | F: drivers/net/eth16i.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2173 | |
| 2174 | EXT2 FILE SYSTEM |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2175 | L: linux-ext4@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2176 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2177 | F: Documentation/filesystems/ext2.txt |
| 2178 | F: fs/ext2/ |
| 2179 | F: include/linux/ext2* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2180 | |
| 2181 | EXT3 FILE SYSTEM |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2182 | P: Stephen Tweedie |
| 2183 | M: sct@redhat.com |
| 2184 | P: Andrew Morton |
| 2185 | M: akpm@linux-foundation.org |
| 2186 | P: Andreas Dilger |
| 2187 | M: adilger@sun.com |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2188 | L: linux-ext4@vger.kernel.org |
| 2189 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2190 | F: Documentation/filesystems/ext3.txt |
| 2191 | F: fs/ext3/ |
| 2192 | F: include/linux/ext3* |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2193 | |
| 2194 | EXT4 FILE SYSTEM |
Theodore Ts'o | 08a225f | 2008-10-06 20:58:09 -0400 | [diff] [blame] | 2195 | P: Theodore Ts'o |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2196 | M: tytso@mit.edu |
| 2197 | P: Andreas Dilger |
| 2198 | M: adilger@sun.com |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2199 | L: linux-ext4@vger.kernel.org |
Theodore Ts'o | 08a225f | 2008-10-06 20:58:09 -0400 | [diff] [blame] | 2200 | W: http://ext4.wiki.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2201 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2202 | F: Documentation/filesystems/ext4.txt |
| 2203 | F: fs/ext4/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2204 | |
Jean Delvare | e53004e | 2006-01-09 23:26:14 +0100 | [diff] [blame] | 2205 | F71805F HARDWARE MONITORING DRIVER |
| 2206 | P: Jean Delvare |
| 2207 | M: khali@linux-fr.org |
| 2208 | L: lm-sensors@lm-sensors.org |
| 2209 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2210 | F: Documentation/hwmon/f71805f |
| 2211 | F: drivers/hwmon/f71805f.c |
Jean Delvare | e53004e | 2006-01-09 23:26:14 +0100 | [diff] [blame] | 2212 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | FARSYNC SYNCHRONOUS DRIVER |
| 2214 | P: Kevin Curtis |
| 2215 | M: kevin.curtis@farsite.co.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2216 | W: http://www.farsite.co.uk/ |
| 2217 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2218 | F: drivers/net/wan/farsync.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2219 | |
Akinobu Mita | c5408b8 | 2007-04-23 14:41:20 -0700 | [diff] [blame] | 2220 | FAULT INJECTION SUPPORT |
| 2221 | P: Akinobu Mita |
| 2222 | M: akinobu.mita@gmail.com |
| 2223 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2224 | F: Documentation/fault-injection/ |
| 2225 | F: lib/fault-inject.c |
Akinobu Mita | c5408b8 | 2007-04-23 14:41:20 -0700 | [diff] [blame] | 2226 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2227 | FILE LOCKING (flock() and fcntl()/lockf()) |
| 2228 | P: Matthew Wilcox |
| 2229 | M: matthew@wil.cx |
| 2230 | L: linux-fsdevel@vger.kernel.org |
| 2231 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2232 | F: include/linux/fcntl.h |
| 2233 | F: include/linux/fs.h |
| 2234 | F: fs/fcntl.c |
| 2235 | F: fs/locks.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2236 | |
| 2237 | FILESYSTEMS (VFS and infrastructure) |
| 2238 | P: Alexander Viro |
| 2239 | M: viro@zeniv.linux.org.uk |
| 2240 | L: linux-fsdevel@vger.kernel.org |
| 2241 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2242 | F: fs/* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2243 | |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 2244 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
| 2245 | P: Riku Voipio |
| 2246 | M: riku.vipio@iki.fi |
| 2247 | L: lm-sensors@lm-sensors.org |
| 2248 | S: Maintained |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 2249 | F: drivers/hwmon/f75375s.c |
| 2250 | F: include/linux/f75375s.h |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 2251 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2252 | FIREWIRE SUBSYSTEM |
| 2253 | P: Kristian Hoegsberg |
| 2254 | M: krh@redhat.com |
| 2255 | P: Stefan Richter |
| 2256 | M: stefanr@s5r6.in-berlin.de |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2257 | L: linux1394-devel@lists.sourceforge.net |
| 2258 | W: http://www.linux1394.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2259 | 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] | 2260 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2261 | F: drivers/firewire/ |
| 2262 | F: include/linux/firewire*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2263 | |
| 2264 | FIRMWARE LOADER (request_firmware) |
| 2265 | L: linux-kernel@vger.kernel.org |
| 2266 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2267 | F: Documentation/firmware_class/ |
| 2268 | F: drivers/base/firmware*.c |
| 2269 | F: include/linux/firmware.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2270 | |
| 2271 | FPU EMULATOR |
| 2272 | P: Bill Metzenthen |
Joe Perches | e769980 | 2009-04-07 21:12:18 -0700 | [diff] [blame] | 2273 | M: billm@melbpc.org.au |
| 2274 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2275 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2276 | F: arch/x86/math-emu/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2277 | |
| 2278 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) |
| 2279 | P: Mike McLagan |
| 2280 | M: mike.mclagan@linux.org |
| 2281 | L: netdev@vger.kernel.org |
| 2282 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2283 | F: drivers/net/wan/dlci.c |
| 2284 | F: drivers/net/wan/sdla.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2285 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2286 | FRAMEBUFFER LAYER |
| 2287 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 2288 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2289 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2290 | W: http://linux-fbdev.sourceforge.net/ |
| 2291 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2292 | F: Documentation/fb/ |
| 2293 | F: drivers/video/fb* |
| 2294 | F: include/linux/fb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2295 | |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 2296 | FREESCALE DMA DRIVER |
Zhang Wei | 76b0c78 | 2008-05-13 14:44:59 -0700 | [diff] [blame] | 2297 | P: Li Yang |
| 2298 | M: leoli@freescale.com |
| 2299 | P: Zhang Wei |
| 2300 | M: zw@zh-kernel.org |
Li Yang | 0899d63 | 2009-05-22 16:39:59 +0800 | [diff] [blame] | 2301 | L: linuxppc-dev@ozlabs.org |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 2302 | L: linux-kernel@vger.kernel.org |
| 2303 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2304 | F: drivers/dma/fsldma.* |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 2305 | |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 2306 | FREESCALE I2C CPM DRIVER |
| 2307 | P: Jochen Friedrich |
| 2308 | M: jochen@scram.de |
| 2309 | L: linuxppc-dev@ozlabs.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 2310 | L: linux-i2c@vger.kernel.org |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 2311 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2312 | F: drivers/i2c/busses/i2c-cpm.c |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 2313 | |
Sascha Hauer | 60e8c5a | 2008-12-16 11:44:06 +0100 | [diff] [blame] | 2314 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
| 2315 | P: Sascha Hauer |
| 2316 | M: kernel@pengutronix.de |
| 2317 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 2318 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 2319 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2320 | F: arch/arm/plat-mxc/include/mach/imxfb.h |
| 2321 | F: drivers/video/imxfb.c |
Sascha Hauer | 60e8c5a | 2008-12-16 11:44:06 +0100 | [diff] [blame] | 2322 | |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 2323 | FREESCALE SOC FS_ENET DRIVER |
| 2324 | P: Pantelis Antoniou |
| 2325 | M: pantelis.antoniou@gmail.com |
| 2326 | P: Vitaly Bordug |
| 2327 | M: vbordug@ru.mvista.com |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2328 | L: linuxppc-dev@ozlabs.org |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 2329 | L: netdev@vger.kernel.org |
| 2330 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2331 | F: drivers/net/fs_enet/ |
| 2332 | F: include/linux/fs_enet_pd.h |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 2333 | |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2334 | FREESCALE QUICC ENGINE LIBRARY |
| 2335 | P: Timur Tabi |
| 2336 | M: timur@freescale.com |
| 2337 | L: linuxppc-dev@ozlabs.org |
| 2338 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2339 | F: arch/powerpc/sysdev/qe_lib/ |
| 2340 | F: arch/powerpc/include/asm/*qe.h |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2341 | |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 2342 | FREESCALE HIGHSPEED USB DEVICE DRIVER |
| 2343 | P: Li Yang |
| 2344 | M: leoli@freescale.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 2345 | L: linux-usb@vger.kernel.org |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2346 | L: linuxppc-dev@ozlabs.org |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 2347 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2348 | F: drivers/usb/gadget/fsl_usb2_udc.c |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 2349 | |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 2350 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
| 2351 | P: Li Yang |
| 2352 | M: leoli@freescale.com |
| 2353 | L: netdev@vger.kernel.org |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2354 | L: linuxppc-dev@ozlabs.org |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 2355 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2356 | F: drivers/net/ucc_geth* |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 2357 | |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2358 | FREESCALE QUICC ENGINE UCC UART DRIVER |
| 2359 | P: Timur Tabi |
| 2360 | M: timur@freescale.com |
| 2361 | L: linuxppc-dev@ozlabs.org |
| 2362 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2363 | F: drivers/serial/ucc_uart.c |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2364 | |
| 2365 | FREESCALE SOC SOUND DRIVERS |
| 2366 | P: Timur Tabi |
| 2367 | M: timur@freescale.com |
| 2368 | L: alsa-devel@alsa-project.org |
| 2369 | L: linuxppc-dev@ozlabs.org |
| 2370 | S: Supported |
Joe Perches | 69aefce | 2009-04-09 10:39:22 -0700 | [diff] [blame] | 2371 | F: sound/soc/fsl/fsl* |
| 2372 | F: sound/soc/fsl/mpc8610_hpcd.c |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2374 | FREEVXFS FILESYSTEM |
| 2375 | P: Christoph Hellwig |
| 2376 | M: hch@infradead.org |
| 2377 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
| 2378 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2379 | F: fs/freevxfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2380 | |
Pavel Machek | 71038f5 | 2009-01-15 13:51:02 -0800 | [diff] [blame] | 2381 | FREEZER |
| 2382 | P: Pavel Machek |
Pavel Machek | b6e731d | 2009-05-30 00:58:41 +0200 | [diff] [blame] | 2383 | M: pavel@ucw.cz |
Pavel Machek | 71038f5 | 2009-01-15 13:51:02 -0800 | [diff] [blame] | 2384 | P: Rafael J. Wysocki |
| 2385 | M: rjw@sisk.pl |
| 2386 | L: linux-pm@lists.linux-foundation.org |
| 2387 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2388 | F: Documentation/power/freezing-of-tasks.txt |
| 2389 | F: include/linux/freezer.h |
| 2390 | F: kernel/freezer.c |
Pavel Machek | 71038f5 | 2009-01-15 13:51:02 -0800 | [diff] [blame] | 2391 | |
David Howells | a5432f5 | 2009-04-20 15:46:45 +0100 | [diff] [blame] | 2392 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
| 2393 | P: David Howells |
| 2394 | M: dhowells@redhat.com |
| 2395 | L: linux-cachefs@redhat.com |
| 2396 | S: Supported |
| 2397 | F: Documentation/filesystems/caching/ |
| 2398 | F: fs/fscache/ |
| 2399 | F: include/linux/fscache*.h |
| 2400 | |
Steven Rostedt | de3b69d | 2008-07-15 13:28:14 -0400 | [diff] [blame] | 2401 | FTRACE |
| 2402 | P: Steven Rostedt |
Steven Rostedt | 8e324c1 | 2008-11-19 15:36:43 -0800 | [diff] [blame] | 2403 | M: rostedt@goodmis.org |
Steven Rostedt | de3b69d | 2008-07-15 13:28:14 -0400 | [diff] [blame] | 2404 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2405 | F: Documentation/ftrace.txt |
| 2406 | F: arch/*/*/*/ftrace.h |
| 2407 | F: arch/*/kernel/ftrace.c |
| 2408 | F: include/*/ftrace.h |
| 2409 | F: kernel/trace/ |
Steven Rostedt | de3b69d | 2008-07-15 13:28:14 -0400 | [diff] [blame] | 2410 | |
David Howells | 5ab7ffe | 2007-04-10 15:10:45 +0100 | [diff] [blame] | 2411 | FUJITSU FR-V (FRV) PORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2412 | P: David Howells |
| 2413 | M: dhowells@redhat.com |
| 2414 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2415 | F: arch/frv/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2416 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 2417 | FUJITSU LAPTOP EXTRAS |
| 2418 | P: Jonathan Woithe |
| 2419 | M: jwoithe@physics.adelaide.edu.au |
| 2420 | L: linux-acpi@vger.kernel.org |
| 2421 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2422 | F: drivers/platform/x86/fujitsu-laptop.c |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 2423 | |
Miklos Szeredi | 04578f1 | 2005-09-09 13:10:22 -0700 | [diff] [blame] | 2424 | FUSE: FILESYSTEM IN USERSPACE |
| 2425 | P: Miklos Szeredi |
| 2426 | M: miklos@szeredi.hu |
| 2427 | L: fuse-devel@lists.sourceforge.net |
| 2428 | W: http://fuse.sourceforge.net/ |
| 2429 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2430 | F: fs/fuse/ |
| 2431 | F: include/linux/fuse.h |
Miklos Szeredi | 04578f1 | 2005-09-09 13:10:22 -0700 | [diff] [blame] | 2432 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2433 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
| 2434 | P: Rik Faith |
| 2435 | M: faith@cs.unc.edu |
| 2436 | L: linux-scsi@vger.kernel.org |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 2437 | S: Odd Fixes (e.g., new signatures) |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2438 | F: drivers/scsi/fdomain.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2439 | |
| 2440 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
| 2441 | P: Achim Leubner |
| 2442 | M: achim_leubner@adaptec.com |
| 2443 | L: linux-scsi@vger.kernel.org |
| 2444 | W: http://www.icp-vortex.com/ |
| 2445 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2446 | F: drivers/scsi/gdt* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2447 | |
Haavard Skinnemoen | 1c23af9 | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 2448 | GENERIC GPIO I2C DRIVER |
| 2449 | P: Haavard Skinnemoen |
| 2450 | M: hskinnemoen@atmel.com |
| 2451 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2452 | F: drivers/i2c/busses/i2c-gpio.c |
| 2453 | F: include/linux/i2c-gpio.h |
Haavard Skinnemoen | 1c23af9 | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 2454 | |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 2455 | GENERIC HDLC (WAN) DRIVERS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2456 | P: Krzysztof Halasa |
| 2457 | M: khc@pm.waw.pl |
| 2458 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
| 2459 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2460 | F: drivers/net/wan/c101.c |
| 2461 | F: drivers/net/wan/hd6457* |
| 2462 | F: drivers/net/wan/hdlc* |
| 2463 | F: drivers/net/wan/n2.c |
| 2464 | F: drivers/net/wan/pc300too.c |
| 2465 | F: drivers/net/wan/pci200syn.c |
| 2466 | F: drivers/net/wan/wanxl* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2467 | |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 2468 | GFS2 FILE SYSTEM |
| 2469 | P: Steven Whitehouse |
| 2470 | M: swhiteho@redhat.com |
David Teigland | a464418 | 2006-06-22 15:29:57 -0400 | [diff] [blame] | 2471 | L: cluster-devel@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 2472 | W: http://sources.redhat.com/cluster/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2473 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git |
| 2474 | 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] | 2475 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2476 | F: Documentation/filesystems/gfs2*.txt |
| 2477 | F: fs/gfs2/ |
| 2478 | F: include/linux/gfs2_ondisk.h |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 2479 | |
Hansjoerg Lipp | 0a34eb8 | 2006-03-26 01:38:28 -0800 | [diff] [blame] | 2480 | GIGASET ISDN DRIVERS |
| 2481 | P: Hansjoerg Lipp |
| 2482 | M: hjlipp@web.de |
| 2483 | P: Tilman Schmidt |
| 2484 | M: tilman@imap.cc |
| 2485 | L: gigaset307x-common@lists.sourceforge.net |
| 2486 | W: http://gigaset307x.sourceforge.net/ |
| 2487 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2488 | F: Documentation/isdn/README.gigaset |
| 2489 | F: drivers/isdn/gigaset/ |
| 2490 | F: include/linux/gigaset_dev.h |
Hansjoerg Lipp | 0a34eb8 | 2006-03-26 01:38:28 -0800 | [diff] [blame] | 2491 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2492 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
Frank Seidel | 211e3e0 | 2009-02-17 19:59:54 +0100 | [diff] [blame] | 2493 | P: Frank Seidel |
| 2494 | M: frank@f-seidel.de |
| 2495 | L: lm-sensors@lm-sensors.org |
| 2496 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2497 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2498 | F: drivers/hwmon/hdaps.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2499 | |
Michael Ellerman | c90bfeb | 2009-04-02 16:56:43 -0700 | [diff] [blame] | 2500 | HYPERVISOR VIRTUAL CONSOLE DRIVER |
| 2501 | L: linuxppc-dev@ozlabs.org |
| 2502 | L: linux-kernel@vger.kernel.org |
| 2503 | S: Odd Fixes |
| 2504 | F: drivers/char/hvc_* |
| 2505 | |
Jean-Francois Moine | e8deeae | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2506 | GSPCA FINEPIX SUBDRIVER |
| 2507 | P: Frank Zago |
| 2508 | M: frank@zago.net |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2509 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2510 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean-Francois Moine | e8deeae | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2511 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2512 | F: drivers/media/video/gspca/finepix.c |
Jean-Francois Moine | e8deeae | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2513 | |
| 2514 | GSPCA M5602 SUBDRIVER |
| 2515 | P: Erik Andren |
| 2516 | M: erik.andren@gmail.com |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2517 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2518 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean-Francois Moine | e8deeae | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2519 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2520 | F: drivers/media/video/gspca/m5602/ |
Jean-Francois Moine | e8deeae | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2521 | |
| 2522 | GSPCA PAC207 SONIXB SUBDRIVER |
| 2523 | P: Hans de Goede |
| 2524 | M: hdegoede@redhat.com |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2525 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2526 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean-Francois Moine | e8deeae | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2527 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2528 | F: drivers/media/video/gspca/pac207.c |
Jean-Francois Moine | e8deeae | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2529 | |
| 2530 | GSPCA T613 SUBDRIVER |
| 2531 | P: Leandro Costantino |
| 2532 | M: lcostantino@gmail.com |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2533 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2534 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean-Francois Moine | e8deeae | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2535 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2536 | F: drivers/media/video/gspca/t613.c |
Jean-Francois Moine | e8deeae | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2537 | |
| 2538 | GSPCA USB WEBCAM DRIVER |
| 2539 | P: Jean-Francois Moine |
| 2540 | M: moinejf@free.fr |
| 2541 | W: http://moinejf.free.fr |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2542 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2543 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean-Francois Moine | e8deeae | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2544 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2545 | F: drivers/media/video/gspca/ |
Jean-Francois Moine | e8deeae | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2546 | |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 2547 | HARDWARE MONITORING |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 2548 | L: lm-sensors@lm-sensors.org |
Jean Delvare | 595142e | 2006-12-06 20:39:36 -0800 | [diff] [blame] | 2549 | W: http://www.lm-sensors.org/ |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 2550 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2551 | F: drivers/hwmon/ |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 2552 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 2553 | HARDWARE RANDOM NUMBER GENERATOR CORE |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 2554 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2555 | F: Documentation/hw_random.txt |
| 2556 | F: drivers/char/hw_random/ |
| 2557 | F: include/linux/hw_random.h |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 2558 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2559 | HARMONY SOUND DRIVER |
| 2560 | P: Kyle McMartin |
Kyle McMartin | 42a5a8a | 2008-06-06 17:16:17 -0400 | [diff] [blame] | 2561 | M: kyle@mcmartin.ca |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 2562 | L: linux-parisc@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2563 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2564 | F: sound/parisc/harmony.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2565 | |
| 2566 | HAYES ESP SERIAL DRIVER |
| 2567 | P: Andrew J. Robinson |
| 2568 | M: arobinso@nyx.net |
| 2569 | L: linux-kernel@vger.kernel.org |
| 2570 | W: http://www.nyx.net/~arobinso |
| 2571 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2572 | F: Documentation/serial/hayes-esp.txt |
| 2573 | F: drivers/char/esp.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2574 | |
| 2575 | HEWLETT-PACKARD SMART2 RAID DRIVER |
| 2576 | P: Chirag Kantharia |
| 2577 | M: chirag.kantharia@hp.com |
| 2578 | L: iss_storagedev@hp.com |
| 2579 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2580 | F: Documentation/blockdev/cpqarray.txt |
| 2581 | F: drivers/block/cpqarray.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2582 | |
| 2583 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
| 2584 | P: Mike Miller |
| 2585 | M: mike.miller@hp.com |
| 2586 | L: iss_storagedev@hp.com |
| 2587 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2588 | F: Documentation/blockdev/cciss.txt |
| 2589 | F: drivers/block/cciss* |
| 2590 | F: include/linux/cciss_ioctl.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2591 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2592 | HFS FILESYSTEM |
| 2593 | P: Roman Zippel |
| 2594 | M: zippel@linux-m68k.org |
| 2595 | L: linux-kernel@vger.kernel.org |
| 2596 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2597 | F: Documentation/filesystems/hfs.txt |
| 2598 | F: fs/hfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2599 | |
| 2600 | HGA FRAMEBUFFER DRIVER |
| 2601 | P: Ferenc Bakonyi |
| 2602 | M: fero@drama.obuda.kando.hu |
| 2603 | L: linux-nvidia@lists.surfsouth.com |
| 2604 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml |
| 2605 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2606 | F: drivers/video/hgafb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2607 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 2608 | HIBERNATION (aka Software Suspend, aka swsusp) |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2609 | P: Pavel Machek |
Pavel Machek | ef35ce2 | 2009-02-18 14:48:16 -0800 | [diff] [blame] | 2610 | M: pavel@ucw.cz |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2611 | P: Rafael J. Wysocki |
| 2612 | M: rjw@sisk.pl |
| 2613 | L: linux-pm@lists.linux-foundation.org |
| 2614 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2615 | F: arch/x86/power/ |
| 2616 | F: drivers/base/power/ |
| 2617 | F: kernel/power/ |
| 2618 | F: include/linux/suspend.h |
| 2619 | F: include/linux/freezer.h |
| 2620 | F: include/linux/pm.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2621 | F: arch/*/include/asm/suspend*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2622 | |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 2623 | HID CORE LAYER |
| 2624 | P: Jiri Kosina |
| 2625 | M: jkosina@suse.cz |
Dmitry Torokhov | eb76c5c | 2007-11-02 09:07:33 -0400 | [diff] [blame] | 2626 | L: linux-input@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2627 | 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] | 2628 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2629 | F: drivers/hid/ |
| 2630 | F: include/linux/hid* |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 2631 | |
Ingo Molnar | 38bed54 | 2007-02-22 09:09:34 +0100 | [diff] [blame] | 2632 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
| 2633 | P: Thomas Gleixner |
| 2634 | M: tglx@linutronix.de |
| 2635 | L: linux-kernel@vger.kernel.org |
| 2636 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2637 | F: Documentation/timers/ |
| 2638 | F: kernel/hrtimer.c |
| 2639 | F: include/linux/hrtimer.h |
Ingo Molnar | 38bed54 | 2007-02-22 09:09:34 +0100 | [diff] [blame] | 2640 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2641 | HIGH-SPEED SCC DRIVER FOR AX.25 |
| 2642 | P: Klaus Kudielka |
| 2643 | M: klaus.kudielka@ieee.org |
| 2644 | L: linux-hams@vger.kernel.org |
| 2645 | W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/ |
| 2646 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2647 | F: drivers/net/hamradio/dmascc.c |
| 2648 | F: drivers/net/hamradio/scc.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2649 | |
HighPoint Linux Team | ede1e6f | 2006-05-16 14:38:09 +0800 | [diff] [blame] | 2650 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
| 2651 | P: HighPoint Linux Team |
| 2652 | M: linux@highpoint-tech.com |
| 2653 | W: http://www.highpoint-tech.com |
| 2654 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2655 | F: Documentation/scsi/hptiop.txt |
| 2656 | F: drivers/scsi/hptiop.c |
HighPoint Linux Team | ede1e6f | 2006-05-16 14:38:09 +0800 | [diff] [blame] | 2657 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2658 | HIPPI |
| 2659 | P: Jes Sorensen |
| 2660 | M: jes@trained-monkey.org |
| 2661 | L: linux-hippi@sunsite.dk |
| 2662 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2663 | F: include/linux/hippidevice.h |
| 2664 | F: include/linux/if_hippi.h |
| 2665 | F: net/802/hippi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2666 | |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 2667 | HOST AP DRIVER |
| 2668 | P: Jouni Malinen |
Jouni Malinen | 85d32e7 | 2007-03-24 17:15:30 -0700 | [diff] [blame] | 2669 | M: j@w1.fi |
| 2670 | L: hostap@shmoo.com (subscribers-only) |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 2671 | L: linux-wireless@vger.kernel.org |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 2672 | W: http://hostap.epitest.fi/ |
| 2673 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2674 | F: drivers/net/wireless/hostap/ |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 2675 | |
Carlos Corbacho | dd8cd77 | 2008-02-05 02:17:15 +0000 | [diff] [blame] | 2676 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
| 2677 | P: Carlos Corbacho |
| 2678 | M: carlos@strangeworlds.co.uk |
| 2679 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2680 | F: drivers/platform/x86/tc1100-wmi.c |
Carlos Corbacho | dd8cd77 | 2008-02-05 02:17:15 +0000 | [diff] [blame] | 2681 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2682 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
| 2683 | P: Jaroslav Kysela |
| 2684 | M: perex@perex.cz |
| 2685 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2686 | F: drivers/net/hp100.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2687 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2688 | HPET: High Precision Event Timers driver |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2689 | P: Clemens Ladisch |
| 2690 | M: clemens@ladisch.de |
| 2691 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2692 | F: Documentation/timers/hpet.txt |
| 2693 | F: drivers/char/hpet.c |
| 2694 | F: include/linux/hpet.h |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2695 | |
| 2696 | HPET: i386 |
| 2697 | P: Venkatesh Pallipadi (Venki) |
| 2698 | M: venkatesh.pallipadi@intel.com |
| 2699 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2700 | F: arch/x86/kernel/hpet.c |
| 2701 | F: arch/x86/include/asm/hpet.h |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2702 | |
| 2703 | HPET: x86_64 |
Andi Kleen | 8bd0983 | 2007-10-13 01:01:08 +0200 | [diff] [blame] | 2704 | P: Vojtech Pavlik |
| 2705 | M: vojtech@suse.cz |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2706 | S: Maintained |
| 2707 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2708 | HPET: ACPI |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2709 | P: Bob Picco |
| 2710 | M: bob.picco@hp.com |
| 2711 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2712 | F: drivers/char/hpet.c |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2713 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2714 | HPFS FILESYSTEM |
| 2715 | P: Mikulas Patocka |
| 2716 | M: mikulas@artax.karlin.mff.cuni.cz |
| 2717 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
| 2718 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2719 | F: fs/hpfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2720 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2721 | HSO 3G MODEM DRIVER |
Jan Dumon | 510f32b | 2009-04-13 14:39:34 -0700 | [diff] [blame] | 2722 | P: Jan Dumon |
| 2723 | M: j.dumon@option.com |
Denis Joseph Barrow | 11cd29b | 2009-01-02 13:50:36 +0000 | [diff] [blame] | 2724 | W: http://www.pharscape.org |
| 2725 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2726 | F: drivers/net/usb/hso.c |
Denis Joseph Barrow | 11cd29b | 2009-01-02 13:50:36 +0000 | [diff] [blame] | 2727 | |
Pau Oliva Fora | 5a18c34 | 2008-06-02 00:38:35 -0400 | [diff] [blame] | 2728 | HTCPEN TOUCHSCREEN DRIVER |
| 2729 | P: Pau Oliva Fora |
| 2730 | M: pof@eslack.org |
| 2731 | L: linux-input@vger.kernel.org |
| 2732 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2733 | F: drivers/input/touchscreen/htcpen.c |
Pau Oliva Fora | 5a18c34 | 2008-06-02 00:38:35 -0400 | [diff] [blame] | 2734 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2735 | HUGETLB FILESYSTEM |
| 2736 | P: William Irwin |
| 2737 | M: wli@holomorphy.com |
| 2738 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2739 | F: fs/hugetlbfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2740 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 2741 | I2C/SMBUS STUB DRIVER |
| 2742 | P: Mark M. Hoffman |
| 2743 | M: mhoffman@lightlink.com |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 2744 | L: linux-i2c@vger.kernel.org |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 2745 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2746 | F: drivers/i2c/busses/i2c-stub.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 2747 | |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 2748 | I2C SUBSYSTEM |
Jean Delvare | 710cf7e | 2008-05-18 20:49:40 +0200 | [diff] [blame] | 2749 | P: Jean Delvare (PC drivers, core) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2750 | M: khali@linux-fr.org |
Jean Delvare | 710cf7e | 2008-05-18 20:49:40 +0200 | [diff] [blame] | 2751 | P: Ben Dooks (embedded platforms) |
| 2752 | M: ben-linux@fluff.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 2753 | L: linux-i2c@vger.kernel.org |
Jean Delvare | a01064a | 2009-01-26 21:19:53 +0100 | [diff] [blame] | 2754 | W: http://i2c.wiki.kernel.org/ |
| 2755 | 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] | 2756 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2757 | F: Documentation/i2c/ |
| 2758 | F: drivers/i2c/ |
| 2759 | F: include/linux/i2c.h |
| 2760 | F: include/linux/i2c-dev.h |
| 2761 | F: include/linux/i2c-id.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2762 | |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 2763 | I2C-TINY-USB DRIVER |
| 2764 | P: Till Harbaum |
| 2765 | M: till@harbaum.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 2766 | L: linux-i2c@vger.kernel.org |
Joe Perches | 932d187 | 2009-04-07 21:10:58 -0700 | [diff] [blame] | 2767 | W: http://www.harbaum.org/till/i2c_tiny_usb |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 2768 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2769 | F: drivers/i2c/busses/i2c-tiny-usb.c |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 2770 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2771 | i386 BOOT CODE |
H. Peter Anvin | 7f1291f | 2007-07-11 12:18:26 -0700 | [diff] [blame] | 2772 | P: H. Peter Anvin |
| 2773 | M: hpa@zytor.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2774 | L: Linux-Kernel@vger.kernel.org |
| 2775 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2776 | F: arch/x86/boot/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2777 | |
| 2778 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2779 | P: H. Peter Anvin |
| 2780 | M: hpa@zytor.com |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2781 | 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] | 2782 | S: Maintained |
| 2783 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2784 | IA64 (Itanium) PLATFORM |
| 2785 | P: Tony Luck |
| 2786 | M: tony.luck@intel.com |
| 2787 | L: linux-ia64@vger.kernel.org |
| 2788 | W: http://www.ia64-linux.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2789 | 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] | 2790 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2791 | F: arch/ia64/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2792 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2793 | IBM MCA SCSI SUBSYSTEM DRIVER |
| 2794 | P: Michael Lang |
| 2795 | M: langa2@kph.uni-mainz.de |
| 2796 | W: http://www.uni-mainz.de/~langm000/linux.html |
| 2797 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2798 | F: drivers/scsi/ibmmca.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2799 | |
| 2800 | IBM Power Linux RAID adapter |
| 2801 | P: Brian King |
| 2802 | M: brking@us.ibm.com |
| 2803 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2804 | F: drivers/scsi/ipr.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2805 | |
| 2806 | IBM ServeRAID RAID DRIVER |
| 2807 | P: Jack Hammer |
| 2808 | P: Dave Jeffery |
| 2809 | M: ipslinux@adaptec.com |
| 2810 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 2811 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2812 | F: drivers/scsi/ips.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2813 | |
Bartlomiej Zolnierkiewicz | 1e7106f | 2007-01-27 13:46:14 +0100 | [diff] [blame] | 2814 | IDE SUBSYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2815 | P: Bartlomiej Zolnierkiewicz |
Bartlomiej Zolnierkiewicz | 1e7106f | 2007-01-27 13:46:14 +0100 | [diff] [blame] | 2816 | M: bzolnier@gmail.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2817 | L: linux-ide@vger.kernel.org |
Bartlomiej Zolnierkiewicz | b930f96 | 2009-04-23 22:53:45 +0200 | [diff] [blame] | 2818 | 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] | 2819 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2820 | F: Documentation/ide/ |
| 2821 | F: drivers/ide/ |
| 2822 | F: include/linux/ide.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2823 | |
Bartlomiej Zolnierkiewicz | 0f861e8 | 2009-03-31 20:15:31 +0200 | [diff] [blame] | 2824 | IDE/ATAPI DRIVERS |
Borislav Petkov | c404c19 | 2007-12-24 15:23:44 +0100 | [diff] [blame] | 2825 | P: Borislav Petkov |
Borislav Petkov | ef70916 | 2008-02-19 01:41:25 +0100 | [diff] [blame] | 2826 | M: petkovbb@gmail.com |
Jens Axboe | 9c5b0ce | 2007-01-03 18:15:20 +0100 | [diff] [blame] | 2827 | L: linux-ide@vger.kernel.org |
Borislav Petkov | c404c19 | 2007-12-24 15:23:44 +0100 | [diff] [blame] | 2828 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2829 | F: Documentation/cdrom/ide-cd |
| 2830 | F: drivers/ide/ide-cd* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2831 | |
Andy Henroid | 27471fd | 2008-10-09 11:45:22 -0700 | [diff] [blame] | 2832 | IDLE-I7300 |
| 2833 | P: Andy Henroid |
| 2834 | M: andrew.d.henroid@intel.com |
| 2835 | L: linux-pm@lists.linux-foundation.org |
| 2836 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2837 | F: drivers/idle/i7300_idle.c |
Andy Henroid | 27471fd | 2008-10-09 11:45:22 -0700 | [diff] [blame] | 2838 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2839 | IEEE 1394 SUBSYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2840 | P: Ben Collins |
Stefan Richter | f51a5a9 | 2007-04-23 14:41:10 -0700 | [diff] [blame] | 2841 | M: ben.collins@ubuntu.com |
Stefan Richter | 87730d0 | 2006-09-16 12:24:00 +0200 | [diff] [blame] | 2842 | P: Stefan Richter |
| 2843 | M: stefanr@s5r6.in-berlin.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2844 | L: linux1394-devel@lists.sourceforge.net |
| 2845 | W: http://www.linux1394.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2846 | 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] | 2847 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2848 | F: drivers/ieee1394/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2849 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2850 | IEEE 1394 RAW I/O DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2851 | P: Dan Dennedy |
| 2852 | M: dan@dennedy.org |
Stefan Richter | f51a5a9 | 2007-04-23 14:41:10 -0700 | [diff] [blame] | 2853 | P: Stefan Richter |
| 2854 | M: stefanr@s5r6.in-berlin.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2855 | L: linux1394-devel@lists.sourceforge.net |
Jody McIntyre | 105d7b3 | 2005-09-30 11:59:04 -0700 | [diff] [blame] | 2856 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2857 | F: drivers/ieee1394/raw1394* |
Jody McIntyre | 105d7b3 | 2005-09-30 11:59:04 -0700 | [diff] [blame] | 2858 | |
Sergey Lapin | 02cf228 | 2009-06-08 12:18:50 +0000 | [diff] [blame] | 2859 | IEEE 802.15.4 SUBSYSTEM |
| 2860 | P: Dmitry Eremin-Solenikov |
| 2861 | M: dbaryshkov@gmail.com |
| 2862 | P: Sergey Lapin |
| 2863 | M: slapin@ossfans.org |
| 2864 | L: linux-zigbee-devel@lists.sourceforge.net |
| 2865 | W: http://apps.sourceforge.net/trac/linux-zigbee |
| 2866 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lumag/lowpan.git |
| 2867 | S: Maintained |
| 2868 | F: net/ieee802154/ |
| 2869 | F: drivers/ieee801254/ |
| 2870 | |
Mimi Zohar | aa7168f | 2009-02-04 09:07:03 -0500 | [diff] [blame] | 2871 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
| 2872 | P: Mimi Zohar |
| 2873 | M: zohar@us.ibm.com |
| 2874 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2875 | F: security/integrity/ima/ |
Mimi Zohar | aa7168f | 2009-02-04 09:07:03 -0500 | [diff] [blame] | 2876 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2877 | IMS TWINTURBO FRAMEBUFFER DRIVER |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2878 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Paul Mundt | 843393d | 2007-11-19 13:11:04 +0900 | [diff] [blame] | 2879 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2880 | F: drivers/video/imsttfb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2881 | |
| 2882 | INFINIBAND SUBSYSTEM |
| 2883 | P: Roland Dreier |
Roland Dreier | 21c121c | 2005-06-27 14:36:47 -0700 | [diff] [blame] | 2884 | M: rolandd@cisco.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2885 | P: Sean Hefty |
Sean Hefty | ed96f2470 | 2008-01-02 12:00:24 -0800 | [diff] [blame] | 2886 | M: sean.hefty@intel.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2887 | P: Hal Rosenstock |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 2888 | M: hal.rosenstock@gmail.com |
Randy Dunlap | 40b0bb1 | 2009-02-04 15:12:13 -0800 | [diff] [blame] | 2889 | L: general@lists.openfabrics.org (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2890 | W: http://www.openib.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2891 | 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] | 2892 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2893 | F: Documentation/infiniband/ |
| 2894 | F: drivers/infiniband/ |
| 2895 | F: include/linux/if_infiniband.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2896 | |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 2897 | INOTIFY |
Cal Peake | 18b36c7 | 2006-12-12 20:18:16 +0100 | [diff] [blame] | 2898 | P: John McCutchan |
John McCutchan | 52af894 | 2008-12-17 17:43:02 -0800 | [diff] [blame] | 2899 | M: john@johnmccutchan.com |
Cal Peake | 18b36c7 | 2006-12-12 20:18:16 +0100 | [diff] [blame] | 2900 | P: Robert Love |
John McCutchan | 52af894 | 2008-12-17 17:43:02 -0800 | [diff] [blame] | 2901 | M: rlove@rlove.org |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 2902 | P: Eric Paris |
| 2903 | M: eparis@parisplace.org |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 2904 | L: linux-kernel@vger.kernel.org |
| 2905 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2906 | F: Documentation/filesystems/inotify.txt |
| 2907 | F: fs/notify/inotify/ |
| 2908 | F: include/linux/inotify.h |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 2909 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2910 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
| 2911 | P: Dmitry Torokhov |
| 2912 | M: dmitry.torokhov@gmail.com |
| 2913 | M: dtor@mail.ru |
| 2914 | L: linux-input@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2915 | 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] | 2916 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2917 | F: drivers/input/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2918 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 2919 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2920 | P: Sylvain Meyer |
| 2921 | M: sylvain.meyer@worldonline.fr |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2922 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2923 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2924 | F: Documentation/fb/intelfb.txt |
| 2925 | F: drivers/video/intelfb/ |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 2926 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2927 | INTEL 810/815 FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2928 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 2929 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2930 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2931 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2932 | F: drivers/video/i810/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2933 | |
Thomas, Sujith | f4a9bc4 | 2008-11-05 16:15:31 +0530 | [diff] [blame] | 2934 | INTEL MENLOW THERMAL DRIVER |
| 2935 | P: Sujith Thomas |
| 2936 | M: sujith.thomas@intel.com |
| 2937 | L: linux-acpi@vger.kernel.org |
| 2938 | W: http://www.lesswatts.org/projects/acpi/ |
| 2939 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2940 | F: drivers/platform/x86/intel_menlow.c |
Thomas, Sujith | f4a9bc4 | 2008-11-05 16:15:31 +0530 | [diff] [blame] | 2941 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2942 | INTEL IA32 MICROCODE UPDATE SUPPORT |
| 2943 | P: Tigran Aivazian |
Tigran Aivazian | b5b9df6 | 2006-11-08 17:44:46 -0800 | [diff] [blame] | 2944 | M: tigran@aivazian.fsnet.co.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2945 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2946 | F: arch/x86/kernel/microcode_core.c |
| 2947 | F: arch/x86/kernel/microcode_intel.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2948 | |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 2949 | INTEL I/OAT DMA DRIVER |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 2950 | P: Maciej Sosnowski |
| 2951 | M: maciej.sosnowski@intel.com |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 2952 | L: linux-kernel@vger.kernel.org |
| 2953 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2954 | F: drivers/dma/ioat* |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 2955 | |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 2956 | INTEL IOMMU (VT-d) |
| 2957 | P: David Woodhouse |
| 2958 | M: dwmw2@infradead.org |
| 2959 | L: iommu@lists.linux-foundation.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2960 | T: git git://git.infradead.org/iommu-2.6.git |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 2961 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2962 | F: drivers/pci/intel-iommu.c |
| 2963 | F: include/linux/intel-iommu.h |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 2964 | |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 2965 | INTEL IOP-ADMA DMA DRIVER |
| 2966 | P: Dan Williams |
| 2967 | M: dan.j.williams@intel.com |
| 2968 | L: linux-kernel@vger.kernel.org |
| 2969 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2970 | F: drivers/dma/iop-adma.c |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 2971 | |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 2972 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
| 2973 | P: Krzysztof Halasa |
| 2974 | M: khc@pm.waw.pl |
| 2975 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2976 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
| 2977 | F: arch/arm/mach-ixp4xx/include/mach/npe.h |
| 2978 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c |
| 2979 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c |
| 2980 | F: drivers/net/arm/ixp4xx_eth.c |
| 2981 | F: drivers/net/wan/ixp4xx_hss.c |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 2982 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 2983 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
| 2984 | P: Deepak Saxena |
| 2985 | M: dsaxena@plexity.net |
| 2986 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2987 | F: drivers/char/hw_random/ixp4xx-rng.c |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 2988 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 2989 | INTEL IXP2000 ETHERNET DRIVER |
| 2990 | P: Lennert Buytenhek |
| 2991 | M: kernel@wantstofly.org |
| 2992 | L: netdev@vger.kernel.org |
| 2993 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2994 | F: drivers/net/ixp2000/ |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 2995 | |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 2996 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe) |
Jesse Brandeburg | add1878 | 2006-03-14 14:52:13 -0800 | [diff] [blame] | 2997 | P: Jeff Kirsher |
| 2998 | M: jeffrey.t.kirsher@intel.com |
Auke Kok | e0164af | 2008-05-07 13:42:33 -0700 | [diff] [blame] | 2999 | P: Jesse Brandeburg |
| 3000 | M: jesse.brandeburg@intel.com |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 3001 | P: Bruce Allan |
| 3002 | M: bruce.w.allan@intel.com |
Jeff Kirsher | ae7b648 | 2008-06-11 15:15:53 -0700 | [diff] [blame] | 3003 | P: PJ Waskiewicz |
| 3004 | M: peter.p.waskiewicz.jr@intel.com |
Auke Kok | 2042465 | 2008-01-07 21:47:25 -0800 | [diff] [blame] | 3005 | P: John Ronciak |
| 3006 | M: john.ronciak@intel.com |
Auke Kok | dcd01fa | 2007-03-06 08:58:06 -0800 | [diff] [blame] | 3007 | L: e1000-devel@lists.sourceforge.net |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 3008 | W: http://e1000.sourceforge.net/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3009 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3010 | F: drivers/net/e100.c |
| 3011 | F: drivers/net/e1000/ |
| 3012 | F: drivers/net/e1000e/ |
| 3013 | F: drivers/net/igb/ |
| 3014 | F: drivers/net/ixgb/ |
| 3015 | F: drivers/net/ixgbe/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3016 | |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3017 | INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 3018 | P: Zhu Yi |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3019 | M: yi.zhu@intel.com |
| 3020 | P: James Ketrenos |
| 3021 | M: jketreno@linux.intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 3022 | P: Reinette Chatre |
| 3023 | M: reinette.chatre@intel.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 3024 | L: linux-wireless@vger.kernel.org |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 3025 | L: ipw2100-devel@lists.sourceforge.net |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 3026 | W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3027 | W: http://ipw2100.sourceforge.net |
| 3028 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3029 | F: Documentation/networking/README.ipw2100 |
| 3030 | F: drivers/net/wireless/ipw2x00/ipw2100.* |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3031 | |
| 3032 | INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 3033 | P: Zhu Yi |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3034 | M: yi.zhu@intel.com |
| 3035 | P: James Ketrenos |
| 3036 | M: jketreno@linux.intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 3037 | P: Reinette Chatre |
| 3038 | M: reinette.chatre@intel.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 3039 | L: linux-wireless@vger.kernel.org |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 3040 | L: ipw2100-devel@lists.sourceforge.net |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 3041 | W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3042 | W: http://ipw2200.sourceforge.net |
| 3043 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3044 | F: Documentation/networking/README.ipw2200 |
| 3045 | F: drivers/net/wireless/ipw2x00/ipw2200.* |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3046 | |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 3047 | INTEL WIRELESS WIMAX CONNECTION 2400 |
| 3048 | P: Inaky Perez-Gonzalez |
| 3049 | M: inaky.perez-gonzalez@intel.com |
| 3050 | M: linux-wimax@intel.com |
| 3051 | L: wimax@linuxwimax.org |
| 3052 | S: Supported |
| 3053 | W: http://linuxwimax.org |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3054 | F: Documentation/wimax/README.i2400m |
| 3055 | F: drivers/net/wimax/i2400m/ |
| 3056 | F: include/linux/wimax/i2400m.h |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 3057 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3058 | INTEL WIRELESS WIFI LINK (iwlwifi) |
| 3059 | P: Zhu Yi |
| 3060 | M: yi.zhu@intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 3061 | P: Reinette Chatre |
| 3062 | M: reinette.chatre@intel.com |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3063 | L: linux-wireless@vger.kernel.org |
| 3064 | L: ipw3945-devel@lists.sourceforge.net |
| 3065 | W: http://intellinuxwireless.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3066 | 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] | 3067 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3068 | F: drivers/net/wireless/iwlwifi/ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3069 | |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 3070 | IOC3 ETHERNET DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3071 | P: Ralf Baechle |
| 3072 | M: ralf@linux-mips.org |
| 3073 | L: linux-mips@linux-mips.org |
| 3074 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3075 | F: drivers/net/ioc3-eth.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3076 | |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 3077 | IOC3 SERIAL DRIVER |
| 3078 | P: Pat Gefre |
| 3079 | M: pfg@sgi.com |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 3080 | L: linux-mips@linux-mips.org |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 3081 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3082 | F: drivers/serial/ioc3_serial.c |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 3083 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 3084 | IP MASQUERADING |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3085 | P: Juanjo Ciarlante |
| 3086 | M: jjciarla@raiz.uncu.edu.ar |
| 3087 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3088 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3089 | |
Francois Romieu | 1202d6f | 2007-09-17 17:13:55 -0700 | [diff] [blame] | 3090 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
| 3091 | P: Francois Romieu |
| 3092 | M: romieu@fr.zoreil.com |
| 3093 | P: Sorbica Shieh |
| 3094 | M: sorbica@icplus.com.tw |
| 3095 | P: Jesse Huang |
| 3096 | M: jesse@icplus.com.tw |
| 3097 | L: netdev@vger.kernel.org |
| 3098 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3099 | F: drivers/net/ipg.c |
Francois Romieu | 1202d6f | 2007-09-17 17:13:55 -0700 | [diff] [blame] | 3100 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 3101 | IPATH DRIVER |
Arthur Jones | 18b8c8f | 2008-02-29 10:13:37 -0800 | [diff] [blame] | 3102 | P: Ralph Campbell |
Arthur Jones | f42b647 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 3103 | M: infinipath@qlogic.com |
| 3104 | L: general@lists.openfabrics.org |
| 3105 | T: git git://git.qlogic.com/ipath-linux-2.6 |
Bryan O'Sullivan | 77d8798 | 2006-03-29 15:23:39 -0800 | [diff] [blame] | 3106 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3107 | F: drivers/infiniband/hw/ipath/ |
Bryan O'Sullivan | 77d8798 | 2006-03-29 15:23:39 -0800 | [diff] [blame] | 3108 | |
Corey Minyard | 4409ebe | 2006-04-20 02:43:12 -0700 | [diff] [blame] | 3109 | IPMI SUBSYSTEM |
| 3110 | P: Corey Minyard |
| 3111 | M: minyard@acm.org |
| 3112 | L: openipmi-developer@lists.sourceforge.net |
| 3113 | W: http://openipmi.sourceforge.net/ |
| 3114 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3115 | F: Documentation/IPMI.txt |
| 3116 | F: drivers/char/ipmi/ |
| 3117 | F: include/linux/ipmi* |
Corey Minyard | 4409ebe | 2006-04-20 02:43:12 -0700 | [diff] [blame] | 3118 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3119 | IPS SCSI RAID DRIVER |
| 3120 | P: Adaptec OEM Raid Solutions |
| 3121 | M: aacraid@adaptec.com |
| 3122 | L: linux-scsi@vger.kernel.org |
| 3123 | W: http://www.adaptec.com/ |
| 3124 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3125 | F: drivers/scsi/ips* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3126 | |
| 3127 | IPVS |
| 3128 | P: Wensong Zhang |
| 3129 | M: wensong@linux-vs.org |
| 3130 | P: Simon Horman |
| 3131 | M: horms@verge.net.au |
| 3132 | P: Julian Anastasov |
| 3133 | M: ja@ssi.bg |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 3134 | L: netdev@vger.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3135 | L: lvs-devel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3136 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3137 | F: Documentation/networking/ipvs-sysctl.txt |
| 3138 | F: net/netfilter/ipvs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3139 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 3140 | IPWIRELESS DRIVER |
David Sterba | 099dc4f | 2008-02-07 10:57:12 +0100 | [diff] [blame] | 3141 | P: Jiri Kosina |
| 3142 | M: jkosina@suse.cz |
| 3143 | P: David Sterba |
| 3144 | M: dsterba@suse.cz |
| 3145 | S: Maintained |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3146 | 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] | 3147 | F: drivers/char/pcmcia/ipwireless/ |
David Sterba | 099dc4f | 2008-02-07 10:57:12 +0100 | [diff] [blame] | 3148 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3149 | IPX NETWORK LAYER |
| 3150 | P: Arnaldo Carvalho de Melo |
| 3151 | M: acme@ghostprotocols.net |
| 3152 | L: netdev@vger.kernel.org |
| 3153 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3154 | F: include/linux/ipx.h |
| 3155 | F: include/net/ipx.h |
| 3156 | F: net/ipx/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3158 | IRDA SUBSYSTEM |
Samuel Ortiz | f353976 | 2006-05-09 15:24:49 -0700 | [diff] [blame] | 3159 | P: Samuel Ortiz |
| 3160 | M: samuel@sortiz.org |
Olaf Hering | a2ac953 | 2005-07-12 13:58:35 -0700 | [diff] [blame] | 3161 | L: irda-users@lists.sourceforge.net (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3162 | W: http://irda.sourceforge.net/ |
Samuel Ortiz | f353976 | 2006-05-09 15:24:49 -0700 | [diff] [blame] | 3163 | S: Maintained |
Samuel Ortiz | e005797 | 2009-06-05 16:12:00 +0200 | [diff] [blame] | 3164 | 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] | 3165 | F: Documentation/networking/irda.txt |
| 3166 | F: drivers/net/irda/ |
| 3167 | F: include/net/irda/ |
| 3168 | F: net/irda/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3169 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3170 | ISAPNP |
| 3171 | P: Jaroslav Kysela |
| 3172 | M: perex@perex.cz |
| 3173 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3174 | F: Documentation/isapnp.txt |
| 3175 | F: drivers/pnp/isapnp/ |
| 3176 | F: include/linux/isapnp.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3177 | |
Mike Christie | 14816b1 | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 3178 | ISCSI |
| 3179 | P: Mike Christie |
| 3180 | M: michaelc@cs.wisc.edu |
| 3181 | L: open-iscsi@googlegroups.com |
| 3182 | W: www.open-iscsi.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3183 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
Mike Christie | 14816b1 | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 3184 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3185 | F: drivers/scsi/*iscsi* |
| 3186 | F: include/scsi/*iscsi* |
Mike Christie | 14816b1 | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 3187 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3188 | ISDN SUBSYSTEM |
| 3189 | P: Karsten Keil |
Karsten Keil | fbfd8b5 | 2009-03-01 18:04:53 +0100 | [diff] [blame] | 3190 | M: isdn@linux-pingi.de |
Paul Bolle | d5d5227 | 2008-04-15 00:40:48 -0700 | [diff] [blame] | 3191 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3192 | W: http://www.isdn4linux.de |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3193 | 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] | 3194 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3195 | F: Documentation/isdn/ |
| 3196 | F: drivers/isdn/ |
| 3197 | F: include/linux/isdn.h |
| 3198 | F: include/linux/isdn/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3199 | |
| 3200 | ISDN SUBSYSTEM (Eicon active card driver) |
| 3201 | P: Armin Schindler |
| 3202 | M: mac@melware.de |
Paul Bolle | d5d5227 | 2008-04-15 00:40:48 -0700 | [diff] [blame] | 3203 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3204 | W: http://www.melware.de |
| 3205 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3206 | F: drivers/isdn/hardware/eicon/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3207 | |
Hans Verkuil | 91821ff | 2007-12-02 09:35:33 -0300 | [diff] [blame] | 3208 | IVTV VIDEO4LINUX DRIVER |
| 3209 | P: Hans Verkuil |
| 3210 | M: hverkuil@xs4all.nl |
| 3211 | L: ivtv-devel@ivtvdriver.org |
| 3212 | L: ivtv-users@ivtvdriver.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 3213 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3214 | 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] | 3215 | W: http://www.ivtvdriver.org |
| 3216 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3217 | F: Documentation/video4linux/*.ivtv |
| 3218 | F: drivers/media/video/ivtv/ |
| 3219 | F: include/linux/ivtv* |
Hans Verkuil | 91821ff | 2007-12-02 09:35:33 -0300 | [diff] [blame] | 3220 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3221 | JFS FILESYSTEM |
| 3222 | P: Dave Kleikamp |
| 3223 | M: shaggy@austin.ibm.com |
| 3224 | L: jfs-discussion@lists.sourceforge.net |
| 3225 | W: http://jfs.sourceforge.net/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3226 | 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] | 3227 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3228 | F: Documentation/filesystems/jfs.txt |
| 3229 | F: fs/jfs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3230 | |
Guo-Fu Tseng | 9525223 | 2008-09-16 01:00:11 +0800 | [diff] [blame] | 3231 | JME NETWORK DRIVER |
| 3232 | P: Guo-Fu Tseng |
| 3233 | M: cooldavid@cooldavid.org |
| 3234 | L: netdev@vger.kernel.org |
| 3235 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3236 | F: drivers/net/jme.* |
Guo-Fu Tseng | 9525223 | 2008-09-16 01:00:11 +0800 | [diff] [blame] | 3237 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3238 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
| 3239 | P: David Woodhouse |
| 3240 | M: dwmw2@infradead.org |
David Woodhouse | 6d85d06 | 2007-10-27 10:39:48 -0400 | [diff] [blame] | 3241 | L: linux-mtd@lists.infradead.org |
| 3242 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html |
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: fs/jffs2/ |
| 3245 | F: include/linux/jffs2.h |
| 3246 | F: include/mtd/jffs2-user.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3247 | |
Josh Triplett | de456d3 | 2006-07-30 03:04:00 -0700 | [diff] [blame] | 3248 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 3249 | P: Stephen Tweedie |
| 3250 | M: sct@redhat.com |
| 3251 | P: Andrew Morton |
| 3252 | M: akpm@linux-foundation.org |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 3253 | L: linux-ext4@vger.kernel.org |
Theodore Tso | ae0718f | 2006-05-20 15:00:13 -0700 | [diff] [blame] | 3254 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3255 | F: fs/jbd*/ |
| 3256 | F: include/linux/ext*jbd*.h |
| 3257 | F: include/linux/jbd*.h |
Theodore Tso | ae0718f | 2006-05-20 15:00:13 -0700 | [diff] [blame] | 3258 | |
Rudolf Marek | 4660cb3 | 2006-10-08 22:01:26 +0200 | [diff] [blame] | 3259 | K8TEMP HARDWARE MONITORING DRIVER |
| 3260 | P: Rudolf Marek |
| 3261 | M: r.marek@assembler.cz |
| 3262 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3263 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3264 | F: Documentation/hwmon/k8temp |
| 3265 | F: drivers/hwmon/k8temp.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3266 | |
| 3267 | KCONFIG |
| 3268 | P: Roman Zippel |
| 3269 | M: zippel@linux-m68k.org |
Sam Ravnborg | 347d12d | 2007-10-18 13:23:33 +0200 | [diff] [blame] | 3270 | L: linux-kbuild@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3271 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3272 | F: Documentation/kbuild/kconfig-language.txt |
| 3273 | F: scripts/kconfig/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3274 | |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 3275 | KDUMP |
| 3276 | P: Vivek Goyal |
Vivek Goyal | 4200b66 | 2007-12-01 12:16:30 -0800 | [diff] [blame] | 3277 | M: vgoyal@redhat.com |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 3278 | P: Haren Myneni |
| 3279 | M: hbabu@us.ibm.com |
Simon Horman | 3463399 | 2007-05-08 00:31:40 -0700 | [diff] [blame] | 3280 | L: kexec@lists.infradead.org |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 3281 | L: linux-kernel@vger.kernel.org |
| 3282 | W: http://lse.sourceforge.net/kdump/ |
| 3283 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 3284 | F: Documentation/kdump/ |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 3285 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3286 | KERNEL AUTOMOUNTER (AUTOFS) |
| 3287 | P: H. Peter Anvin |
| 3288 | M: hpa@zytor.com |
| 3289 | L: autofs@linux.kernel.org |
| 3290 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3291 | F: fs/autofs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3292 | |
| 3293 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
| 3294 | P: Ian Kent |
| 3295 | M: raven@themaw.net |
| 3296 | L: autofs@linux.kernel.org |
| 3297 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3298 | F: fs/autofs4/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3299 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 3300 | KERNEL BUILD |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3301 | P: Sam Ravnborg |
| 3302 | M: sam@ravnborg.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3303 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git |
| 3304 | 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] | 3305 | L: linux-kbuild@vger.kernel.org |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 3306 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3307 | F: Documentation/kbuild/ |
| 3308 | F: Makefile |
| 3309 | F: scripts/Makefile.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3310 | |
| 3311 | KERNEL JANITORS |
| 3312 | P: Several |
maximilian attems | c3000e0 | 2007-07-06 11:17:32 -0700 | [diff] [blame] | 3313 | L: kernel-janitors@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3314 | W: http://www.kerneljanitors.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3315 | S: Maintained |
| 3316 | |
J. Bruce Fields | e8b4355 | 2008-07-23 08:49:50 -0400 | [diff] [blame] | 3317 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
Neil Brown | a512cd5 | 2007-07-31 00:37:27 -0700 | [diff] [blame] | 3318 | P: J. Bruce Fields |
| 3319 | M: bfields@fieldses.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3320 | P: Neil Brown |
NeilBrown | 98fac23 | 2007-01-26 00:56:57 -0800 | [diff] [blame] | 3321 | M: neilb@suse.de |
Neil Brown | 16141c0 | 2007-12-11 16:16:12 -0800 | [diff] [blame] | 3322 | L: linux-nfs@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3323 | W: http://nfs.sourceforge.net/ |
NeilBrown | 98fac23 | 2007-01-26 00:56:57 -0800 | [diff] [blame] | 3324 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3325 | F: fs/nfsd/ |
| 3326 | F: include/linux/nfsd/ |
| 3327 | F: fs/lockd/ |
| 3328 | F: fs/nfs_common/ |
| 3329 | F: net/sunrpc/ |
| 3330 | F: include/linux/lockd/ |
| 3331 | F: include/linux/sunrpc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3332 | |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 3333 | KERNEL VIRTUAL MACHINE (KVM) |
| 3334 | P: Avi Kivity |
Avi Kivity | 9ea1de4 | 2008-09-19 19:25:30 -0700 | [diff] [blame] | 3335 | M: avi@redhat.com |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 3336 | L: kvm@vger.kernel.org |
| 3337 | W: http://kvm.qumranet.com |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 3338 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3339 | F: Documentation/*/kvm.txt |
| 3340 | F: arch/*/kvm/ |
| 3341 | F: arch/*/include/asm/kvm* |
| 3342 | F: include/linux/kvm* |
| 3343 | F: virt/kvm/ |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 3344 | |
Joerg Roedel | ad8003d | 2008-09-10 20:01:07 +0200 | [diff] [blame] | 3345 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
| 3346 | P: Joerg Roedel |
| 3347 | M: joerg.roedel@amd.com |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3348 | L: kvm@vger.kernel.org |
| 3349 | W: http://kvm.qumranet.com |
| 3350 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3351 | F: arch/x86/include/asm/svm.h |
| 3352 | F: arch/x86/kvm/kvm_svm.h |
| 3353 | F: arch/x86/kvm/svm.c |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3354 | |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 3355 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
| 3356 | P: Hollis Blanchard |
| 3357 | M: hollisb@us.ibm.com |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 3358 | L: kvm-ppc@vger.kernel.org |
| 3359 | W: http://kvm.qumranet.com |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 3360 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3361 | F: arch/powerpc/include/asm/kvm* |
| 3362 | F: arch/powerpc/kvm/ |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 3363 | |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 3364 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
Zhang Xiantao | 920ed9f | 2008-01-31 12:03:39 +0800 | [diff] [blame] | 3365 | P: Xiantao Zhang |
| 3366 | M: xiantao.zhang@intel.com |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 3367 | L: kvm-ia64@vger.kernel.org |
| 3368 | W: http://kvm.qumranet.com |
Zhang Xiantao | 920ed9f | 2008-01-31 12:03:39 +0800 | [diff] [blame] | 3369 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3370 | F: Documentation/ia64/kvm.txt |
| 3371 | F: arch/ia64/include/asm/kvm* |
| 3372 | F: arch/ia64/kvm/ |
Zhang Xiantao | 920ed9f | 2008-01-31 12:03:39 +0800 | [diff] [blame] | 3373 | |
Christian Borntraeger | 85f8fff | 2008-03-25 18:47:41 +0100 | [diff] [blame] | 3374 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
| 3375 | P: Carsten Otte |
| 3376 | M: cotte@de.ibm.com |
| 3377 | P: Christian Borntraeger |
| 3378 | M: borntraeger@de.ibm.com |
| 3379 | M: linux390@de.ibm.com |
| 3380 | L: linux-s390@vger.kernel.org |
| 3381 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 3382 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3383 | F: Documentation/s390/kvm.txt |
| 3384 | F: arch/s390/include/asm/kvm* |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 3385 | F: arch/s390/kvm/ |
Christian Borntraeger | 85f8fff | 2008-03-25 18:47:41 +0100 | [diff] [blame] | 3386 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3387 | KEXEC |
| 3388 | P: Eric Biederman |
| 3389 | M: ebiederm@xmission.com |
Signed-off-by@vergenet.net":Simon | b7c698f | 2007-10-18 03:04:33 -0700 | [diff] [blame] | 3390 | W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/ |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3391 | L: linux-kernel@vger.kernel.org |
Simon Horman | 3463399 | 2007-05-08 00:31:40 -0700 | [diff] [blame] | 3392 | L: kexec@lists.infradead.org |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3393 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3394 | F: include/linux/kexec.h |
| 3395 | F: kernel/kexec.c |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3396 | |
Jason Wessel | e3e2aaf | 2008-03-20 13:43:45 -0500 | [diff] [blame] | 3397 | KGDB |
| 3398 | P: Jason Wessel |
| 3399 | M: jason.wessel@windriver.com |
| 3400 | L: kgdb-bugreport@lists.sourceforge.net |
| 3401 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3402 | F: Documentation/DocBook/kgdb.tmpl |
| 3403 | F: drivers/misc/kgdbts.c |
| 3404 | F: drivers/serial/kgdboc.c |
| 3405 | F: include/linux/kgdb.h |
| 3406 | F: kernel/kgdb.c |
Jason Wessel | e3e2aaf | 2008-03-20 13:43:45 -0500 | [diff] [blame] | 3407 | |
Catalin Marinas | c3bb4d2 | 2009-06-12 09:35:22 +0100 | [diff] [blame] | 3408 | KMEMLEAK |
| 3409 | P: Catalin Marinas |
| 3410 | M: catalin.marinas@arm.com |
| 3411 | L: linux-kernel@vger.kernel.org |
| 3412 | S: Maintained |
| 3413 | F: Documentation/kmemleak.txt |
| 3414 | F: include/linux/kmemleak.h |
| 3415 | F: mm/kmemleak.c |
| 3416 | F: mm/kmemleak-test.c |
| 3417 | |
Eduard - Gabriel Munteanu | b9ce08c | 2008-08-10 20:14:03 +0300 | [diff] [blame] | 3418 | KMEMTRACE |
| 3419 | P: Eduard - Gabriel Munteanu |
| 3420 | M: eduard.munteanu@linux360.ro |
| 3421 | L: linux-kernel@vger.kernel.org |
| 3422 | S: Maintained |
Joe Perches | dc8c7f8 | 2009-04-21 12:24:45 -0700 | [diff] [blame] | 3423 | F: Documentation/trace/kmemtrace.txt |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3424 | F: include/trace/kmemtrace.h |
| 3425 | F: kernel/trace/kmemtrace.c |
Eduard - Gabriel Munteanu | b9ce08c | 2008-08-10 20:14:03 +0300 | [diff] [blame] | 3426 | |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 3427 | KPROBES |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 3428 | P: Ananth N Mavinakayanahalli |
| 3429 | M: ananth@in.ibm.com |
| 3430 | P: Anil S Keshavamurthy |
| 3431 | M: anil.s.keshavamurthy@intel.com |
| 3432 | P: David S. Miller |
| 3433 | M: davem@davemloft.net |
Masami Hiramatsu | 6edef97 | 2008-03-26 15:53:19 -0400 | [diff] [blame] | 3434 | P: Masami Hiramatsu |
| 3435 | M: mhiramat@redhat.com |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 3436 | L: linux-kernel@vger.kernel.org |
| 3437 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3438 | F: Documentation/kprobes.txt |
| 3439 | F: include/linux/kprobes.h |
| 3440 | F: kernel/kprobes.c |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 3441 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3442 | KS0108 LCD CONTROLLER DRIVER |
| 3443 | P: Miguel Ojeda Sandonis |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 3444 | M: miguel.ojeda.sandonis@gmail.com |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3445 | L: linux-kernel@vger.kernel.org |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 3446 | W: http://miguelojeda.es/auxdisplay.htm |
| 3447 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3448 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3449 | F: Documentation/auxdisplay/ks0108 |
| 3450 | F: drivers/auxdisplay/ks0108.c |
| 3451 | F: include/linux/ks0108.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3452 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3453 | LAPB module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3454 | L: linux-x25@vger.kernel.org |
David S. Miller | bf9915c | 2006-07-21 14:55:17 -0700 | [diff] [blame] | 3455 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3456 | F: Documentation/networking/lapb-module.txt |
| 3457 | F: include/*/lapb.h |
| 3458 | F: net/lapb/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3459 | |
| 3460 | LASI 53c700 driver for PARISC |
| 3461 | P: James E.J. Bottomley |
| 3462 | M: James.Bottomley@HansenPartnership.com |
| 3463 | L: linux-scsi@vger.kernel.org |
| 3464 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3465 | F: Documentation/scsi/53c700.txt |
| 3466 | F: drivers/scsi/53c700* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3467 | |
Richard Purdie | 263de9b | 2006-05-15 09:44:16 -0700 | [diff] [blame] | 3468 | LED SUBSYSTEM |
| 3469 | P: Richard Purdie |
| 3470 | M: rpurdie@rpsys.net |
| 3471 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3472 | F: drivers/leds/ |
| 3473 | F: include/linux/leds.h |
Richard Purdie | 263de9b | 2006-05-15 09:44:16 -0700 | [diff] [blame] | 3474 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3475 | LEGO USB Tower driver |
| 3476 | P: Juergen Stuber |
| 3477 | M: starblue@users.sourceforge.net |
| 3478 | L: legousb-devel@lists.sourceforge.net |
| 3479 | W: http://legousb.sourceforge.net/ |
| 3480 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3481 | F: drivers/usb/misc/legousbtower.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3482 | |
Rusty Russell | 568a17f | 2007-10-25 14:12:24 +1000 | [diff] [blame] | 3483 | LGUEST |
| 3484 | P: Rusty Russell |
| 3485 | M: rusty@rustcorp.com.au |
| 3486 | L: lguest@ozlabs.org |
| 3487 | W: http://lguest.ozlabs.org/ |
| 3488 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3489 | F: Documentation/lguest/ |
| 3490 | F: arch/x86/lguest/ |
| 3491 | F: drivers/lguest/ |
| 3492 | F: include/linux/lguest*.h |
| 3493 | F: arch/x86/include/asm/lguest*.h |
Rusty Russell | 568a17f | 2007-10-25 14:12:24 +1000 | [diff] [blame] | 3494 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3495 | LINUX FOR IBM pSERIES (RS/6000) |
| 3496 | P: Paul Mackerras |
| 3497 | M: paulus@au.ibm.com |
| 3498 | W: http://www.ibm.com/linux/ltc/projects/ppc |
| 3499 | S: Supported |
| 3500 | |
Paul Mackerras | 852bb9f | 2008-07-04 21:04:42 +1000 | [diff] [blame] | 3501 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
Paul Mackerras | 852bb9f | 2008-07-04 21:04:42 +1000 | [diff] [blame] | 3502 | P: Benjamin Herrenschmidt |
| 3503 | M: benh@kernel.crashing.org |
Paul Mackerras | 92cde4d | 2009-01-02 15:40:55 +1100 | [diff] [blame] | 3504 | P: Paul Mackerras |
| 3505 | M: paulus@samba.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3506 | W: http://www.penguinppc.org/ |
| 3507 | L: linuxppc-dev@ozlabs.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3508 | 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] | 3509 | S: Supported |
| 3510 | |
| 3511 | LINUX FOR POWER MACINTOSH |
| 3512 | P: Benjamin Herrenschmidt |
| 3513 | M: benh@kernel.crashing.org |
| 3514 | W: http://www.penguinppc.org/ |
| 3515 | L: linuxppc-dev@ozlabs.org |
| 3516 | S: Maintained |
| 3517 | |
Grant Likely | 77a7636 | 2008-07-12 12:11:43 -0600 | [diff] [blame] | 3518 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
Grant Likely | e1eea9f | 2007-10-09 14:45:26 -0600 | [diff] [blame] | 3519 | P: Grant Likely |
| 3520 | M: grant.likely@secretlab.ca |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3521 | L: linuxppc-dev@ozlabs.org |
Grant Likely | 9d37a90 | 2009-04-28 06:50:15 +0000 | [diff] [blame] | 3522 | T: git git://git.secretlab.ca/git/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3523 | S: Maintained |
| 3524 | |
| 3525 | LINUX FOR POWERPC EMBEDDED PPC4XX |
Josh Boyer | 9a474ff | 2007-09-19 21:19:07 -0500 | [diff] [blame] | 3526 | P: Josh Boyer |
| 3527 | M: jwboyer@linux.vnet.ibm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3528 | P: Matt Porter |
| 3529 | M: mporter@kernel.crashing.org |
| 3530 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 3531 | L: linuxppc-dev@ozlabs.org |
Josh Boyer | 9ae2ccf | 2009-04-24 08:57:47 -0400 | [diff] [blame] | 3532 | 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] | 3533 | S: Maintained |
| 3534 | |
Grant Likely | 260c02a | 2007-10-02 12:15:34 +1000 | [diff] [blame] | 3535 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
| 3536 | P: Grant Likely |
| 3537 | M: grant.likely@secretlab.ca |
Grant Likely | f210d43 | 2007-10-03 23:24:52 -0600 | [diff] [blame] | 3538 | W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex |
Grant Likely | 260c02a | 2007-10-02 12:15:34 +1000 | [diff] [blame] | 3539 | L: linuxppc-dev@ozlabs.org |
Grant Likely | 9d37a90 | 2009-04-28 06:50:15 +0000 | [diff] [blame] | 3540 | T: git git://git.secretlab.ca/git/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3541 | S: Maintained |
| 3542 | |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 3543 | LINUX FOR POWERPC EMBEDDED PPC8XX |
Marcelo Tosatti | dba5baf | 2007-09-10 18:46:01 -0400 | [diff] [blame] | 3544 | P: Vitaly Bordug |
| 3545 | M: vitb@kernel.crashing.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 3546 | P: Marcelo Tosatti |
Marcelo Tosatti | 2e367a8 | 2006-05-15 09:44:08 -0700 | [diff] [blame] | 3547 | M: marcelo@kvack.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 3548 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 3549 | L: linuxppc-dev@ozlabs.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 3550 | S: Maintained |
| 3551 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3552 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3553 | P: Kumar Gala |
| 3554 | M: galak@kernel.crashing.org |
| 3555 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 3556 | L: linuxppc-dev@ozlabs.org |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3557 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3558 | |
Olof Johansson | ab06ff3 | 2006-09-06 14:44:54 -0500 | [diff] [blame] | 3559 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
| 3560 | P: Olof Johansson |
| 3561 | M: olof@lixom.net |
| 3562 | W: http://www.pasemi.com/ |
| 3563 | L: linuxppc-dev@ozlabs.org |
| 3564 | S: Supported |
| 3565 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3566 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
| 3567 | P: Chris Wright |
Chris Wright | 692a206 | 2006-03-11 03:27:19 -0800 | [diff] [blame] | 3568 | M: chrisw@sous-sol.org |
Chris Wright | 1a4520b | 2006-03-11 03:27:20 -0800 | [diff] [blame] | 3569 | L: linux-security-module@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3570 | 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] | 3571 | S: Supported |
| 3572 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3573 | LLC (802.2) |
| 3574 | P: Arnaldo Carvalho de Melo |
| 3575 | M: acme@ghostprotocols.net |
| 3576 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3577 | F: include/linux/llc.h |
| 3578 | F: include/net/llc* |
| 3579 | F: net/llc/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3580 | |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 3581 | LIS3LV02D ACCELEROMETER DRIVER |
| 3582 | P: Eric Piel |
| 3583 | M: eric.piel@tremplin-utc.net |
| 3584 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3585 | F: Documentation/hwmon/lis3lv02d |
| 3586 | F: drivers/hwmon/lis3lv02d.* |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 3587 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3588 | LM83 HARDWARE MONITOR DRIVER |
| 3589 | P: Jean Delvare |
| 3590 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 3591 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3592 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3593 | F: Documentation/hwmon/lm83 |
| 3594 | F: drivers/hwmon/lm83.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3595 | |
| 3596 | LM90 HARDWARE MONITOR DRIVER |
| 3597 | P: Jean Delvare |
| 3598 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 3599 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3600 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3601 | F: Documentation/hwmon/lm90 |
| 3602 | F: drivers/hwmon/lm90.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3603 | |
Peter Zijlstra | 512e67f | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 3604 | LOCKDEP AND LOCKSTAT |
| 3605 | P: Peter Zijlstra |
| 3606 | M: peterz@infradead.org |
| 3607 | P: Ingo Molnar |
| 3608 | M: mingo@redhat.com |
| 3609 | L: linux-kernel@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3610 | 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] | 3611 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3612 | F: Documentation/lockdep*.txt |
| 3613 | F: Documentation/lockstat.txt |
| 3614 | F: include/linux/lockdep.h |
| 3615 | F: kernel/lockdep* |
Peter Zijlstra | 512e67f | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 3616 | |
Anton Altaparmakov | dde3334 | 2007-05-21 09:37:42 +0100 | [diff] [blame] | 3617 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3618 | P: Richard Russon (FlatCap) |
| 3619 | M: ldm@flatcap.org |
Anton Altaparmakov | dde3334 | 2007-05-21 09:37:42 +0100 | [diff] [blame] | 3620 | L: linux-ntfs-dev@lists.sourceforge.net |
| 3621 | W: http://www.linux-ntfs.org/content/view/19/37/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3622 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3623 | F: Documentation/ldm.txt |
| 3624 | F: fs/partitions/ldm.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3625 | |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 3626 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
| 3627 | P: Eric Moore |
Eric Moore | d8a82d7 | 2006-12-29 16:47:43 -0800 | [diff] [blame] | 3628 | M: Eric.Moore@lsi.com |
| 3629 | M: support@lsi.com |
Eric Moore | cec744f | 2007-09-14 19:08:08 -0600 | [diff] [blame] | 3630 | L: DL-MPTFusionLinux@lsi.com |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 3631 | L: linux-scsi@vger.kernel.org |
| 3632 | W: http://www.lsilogic.com/support |
| 3633 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3634 | F: drivers/message/fusion/ |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 3635 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3636 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
| 3637 | P: Matthew Wilcox |
| 3638 | M: matthew@wil.cx |
| 3639 | L: linux-scsi@vger.kernel.org |
| 3640 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3641 | F: drivers/scsi/sym53c8xx_2/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3642 | |
Mike Frysinger | 81365c3 | 2008-10-29 14:01:12 -0700 | [diff] [blame] | 3643 | LTP (Linux Test Project) |
| 3644 | P: Subrata Modak |
| 3645 | M: subrata@linux.vnet.ibm.com |
| 3646 | P: Mike Frysinger |
| 3647 | M: vapier@gentoo.org |
| 3648 | L: ltp-list@lists.sourceforge.net (subscribers-only) |
| 3649 | W: http://ltp.sourceforge.net/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3650 | 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] | 3651 | S: Maintained |
| 3652 | |
Hirokazu Takata | c12a54b | 2007-07-15 23:38:45 -0700 | [diff] [blame] | 3653 | M32R ARCHITECTURE |
| 3654 | P: Hirokazu Takata |
| 3655 | M: takata@linux-m32r.org |
| 3656 | L: linux-m32r@ml.linux-m32r.org |
| 3657 | L: linux-m32r-ja@ml.linux-m32r.org (in Japanese) |
| 3658 | W: http://www.linux-m32r.org/ |
| 3659 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3660 | F: arch/m32r/ |
| 3661 | F: include/asm-m32r/ |
Hirokazu Takata | c12a54b | 2007-07-15 23:38:45 -0700 | [diff] [blame] | 3662 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3663 | M68K ARCHITECTURE |
| 3664 | P: Geert Uytterhoeven |
| 3665 | M: geert@linux-m68k.org |
| 3666 | P: Roman Zippel |
| 3667 | M: zippel@linux-m68k.org |
| 3668 | L: linux-m68k@lists.linux-m68k.org |
| 3669 | W: http://www.linux-m68k.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3670 | 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] | 3671 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3672 | F: arch/m68k/ |
Joe Perches | 9db3518 | 2009-04-08 08:39:56 -0700 | [diff] [blame] | 3673 | F: drivers/zorro/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3674 | |
| 3675 | M68K ON APPLE MACINTOSH |
| 3676 | P: Joshua Thompson |
| 3677 | M: funaho@jurai.org |
| 3678 | W: http://www.mac.linux-m68k.org/ |
Finn Thain | 9bb9f22 | 2007-11-18 11:10:05 +0100 | [diff] [blame] | 3679 | L: linux-m68k@lists.linux-m68k.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3680 | S: Maintained |
Joe Perches | 9db3518 | 2009-04-08 08:39:56 -0700 | [diff] [blame] | 3681 | F: arch/m68k/mac/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3682 | |
| 3683 | M68K ON HP9000/300 |
| 3684 | P: Philip Blundell |
| 3685 | M: philb@gnu.org |
| 3686 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
| 3687 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3688 | F: arch/m68k/hp300/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3689 | |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 3690 | MAC80211 |
Johannes Berg | 31c7cec | 2007-10-23 17:05:25 +0200 | [diff] [blame] | 3691 | P: Johannes Berg |
| 3692 | M: johannes@sipsolutions.net |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 3693 | L: linux-wireless@vger.kernel.org |
| 3694 | W: http://linuxwireless.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3695 | 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] | 3696 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3697 | F: Documentation/networking/mac80211-injection.txt |
| 3698 | F: include/net/mac80211.h |
| 3699 | F: net/mac80211/ |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 3700 | |
Stefano Brivio | 1036d86 | 2007-12-23 04:46:27 +0100 | [diff] [blame] | 3701 | MAC80211 PID RATE CONTROL |
| 3702 | P: Stefano Brivio |
| 3703 | M: stefano.brivio@polimi.it |
| 3704 | P: Mattias Nissler |
| 3705 | M: mattias.nissler@gmx.de |
| 3706 | L: linux-wireless@vger.kernel.org |
| 3707 | W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3708 | 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] | 3709 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3710 | F: net/mac80211/rc80211_pid* |
Stefano Brivio | 1036d86 | 2007-12-23 04:46:27 +0100 | [diff] [blame] | 3711 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 3712 | MACVLAN DRIVER |
| 3713 | P: Patrick McHardy |
| 3714 | M: kaber@trash.net |
| 3715 | L: netdev@vger.kernel.org |
| 3716 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3717 | F: drivers/net/macvlan.c |
| 3718 | F: include/linux/if_macvlan.h |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 3719 | |
Michael Kerrisk | faf1668 | 2005-07-31 22:34:47 -0700 | [diff] [blame] | 3720 | 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] | 3721 | P: Michael Kerrisk |
Michael Kerrisk | 1d7f502 | 2007-10-16 23:30:31 -0700 | [diff] [blame] | 3722 | M: mtk.manpages@gmail.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 3723 | W: http://www.kernel.org/doc/man-pages |
Michael Kerrisk | bd7ebec | 2008-10-03 15:23:44 -0700 | [diff] [blame] | 3724 | L: linux-man@vger.kernel.org |
Michael Kerrisk | 1b53dc7 | 2009-03-12 14:31:32 -0700 | [diff] [blame] | 3725 | S: Maintained |
Michael Kerrisk | faf1668 | 2005-07-31 22:34:47 -0700 | [diff] [blame] | 3726 | |
Stefano Brivio | 74cda16 | 2007-11-19 20:27:46 +0100 | [diff] [blame] | 3727 | MARVELL LIBERTAS WIRELESS DRIVER |
| 3728 | P: Dan Williams |
| 3729 | M: dcbw@redhat.com |
| 3730 | L: libertas-dev@lists.infradead.org |
| 3731 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3732 | F: drivers/net/wireless/libertas/ |
Stefano Brivio | 74cda16 | 2007-11-19 20:27:46 +0100 | [diff] [blame] | 3733 | |
Dale Farnsworth | b60d697 | 2006-01-16 16:45:45 -0700 | [diff] [blame] | 3734 | MARVELL MV643XX ETHERNET DRIVER |
Dale Farnsworth | 85ba9d9 | 2008-06-05 06:10:51 -0700 | [diff] [blame] | 3735 | P: Lennert Buytenhek |
| 3736 | M: buytenh@marvell.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 3737 | L: netdev@vger.kernel.org |
Dale Farnsworth | 85ba9d9 | 2008-06-05 06:10:51 -0700 | [diff] [blame] | 3738 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3739 | F: drivers/net/mv643xx_eth.* |
| 3740 | F: include/linux/mv643xx.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3741 | |
Pierre Ossman | 2a69567 | 2009-03-16 19:52:26 +0100 | [diff] [blame] | 3742 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
| 3743 | P: Nicolas Pitre |
| 3744 | M: nico@cam.org |
| 3745 | L: linux-kernel@vger.kernel.org |
| 3746 | S: Maintained |
| 3747 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3748 | MARVELL YUKON / SYSKONNECT DRIVER |
| 3749 | P: Mirko Lindner |
| 3750 | M: mlindner@syskonnect.de |
| 3751 | P: Ralph Roesler |
| 3752 | M: rroesler@syskonnect.de |
| 3753 | W: http://www.syskonnect.com |
| 3754 | S: Supported |
| 3755 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3756 | MATROX FRAMEBUFFER DRIVER |
| 3757 | P: Petr Vandrovec |
| 3758 | M: vandrove@vc.cvut.cz |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 3759 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3760 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3761 | F: drivers/video/matrox/matroxfb_* |
| 3762 | F: include/linux/matroxfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3763 | |
Hans-Juergen Koch | d20620d | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 3764 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
| 3765 | P: Hans J. Koch |
| 3766 | M: hjk@linutronix.de |
| 3767 | L: lm-sensors@lm-sensors.org |
| 3768 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3769 | F: Documentation/hwmon/max6650 |
| 3770 | F: drivers/hwmon/max6650.c |
Hans-Juergen Koch | d20620d | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 3771 | |
Joe Perches | 127c49a | 2009-04-08 08:34:04 -0700 | [diff] [blame] | 3772 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
| 3773 | P: Mauro Carvalho Chehab |
| 3774 | M: mchehab@infradead.org |
| 3775 | P: LinuxTV.org Project |
| 3776 | L: linux-media@vger.kernel.org |
| 3777 | W: http://linuxtv.org |
| 3778 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
| 3779 | S: Maintained |
| 3780 | F: Documentation/dvb/ |
| 3781 | F: Documentation/video4linux/ |
| 3782 | F: drivers/media/ |
| 3783 | F: include/media/ |
| 3784 | F: include/linux/dvb/ |
| 3785 | F: include/linux/videodev*.h |
Steven Rostedt | 70ea91f | 2006-07-30 03:03:53 -0700 | [diff] [blame] | 3786 | |
| 3787 | MEGARAID SCSI DRIVERS |
David Woodhouse | f4e9ce66c | 2006-04-11 19:29:07 -0400 | [diff] [blame] | 3788 | P: Neela Syam Kolli |
Sumant Patro | bdd0d75 | 2007-05-10 07:22:35 -0700 | [diff] [blame] | 3789 | M: megaraidlinux@lsi.com |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 3790 | L: linux-scsi@vger.kernel.org |
Kolli, Neela Syam | 757e010 | 2005-10-14 15:59:13 -0700 | [diff] [blame] | 3791 | W: http://megaraid.lsilogic.com |
| 3792 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3793 | F: Documentation/scsi/megaraid.txt |
| 3794 | F: drivers/scsi/megaraid.* |
| 3795 | F: drivers/scsi/megaraid/ |
Kolli, Neela Syam | 757e010 | 2005-10-14 15:59:13 -0700 | [diff] [blame] | 3796 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3797 | MEMORY MANAGEMENT |
| 3798 | L: linux-mm@kvack.org |
| 3799 | L: linux-kernel@vger.kernel.org |
| 3800 | W: http://www.linux-mm.org |
| 3801 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3802 | F: include/linux/mm.h |
| 3803 | F: mm/ |
David Woodhouse | f4e9ce66c | 2006-04-11 19:29:07 -0400 | [diff] [blame] | 3804 | |
akpm@linux-foundation.org | 938a920 | 2008-03-04 14:28:29 -0800 | [diff] [blame] | 3805 | MEMORY RESOURCE CONTROLLER |
| 3806 | P: Balbir Singh |
| 3807 | M: balbir@linux.vnet.ibm.com |
| 3808 | P: Pavel Emelyanov |
| 3809 | M: xemul@openvz.org |
| 3810 | P: KAMEZAWA Hiroyuki |
| 3811 | M: kamezawa.hiroyu@jp.fujitsu.com |
| 3812 | L: linux-mm@kvack.org |
| 3813 | L: linux-kernel@vger.kernel.org |
| 3814 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3815 | F: mm/memcontrol.c |
akpm@linux-foundation.org | 938a920 | 2008-03-04 14:28:29 -0800 | [diff] [blame] | 3816 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3817 | MEMORY TECHNOLOGY DEVICES (MTD) |
| 3818 | P: David Woodhouse |
| 3819 | M: dwmw2@infradead.org |
| 3820 | W: http://www.linux-mtd.infradead.org/ |
| 3821 | L: linux-mtd@lists.infradead.org |
Josh Boyer | 2c560ac | 2005-11-23 15:43:57 -0800 | [diff] [blame] | 3822 | T: git git://git.infradead.org/mtd-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3823 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3824 | F: drivers/mtd/ |
| 3825 | F: include/linux/mtd/ |
| 3826 | F: include/mtd/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3827 | |
Michal Simek | c6375b0 | 2009-03-27 14:25:52 +0100 | [diff] [blame] | 3828 | MICROBLAZE ARCHITECTURE |
| 3829 | P: Michal Simek |
| 3830 | M: monstr@monstr.eu |
| 3831 | L: microblaze-uclinux@itee.uq.edu.au |
| 3832 | W: http://www.monstr.eu/fdt/ |
| 3833 | T: git git://git.monstr.eu/linux-2.6-microblaze.git |
| 3834 | S: Supported |
Michal Simek | 0a8c791 | 2009-04-14 11:38:57 +0200 | [diff] [blame] | 3835 | F: arch/microblaze/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3836 | |
| 3837 | MICROTEK X6 SCANNER |
| 3838 | P: Oliver Neukum |
| 3839 | M: oliver@neukum.name |
| 3840 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3841 | F: drivers/usb/image/microtek.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3842 | |
| 3843 | MIPS |
| 3844 | P: Ralf Baechle |
| 3845 | M: ralf@linux-mips.org |
Ralf Baechle | d50f7ec | 2005-10-04 13:30:10 +0100 | [diff] [blame] | 3846 | W: http://www.linux-mips.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3847 | L: linux-mips@linux-mips.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3848 | T: git git://git.linux-mips.org/pub/scm/linux.git |
Ralf Baechle | 7425b34 | 2006-03-10 13:47:21 +0000 | [diff] [blame] | 3849 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3850 | F: Documentation/mips/ |
| 3851 | F: arch/mips/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3852 | |
| 3853 | MISCELLANEOUS MCA-SUPPORT |
| 3854 | P: James Bottomley |
James Bottomley | c4e1608 | 2007-11-03 08:40:30 -0500 | [diff] [blame] | 3855 | M: James.Bottomley@HansenPartnership.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3856 | L: linux-kernel@vger.kernel.org |
| 3857 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3858 | F: Documentation/ia64/mca.txt |
| 3859 | F: Documentation/mca.txt |
| 3860 | F: drivers/mca/ |
| 3861 | F: include/linux/mca* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3862 | |
| 3863 | MODULE SUPPORT |
| 3864 | P: Rusty Russell |
| 3865 | M: rusty@rustcorp.com.au |
| 3866 | L: linux-kernel@vger.kernel.org |
| 3867 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3868 | F: include/linux/module.h |
| 3869 | F: kernel/module.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3870 | |
| 3871 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER |
| 3872 | P: Stelian Pop |
| 3873 | M: stelian@popies.net |
| 3874 | W: http://popies.net/meye/ |
| 3875 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3876 | F: Documentation/video4linux/meye.txt |
| 3877 | F: drivers/media/video/meye.* |
| 3878 | F: include/linux/meye.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3879 | |
Pavel Pisa | c58ff04 | 2007-05-16 01:10:41 +0200 | [diff] [blame] | 3880 | MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER |
| 3881 | P: Pavel Pisa |
| 3882 | M: ppisa@pikron.com |
| 3883 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Pavel Pisa | c58ff04 | 2007-05-16 01:10:41 +0200 | [diff] [blame] | 3884 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3885 | F: drivers/mmc/host/imxmmc.* |
Pavel Pisa | c58ff04 | 2007-05-16 01:10:41 +0200 | [diff] [blame] | 3886 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3887 | MOUSE AND MISC DEVICES [GENERAL] |
| 3888 | P: Alessandro Rubini |
| 3889 | M: rubini@ipvvis.unipv.it |
| 3890 | L: linux-kernel@vger.kernel.org |
| 3891 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3892 | F: drivers/input/mouse/ |
| 3893 | F: include/linux/gpio_mouse.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3894 | |
Jiri Slaby | b9705b6 | 2008-04-30 00:53:48 -0700 | [diff] [blame] | 3895 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3896 | P: Jiri Slaby |
| 3897 | M: jirislaby@gmail.com |
| 3898 | L: linux-kernel@vger.kernel.org |
| 3899 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3900 | F: Documentation/serial/moxa-smartio |
| 3901 | F: drivers/char/mxser.* |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3902 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 3903 | MSI LAPTOP SUPPORT |
| 3904 | P: Lennart Poettering |
| 3905 | M: mzxreary@0pointer.de |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 3906 | W: https://tango.0pointer.de/mailman/listinfo/s270-linux |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 3907 | W: http://0pointer.de/lennart/tchibo.html |
| 3908 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3909 | F: drivers/platform/x86/msi-laptop.c |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 3910 | |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 3911 | MULTIFUNCTION DEVICES (MFD) |
| 3912 | P: Samuel Ortiz |
Samuel Ortiz | 895d9f0 | 2009-03-23 00:46:18 +0100 | [diff] [blame] | 3913 | M: sameo@linux.intel.com |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 3914 | L: linux-kernel@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3915 | 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] | 3916 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3917 | F: drivers/mfd/ |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 3918 | |
Pierre Ossman | 5c4e6f1 | 2007-05-21 20:23:20 +0200 | [diff] [blame] | 3919 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
Pierre Ossman | b9f5d80 | 2006-10-17 00:09:30 -0700 | [diff] [blame] | 3920 | P: Pierre Ossman |
Pierre Ossman | 32710e8 | 2009-04-08 20:14:54 +0200 | [diff] [blame] | 3921 | M: pierre@ossman.eu |
Pierre Ossman | b9f5d80 | 2006-10-17 00:09:30 -0700 | [diff] [blame] | 3922 | L: linux-kernel@vger.kernel.org |
| 3923 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3924 | F: drivers/mmc/ |
| 3925 | F: include/linux/mmc/ |
Russell King | baca2da | 2006-06-04 17:36:31 +0100 | [diff] [blame] | 3926 | |
David Brownell | 15a0580 | 2007-08-08 09:12:54 -0700 | [diff] [blame] | 3927 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
| 3928 | P: David Brownell |
| 3929 | M: dbrownell@users.sourceforge.net |
| 3930 | L: linux-kernel@vger.kernel.org |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 3931 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3932 | F: drivers/mmc/host/mmc_spi.c |
| 3933 | F: include/linux/spi/mmc_spi.h |
David Brownell | 15a0580 | 2007-08-08 09:12:54 -0700 | [diff] [blame] | 3934 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3935 | MULTISOUND SOUND DRIVER |
| 3936 | P: Andrew Veliath |
| 3937 | M: andrewtv@usa.net |
| 3938 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3939 | F: Documentation/sound/oss/MultiSound |
| 3940 | F: sound/oss/msnd* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3941 | |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3942 | MULTITECH MULTIPORT CARD (ISICOM) |
| 3943 | P: Jiri Slaby |
| 3944 | M: jirislaby@gmail.com |
| 3945 | L: linux-kernel@vger.kernel.org |
| 3946 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3947 | F: drivers/char/isicom.c |
| 3948 | F: include/linux/isicom.h |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3949 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 3950 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 3951 | P: Felipe Balbi |
| 3952 | M: felipe.balbi@nokia.com |
| 3953 | L: linux-usb@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3954 | T: git git://gitorious.org/musb/mainline.git |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 3955 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3956 | F: drivers/usb/musb/ |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 3957 | |
Brice Goglin | 2d3cf58 | 2008-05-17 12:45:36 +0200 | [diff] [blame] | 3958 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
| 3959 | P: Andrew Gallatin |
| 3960 | M: gallatin@myri.com |
| 3961 | P: Brice Goglin |
| 3962 | M: brice@myri.com |
| 3963 | L: netdev@vger.kernel.org |
| 3964 | W: http://www.myri.com/scs/download-Myri10GE.html |
| 3965 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3966 | F: drivers/net/myri10ge/ |
Brice Goglin | 2d3cf58 | 2008-05-17 12:45:36 +0200 | [diff] [blame] | 3967 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3968 | NATSEMI ETHERNET DRIVER (DP8381x) |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 3969 | P: Tim Hockin |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3970 | M: thockin@hockin.org |
| 3971 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3972 | F: drivers/net/natsemi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3973 | |
| 3974 | NCP FILESYSTEM |
| 3975 | P: Petr Vandrovec |
| 3976 | M: vandrove@vc.cvut.cz |
| 3977 | L: linware@sh.cvut.cz |
| 3978 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3979 | F: fs/ncpfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3980 | |
| 3981 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
| 3982 | P: James E.J. Bottomley |
| 3983 | M: James.Bottomley@HansenPartnership.com |
| 3984 | L: linux-scsi@vger.kernel.org |
| 3985 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3986 | F: drivers/scsi/NCR_D700.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3987 | |
Glenn Streiff | 3c2d774 | 2008-02-04 20:20:45 -0800 | [diff] [blame] | 3988 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
| 3989 | P: Faisal Latif |
Roland Dreier | 7b49d95 | 2008-10-16 15:39:14 -0700 | [diff] [blame] | 3990 | M: faisal.latif@intel.com |
Chien Tung | 5f62560 | 2008-05-26 15:23:32 -0700 | [diff] [blame] | 3991 | P: Chien Tung |
Roland Dreier | 7b49d95 | 2008-10-16 15:39:14 -0700 | [diff] [blame] | 3992 | M: chien.tin.tung@intel.com |
Glenn Streiff | 3c2d774 | 2008-02-04 20:20:45 -0800 | [diff] [blame] | 3993 | L: general@lists.openfabrics.org |
| 3994 | W: http://www.neteffect.com |
| 3995 | S: Supported |
| 3996 | F: drivers/infiniband/hw/nes/ |
| 3997 | |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 3998 | NETEM NETWORK EMULATOR |
| 3999 | P: Stephen Hemminger |
Stephen Hemminger | 65ebe63 | 2007-01-23 11:38:57 -0800 | [diff] [blame] | 4000 | M: shemminger@linux-foundation.org |
David Brownell | f318a63 | 2007-04-23 14:41:06 -0700 | [diff] [blame] | 4001 | L: netem@lists.linux-foundation.org |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 4002 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4003 | F: net/sched/sch_netem.c |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 4004 | |
Ramkrishna Vepa | b136d1c | 2009-04-01 18:14:25 +0000 | [diff] [blame] | 4005 | NETERION (S2IO) 10GbE DRIVER (xframe/vxge) |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 4006 | P: Ramkrishna Vepa |
| 4007 | M: ram.vepa@neterion.com |
| 4008 | P: Rastapur Santosh |
| 4009 | M: santosh.rastapur@neterion.com |
| 4010 | P: Sivakumar Subramani |
| 4011 | M: sivakumar.subramani@neterion.com |
| 4012 | P: Sreenivasa Honnur |
| 4013 | M: sreenivasa.honnur@neterion.com |
Ramkrishna Vepa | b136d1c | 2009-04-01 18:14:25 +0000 | [diff] [blame] | 4014 | P: Anil Murthy |
| 4015 | M: anil.murthy@neterion.com |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 4016 | L: netdev@vger.kernel.org |
Ramkrishna Vepa | b136d1c | 2009-04-01 18:14:25 +0000 | [diff] [blame] | 4017 | W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous |
| 4018 | W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 4019 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4020 | F: Documentation/networking/s2io.txt |
| 4021 | F: drivers/net/s2io* |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 4022 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4023 | NETFILTER/IPTABLES/IPCHAINS |
| 4024 | P: Rusty Russell |
| 4025 | P: Marc Boucher |
| 4026 | P: James Morris |
| 4027 | P: Harald Welte |
| 4028 | P: Jozsef Kadlecsik |
Patrick McHardy | 82b9854 | 2006-10-12 14:08:55 -0700 | [diff] [blame] | 4029 | P: Patrick McHardy |
| 4030 | M: kaber@trash.net |
Patrick McHardy | 1a03b81 | 2007-09-18 13:19:26 -0700 | [diff] [blame] | 4031 | L: netfilter-devel@vger.kernel.org |
| 4032 | L: netfilter@vger.kernel.org |
Patrick McHardy | 82b9854 | 2006-10-12 14:08:55 -0700 | [diff] [blame] | 4033 | L: coreteam@netfilter.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4034 | W: http://www.netfilter.org/ |
| 4035 | W: http://www.iptables.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4036 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4037 | F: include/linux/netfilter* |
| 4038 | F: include/linux/netfilter/ |
| 4039 | F: include/net/netfilter/ |
| 4040 | F: net/*/netfilter.c |
| 4041 | F: net/*/netfilter/ |
| 4042 | F: net/netfilter/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4043 | |
Paul Moore | 4cc6773 | 2006-09-25 15:57:13 -0700 | [diff] [blame] | 4044 | NETLABEL |
| 4045 | P: Paul Moore |
| 4046 | M: paul.moore@hp.com |
| 4047 | W: http://netlabel.sf.net |
| 4048 | L: netdev@vger.kernel.org |
| 4049 | S: Supported |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 4050 | F: Documentation/netlabel/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4051 | F: include/net/netlabel.h |
| 4052 | F: net/netlabel/ |
Paul Moore | 4cc6773 | 2006-09-25 15:57:13 -0700 | [diff] [blame] | 4053 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4054 | NETROM NETWORK LAYER |
| 4055 | P: Ralf Baechle |
| 4056 | M: ralf@linux-mips.org |
| 4057 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 4058 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4059 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4060 | F: include/linux/netrom.h |
| 4061 | F: include/net/netrom.h |
| 4062 | F: net/netrom/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4063 | |
Pavel Machek | 5ddb88c | 2006-09-29 02:01:29 -0700 | [diff] [blame] | 4064 | NETWORK BLOCK DEVICE (NBD) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4065 | P: Paul Clements |
| 4066 | M: Paul.Clements@steeleye.com |
| 4067 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4068 | F: Documentation/blockdev/nbd.txt |
| 4069 | F: drivers/block/nbd.c |
| 4070 | F: include/linux/nbd.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4071 | |
| 4072 | NETWORKING [GENERAL] |
Ben Hutchings | 48f6e89 | 2009-04-09 05:47:41 +0000 | [diff] [blame] | 4073 | P: David S. Miller |
| 4074 | M: davem@davemloft.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 4075 | L: netdev@vger.kernel.org |
Joe Perches | b1e8fd5 | 2009-04-16 09:38:46 +0000 | [diff] [blame] | 4076 | W: http://www.linuxfoundation.org/en/Net |
| 4077 | 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] | 4078 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4079 | F: net/ |
| 4080 | F: include/net/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4081 | |
| 4082 | NETWORKING [IPv4/IPv6] |
| 4083 | P: David S. Miller |
| 4084 | M: davem@davemloft.net |
| 4085 | P: Alexey Kuznetsov |
| 4086 | M: kuznet@ms2.inr.ac.ru |
| 4087 | P: Pekka Savola (ipv6) |
| 4088 | M: pekkas@netcore.fi |
| 4089 | P: James Morris |
James Morris | 48de5be | 2005-08-08 10:29:08 -0400 | [diff] [blame] | 4090 | M: jmorris@namei.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4091 | P: Hideaki YOSHIFUJI |
| 4092 | M: yoshfuji@linux-ipv6.org |
| 4093 | P: Patrick McHardy |
Patrick McHardy | 1a03b81 | 2007-09-18 13:19:26 -0700 | [diff] [blame] | 4094 | M: kaber@trash.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 4095 | L: netdev@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4096 | 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] | 4097 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4098 | F: net/ipv4/ |
| 4099 | F: net/ipv6/ |
| 4100 | F: include/net/ip* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4101 | |
James Morris | 10e2ff1 | 2007-08-25 14:41:28 -0700 | [diff] [blame] | 4102 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
| 4103 | P: Paul Moore |
| 4104 | M: paul.moore@hp.com |
| 4105 | L: netdev@vger.kernel.org |
| 4106 | S: Maintained |
| 4107 | |
John W. Linville | 29f8f63 | 2006-01-18 14:52:48 -0800 | [diff] [blame] | 4108 | NETWORKING [WIRELESS] |
| 4109 | P: John W. Linville |
| 4110 | M: linville@tuxdriver.com |
Randy Dunlap | 2cb4abd | 2007-02-07 15:52:36 -0800 | [diff] [blame] | 4111 | L: linux-wireless@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4112 | 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] | 4113 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4114 | F: net/wireless/ |
| 4115 | F: include/net/ieee80211* |
| 4116 | F: include/net/wireless.h |
John W. Linville | 29f8f63 | 2006-01-18 14:52:48 -0800 | [diff] [blame] | 4117 | |
Joe Perches | 788873a | 2009-04-16 09:38:45 +0000 | [diff] [blame] | 4118 | NETWORKING DRIVERS |
| 4119 | L: netdev@vger.kernel.org |
| 4120 | W: http://www.linuxfoundation.org/en/Net |
| 4121 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git |
| 4122 | S: Odd Fixes |
| 4123 | F: drivers/net/ |
| 4124 | |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 4125 | NETXEN (1/10) GbE SUPPORT |
dhananjay@netxen.com | d230ce3 | 2007-12-26 10:23:53 -0800 | [diff] [blame] | 4126 | P: Dhananjay Phadke |
| 4127 | M: dhananjay@netxen.com |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 4128 | L: netdev@vger.kernel.org |
| 4129 | W: http://www.netxen.com |
| 4130 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4131 | F: drivers/net/netxen/ |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 4132 | |
J. Bruce Fields | e8b4355 | 2008-07-23 08:49:50 -0400 | [diff] [blame] | 4133 | NFS, SUNRPC, AND LOCKD CLIENTS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4134 | P: Trond Myklebust |
Trond Myklebust | 78f5815 | 2007-12-12 20:16:06 -0500 | [diff] [blame] | 4135 | M: Trond.Myklebust@netapp.com |
| 4136 | L: linux-nfs@vger.kernel.org |
| 4137 | W: http://client.linux-nfs.org |
| 4138 | 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] | 4139 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4140 | F: fs/lockd/ |
| 4141 | F: fs/nfs/ |
| 4142 | F: fs/nfs_common/ |
| 4143 | F: net/sunrpc/ |
| 4144 | F: include/linux/lockd/ |
| 4145 | F: include/linux/nfs* |
| 4146 | F: include/linux/sunrpc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4147 | |
| 4148 | NI5010 NETWORK DRIVER |
Andreas Mohr | 5b552b1 | 2006-06-30 02:25:07 -0700 | [diff] [blame] | 4149 | P: Jan-Pascal van Best |
| 4150 | M: janpascal@vanbest.org |
| 4151 | P: Andreas Mohr |
| 4152 | M: andi@lisas.de |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 4153 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4154 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4155 | F: drivers/net/ni5010.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4156 | |
Ryusuke Konishi | 85ef9ce | 2009-04-06 19:01:46 -0700 | [diff] [blame] | 4157 | NILFS2 FILESYSTEM |
| 4158 | P: KONISHI Ryusuke |
| 4159 | M: konishi.ryusuke@lab.ntt.co.jp |
| 4160 | L: users@nilfs.org |
| 4161 | W: http://www.nilfs.org/en/ |
| 4162 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4163 | F: Documentation/filesystems/nilfs2.txt |
| 4164 | F: fs/nilfs2/ |
| 4165 | F: include/linux/nilfs2_fs.h |
Ryusuke Konishi | 85ef9ce | 2009-04-06 19:01:46 -0700 | [diff] [blame] | 4166 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4167 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
| 4168 | P: YOKOTA Hiroshi |
| 4169 | M: yokota@netlab.is.tsukuba.ac.jp |
| 4170 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
| 4171 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4172 | F: Documentation/scsi/NinjaSCSI.txt |
| 4173 | F: drivers/scsi/pcmcia/nsp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4174 | |
| 4175 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER |
| 4176 | P: GOTO Masanori |
| 4177 | M: gotom@debian.or.jp |
| 4178 | P: YOKOTA Hiroshi |
| 4179 | M: yokota@netlab.is.tsukuba.ac.jp |
| 4180 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
| 4181 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4182 | F: Documentation/scsi/NinjaSCSI.txt |
| 4183 | F: drivers/scsi/nsp32* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4184 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4185 | NTFS FILESYSTEM |
| 4186 | P: Anton Altaparmakov |
| 4187 | M: aia21@cantab.net |
| 4188 | L: linux-ntfs-dev@lists.sourceforge.net |
| 4189 | L: linux-kernel@vger.kernel.org |
Adrian Bunk | 169ccbd | 2008-09-02 14:35:37 -0700 | [diff] [blame] | 4190 | W: http://www.linux-ntfs.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4191 | 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] | 4192 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4193 | F: Documentation/filesystems/ntfs.txt |
| 4194 | F: fs/ntfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4195 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 4196 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4197 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 4198 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 4199 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4200 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4201 | F: drivers/video/riva/ |
| 4202 | F: drivers/video/nvidia/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4203 | |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 4204 | OMAP SUPPORT |
| 4205 | P: Tony Lindgren <tony@atomide.com> |
| 4206 | M: tony@atomide.com |
| 4207 | L: linux-omap@vger.kernel.org |
| 4208 | W: http://www.muru.com/linux/omap/ |
| 4209 | W: http://linux.omap.com/ |
| 4210 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git |
| 4211 | S: Maintained |
| 4212 | F: arch/arm/*omap* |
| 4213 | |
| 4214 | OMAP CLOCK FRAMEWORK SUPPORT |
| 4215 | P: Paul Walmsley |
| 4216 | M: paul@pwsan.com |
| 4217 | L: linux-omap@vger.kernel.org |
| 4218 | S: Maintained |
| 4219 | F: arch/arm/*omap*/*clock* |
| 4220 | |
| 4221 | OMAP POWER MANAGEMENT SUPPORT |
| 4222 | P: Kevin Hilman |
| 4223 | M: khilman@deeprootsystems.com |
| 4224 | L: linux-omap@vger.kernel.org |
| 4225 | S: Maintained |
| 4226 | F: arch/arm/*omap*/*pm* |
| 4227 | |
| 4228 | OMAP AUDIO SUPPORT |
| 4229 | P: Jarkko Nikula |
| 4230 | M: jhnikula@gmail.com |
| 4231 | L: alsa-devel@alsa-project.org (subscribers-only) |
| 4232 | L: linux-omap@vger.kernel.org |
| 4233 | S: Maintained |
| 4234 | F: sound/soc/omap/ |
| 4235 | |
| 4236 | OMAP FRAMEBUFFER SUPPORT |
| 4237 | P: Imre Deak |
| 4238 | M: imre.deak@nokia.com |
| 4239 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 4240 | L: linux-omap@vger.kernel.org |
| 4241 | S: Maintained |
| 4242 | F: drivers/video/omap/ |
| 4243 | |
| 4244 | OMAP MMC SUPPORT |
| 4245 | P: Jarkko Lavinen |
| 4246 | M: jarkko.lavinen@nokia.com |
| 4247 | L: linux-kernel@vger.kernel.org |
| 4248 | L: linux-omap@vger.kernel.org |
| 4249 | S: Maintained |
| 4250 | F: drivers/mmc/host/*omap* |
| 4251 | |
| 4252 | OMAP RANDOM NUMBER GENERATOR SUPPORT |
| 4253 | P: Deepak Saxena |
| 4254 | M: dsaxena@plexity.net |
| 4255 | S: Maintained |
| 4256 | F: drivers/char/hw_random/omap-rng.c |
| 4257 | |
| 4258 | OMAP USB SUPPORT |
| 4259 | P: Felipe Balbi |
| 4260 | M: felipe.balbi@nokia.com |
| 4261 | P: David Brownell |
| 4262 | M: dbrownell@users.sourceforge.net |
| 4263 | L: linux-usb@vger.kernel.org |
| 4264 | L: linux-omap@vger.kernel.org |
| 4265 | S: Maintained |
| 4266 | |
Bob Copeland | 0ad122d | 2008-07-25 19:45:18 -0700 | [diff] [blame] | 4267 | OMFS FILESYSTEM |
| 4268 | P: Bob Copeland |
| 4269 | M: me@bobcopeland.com |
| 4270 | L: linux-karma-devel@lists.sourceforge.net |
| 4271 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4272 | F: Documentation/filesystems/omfs.txt |
| 4273 | F: fs/omfs/ |
Bob Copeland | 0ad122d | 2008-07-25 19:45:18 -0700 | [diff] [blame] | 4274 | |
Harald Welte | c1986ee | 2005-11-13 16:06:29 -0800 | [diff] [blame] | 4275 | OMNIKEY CARDMAN 4000 DRIVER |
| 4276 | P: Harald Welte |
| 4277 | M: laforge@gnumonks.org |
| 4278 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4279 | F: drivers/char/pcmcia/cm4000_cs.c |
| 4280 | F: include/linux/cm4000_cs.h |
Harald Welte | c1986ee | 2005-11-13 16:06:29 -0800 | [diff] [blame] | 4281 | |
Harald Welte | 77c44ab | 2005-11-13 16:06:26 -0800 | [diff] [blame] | 4282 | OMNIKEY CARDMAN 4040 DRIVER |
| 4283 | P: Harald Welte |
| 4284 | M: laforge@gnumonks.org |
| 4285 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4286 | F: drivers/char/pcmcia/cm4040_cs.* |
Harald Welte | 77c44ab | 2005-11-13 16:06:26 -0800 | [diff] [blame] | 4287 | |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 4288 | OMNIVISION OV7670 SENSOR DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 4289 | P: Jonathan Corbet |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 4290 | M: corbet@lwn.net |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 4291 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4292 | 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] | 4293 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4294 | F: drivers/media/video/ov7670.c |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 4295 | |
Thomas Gleixner | 431bca7 | 2007-05-02 09:31:35 +0200 | [diff] [blame] | 4296 | ONENAND FLASH DRIVER |
| 4297 | P: Kyungmin Park |
| 4298 | M: kyungmin.park@samsung.com |
| 4299 | L: linux-mtd@lists.infradead.org |
| 4300 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4301 | F: drivers/mtd/onenand/ |
| 4302 | F: include/linux/mtd/onenand*.h |
Thomas Gleixner | 431bca7 | 2007-05-02 09:31:35 +0200 | [diff] [blame] | 4303 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4304 | ONSTREAM SCSI TAPE DRIVER |
| 4305 | P: Willem Riede |
| 4306 | M: osst@riede.org |
| 4307 | L: osst-users@lists.sourceforge.net |
| 4308 | L: linux-scsi@vger.kernel.org |
| 4309 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4310 | F: drivers/scsi/osst* |
| 4311 | F: drivers/scsi/st* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4312 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4313 | OPENCORES I2C BUS DRIVER |
| 4314 | P: Peter Korsgaard |
| 4315 | M: jacmet@sunsite.dk |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 4316 | L: linux-i2c@vger.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4317 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4318 | F: Documentation/i2c/busses/i2c-ocores |
| 4319 | F: drivers/i2c/busses/i2c-ocores.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4320 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4321 | OPROFILE |
Robert Richter | d1a5d19 | 2008-07-12 13:47:57 -0700 | [diff] [blame] | 4322 | P: Robert Richter |
| 4323 | M: robert.richter@amd.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4324 | L: oprofile-list@lists.sf.net |
| 4325 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4326 | F: arch/*/oprofile/ |
| 4327 | F: drivers/oprofile/ |
| 4328 | F: include/linux/oprofile.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4329 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4330 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
| 4331 | P: Mark Fasheh |
| 4332 | M: mfasheh@suse.com |
| 4333 | P: Joel Becker |
| 4334 | M: joel.becker@oracle.com |
| 4335 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
| 4336 | W: http://oss.oracle.com/projects/ocfs2/ |
Joel Becker | 2191aeb | 2009-04-17 15:58:50 -0700 | [diff] [blame] | 4337 | 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] | 4338 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4339 | F: Documentation/filesystems/ocfs2.txt |
| 4340 | F: Documentation/filesystems/dlmfs.txt |
| 4341 | F: fs/ocfs2/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4342 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4343 | ORINOCO DRIVER |
| 4344 | P: Pavel Roskin |
| 4345 | M: proski@gnu.org |
| 4346 | P: David Gibson |
| 4347 | M: hermes@gibson.dropbear.id.au |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 4348 | L: linux-wireless@vger.kernel.org |
Pavel Roskin | ecffdde | 2005-05-05 16:16:01 -0700 | [diff] [blame] | 4349 | L: orinoco-users@lists.sourceforge.net |
| 4350 | L: orinoco-devel@lists.sourceforge.net |
| 4351 | W: http://www.nongnu.org/orinoco/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4352 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4353 | F: drivers/net/wireless/orinoco/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4354 | |
Boaz Harrosh | 6827479 | 2009-01-25 17:24:14 +0200 | [diff] [blame] | 4355 | OSD LIBRARY |
| 4356 | P: Boaz Harrosh |
| 4357 | M: bharrosh@panasas.com |
| 4358 | P: Benny Halevy |
| 4359 | M: bhalevy@panasas.com |
| 4360 | L: osd-dev@open-osd.org |
| 4361 | W: http://open-osd.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4362 | T: git git://git.open-osd.org/open-osd.git |
Boaz Harrosh | 6827479 | 2009-01-25 17:24:14 +0200 | [diff] [blame] | 4363 | S: Maintained |
| 4364 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4365 | P54 WIRELESS DRIVER |
| 4366 | P: Michael Wu |
| 4367 | M: flamingice@sourmilk.net |
| 4368 | L: linux-wireless@vger.kernel.org |
| 4369 | W: http://prism54.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4370 | 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] | 4371 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4372 | F: drivers/net/wireless/p54/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4373 | |
Olof Johansson | f5cd787 | 2007-01-31 21:43:54 -0600 | [diff] [blame] | 4374 | PA SEMI ETHERNET DRIVER |
| 4375 | P: Olof Johansson |
| 4376 | M: olof@lixom.net |
| 4377 | L: netdev@vger.kernel.org |
| 4378 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4379 | F: drivers/net/pasemi_mac.* |
Olof Johansson | f5cd787 | 2007-01-31 21:43:54 -0600 | [diff] [blame] | 4380 | |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 4381 | PA SEMI SMBUS DRIVER |
| 4382 | P: Olof Johansson |
| 4383 | M: olof@lixom.net |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 4384 | L: linux-i2c@vger.kernel.org |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 4385 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4386 | F: drivers/i2c/busses/i2c-pasemi.c |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 4387 | |
Harald Welte | 709ee53 | 2008-09-23 17:46:57 +0200 | [diff] [blame] | 4388 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
| 4389 | P: Harald Welte |
| 4390 | M: laforge@gnumonks.org |
| 4391 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4392 | F: drivers/platform/x86/panasonic-laptop.c |
Harald Welte | 709ee53 | 2008-09-23 17:46:57 +0200 | [diff] [blame] | 4393 | |
David Howells | 4fa9718 | 2008-10-13 10:42:44 +0100 | [diff] [blame] | 4394 | PANASONIC MN10300/AM33 PORT |
| 4395 | P: David Howells |
| 4396 | M: dhowells@redhat.com |
| 4397 | P: Koichi Yasutake |
| 4398 | M: yasutake.koichi@jp.panasonic.com |
| 4399 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
| 4400 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ |
| 4401 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4402 | F: Documentation/mn10300/ |
| 4403 | F: arch/mn10300/ |
David Howells | 4fa9718 | 2008-10-13 10:42:44 +0100 | [diff] [blame] | 4404 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4405 | PARALLEL PORT SUPPORT |
Randy Dunlap | 3dd1a32 | 2007-05-16 22:11:12 -0700 | [diff] [blame] | 4406 | L: linux-parport@lists.infradead.org (subscribers-only) |
David Brownell | 5fdc2ab | 2007-03-05 00:30:13 -0800 | [diff] [blame] | 4407 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4408 | F: drivers/parport/ |
| 4409 | F: include/linux/parport*.h |
| 4410 | F: drivers/char/ppdev.c |
| 4411 | F: include/linux/ppdev.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4412 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4413 | PARAVIRT_OPS INTERFACE |
| 4414 | P: Jeremy Fitzhardinge |
| 4415 | M: jeremy@xensource.com |
| 4416 | P: Chris Wright |
| 4417 | M: chrisw@sous-sol.org |
Zachary Amsden | 8cbb5bc | 2009-02-20 11:27:46 -0800 | [diff] [blame] | 4418 | P: Alok Kataria |
| 4419 | M: akataria@vmware.com |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4420 | P: Rusty Russell |
| 4421 | M: rusty@rustcorp.com.au |
| 4422 | L: virtualization@lists.osdl.org |
| 4423 | L: linux-kernel@vger.kernel.org |
| 4424 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4425 | F: Documentation/ia64/paravirt_ops.txt |
| 4426 | F: arch/*/kernel/paravirt* |
| 4427 | F: arch/*/include/asm/paravirt.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4428 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4429 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
| 4430 | P: Tim Waugh |
| 4431 | M: tim@cyberelk.net |
Randy Dunlap | 3dd1a32 | 2007-05-16 22:11:12 -0700 | [diff] [blame] | 4432 | L: linux-parport@lists.infradead.org (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4433 | W: http://www.torque.net/linux-pp.html |
| 4434 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4435 | F: Documentation/blockdev/paride.txt |
| 4436 | F: drivers/block/paride/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4437 | |
| 4438 | PARISC ARCHITECTURE |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 4439 | P: Kyle McMartin |
Kyle McMartin | 42a5a8a | 2008-06-06 17:16:17 -0400 | [diff] [blame] | 4440 | M: kyle@mcmartin.ca |
Grant Grundler | 76346119 | 2008-12-01 00:21:35 -0700 | [diff] [blame] | 4441 | P: Helge Deller |
| 4442 | M: deller@gmx.de |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 4443 | L: linux-parisc@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4444 | W: http://www.parisc-linux.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4445 | 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] | 4446 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4447 | F: arch/parisc/ |
| 4448 | F: drivers/parisc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4449 | |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 4450 | PC87360 HARDWARE MONITORING DRIVER |
| 4451 | P: Jim Cromie |
| 4452 | M: jim.cromie@gmail.com |
| 4453 | L: lm-sensors@lm-sensors.org |
| 4454 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4455 | F: Documentation/hwmon/pc87360 |
| 4456 | F: drivers/hwmon/pc87360.c |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 4457 | |
| 4458 | PC8736x GPIO DRIVER |
| 4459 | P: Jim Cromie |
| 4460 | M: jim.cromie@gmail.com |
| 4461 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4462 | F: drivers/char/pc8736x_gpio.c |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 4463 | |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 4464 | PCA9532 LED DRIVER |
| 4465 | P: Riku Voipio |
| 4466 | M: riku.voipio@iki.fi |
| 4467 | S: Maintained |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 4468 | F: drivers/leds/leds-pca9532.c |
| 4469 | F: include/linux/leds-pca9532.h |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 4470 | |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 4471 | PCI ERROR RECOVERY |
| 4472 | P: Linas Vepstas |
| 4473 | M: linas@austin.ibm.com |
| 4474 | L: linux-kernel@vger.kernel.org |
Jesse Barnes | c1f69db | 2008-05-19 15:28:16 -0700 | [diff] [blame] | 4475 | L: linux-pci@vger.kernel.org |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 4476 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4477 | F: Documentation/PCI/pci-error-recovery.txt |
| 4478 | F: Documentation/powerpc/eeh-pci-error-recovery.txt |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 4479 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4480 | PCI SUBSYSTEM |
Greg Kroah-Hartman | af40b48 | 2008-04-17 10:22:27 -0700 | [diff] [blame] | 4481 | P: Jesse Barnes |
| 4482 | M: jbarnes@virtuousgeek.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4483 | L: linux-kernel@vger.kernel.org |
Jesse Barnes | 2905474 | 2008-05-03 08:35:49 -0700 | [diff] [blame] | 4484 | L: linux-pci@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4485 | 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] | 4486 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4487 | F: Documentation/PCI/ |
| 4488 | F: drivers/pci/ |
| 4489 | F: include/linux/pci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4490 | |
Kristen Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 4491 | PCIE HOTPLUG DRIVER |
| 4492 | P: Kristen Carlson Accardi |
| 4493 | M: kristen.c.accardi@intel.com |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 4494 | L: linux-pci@vger.kernel.org |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 4495 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4496 | F: drivers/pci/pcie/ |
Kristen Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 4497 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4498 | PCMCIA SUBSYSTEM |
Dominik Brodowski | 4230dfc | 2005-07-07 17:59:06 -0700 | [diff] [blame] | 4499 | P: Linux PCMCIA Team |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 4500 | L: linux-pcmcia@lists.infradead.org |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 4501 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4502 | 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] | 4503 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4504 | F: Documentation/pcmcia/ |
| 4505 | F: drivers/pcmcia/ |
| 4506 | F: include/pcmcia/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4507 | |
| 4508 | PCNET32 NETWORK DRIVER |
pcnet32@verizon.net | 04ce094 | 2007-02-16 10:07:12 -0600 | [diff] [blame] | 4509 | P: Don Fry |
| 4510 | M: pcnet32@verizon.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 4511 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4512 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4513 | F: drivers/net/pcnet32.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4514 | |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 4515 | PER-TASK DELAY ACCOUNTING |
Balbir Singh | abc5f23 | 2008-07-04 09:59:42 -0700 | [diff] [blame] | 4516 | P: Balbir Singh |
| 4517 | M: balbir@linux.vnet.ibm.com |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 4518 | L: linux-kernel@vger.kernel.org |
| 4519 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4520 | F: include/linux/delayacct.h |
| 4521 | F: kernel/delayacct.c |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 4522 | |
Paul Mackerras | 6c0b324 | 2009-04-09 09:27:37 +1000 | [diff] [blame] | 4523 | PERFORMANCE COUNTER SUBSYSTEM |
| 4524 | P: Peter Zijlstra |
| 4525 | M: a.p.zijlstra@chello.nl |
| 4526 | P: Paul Mackerras |
| 4527 | M: paulus@samba.org |
| 4528 | P: Ingo Molnar |
| 4529 | M: mingo@elte.hu |
| 4530 | L: linux-kernel@vger.kernel.org |
| 4531 | S: Supported |
| 4532 | |
Jim Cromie | dd49d0f | 2006-03-24 18:08:17 +0100 | [diff] [blame] | 4533 | PERSONALITY HANDLING |
| 4534 | P: Christoph Hellwig |
| 4535 | M: hch@infradead.org |
| 4536 | L: linux-abi-devel@lists.sourceforge.net |
| 4537 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4538 | F: include/linux/personality.h |
Jim Cromie | dd49d0f | 2006-03-24 18:08:17 +0100 | [diff] [blame] | 4539 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4540 | PHRAM MTD DRIVER |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 4541 | P: Joern Engel |
| 4542 | M: joern@lazybastard.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4543 | L: linux-mtd@lists.infradead.org |
| 4544 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4545 | F: drivers/mtd/devices/phram.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4546 | |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 4547 | PKTCDVD DRIVER |
| 4548 | P: Peter Osterlund |
| 4549 | M: petero2@telia.com |
| 4550 | L: linux-kernel@vger.kernel.org |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 4551 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4552 | F: drivers/block/pktcdvd.c |
| 4553 | F: include/linux/pktcdvd.h |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 4554 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4555 | POSIX CLOCKS and TIMERS |
Ingo Molnar | aa781ae | 2007-07-19 01:48:32 -0700 | [diff] [blame] | 4556 | P: Thomas Gleixner |
| 4557 | M: tglx@linutronix.de |
Horms | f1c3ddf | 2006-01-15 02:18:28 +0100 | [diff] [blame] | 4558 | L: linux-kernel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4559 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4560 | F: fs/timerfd.c |
| 4561 | F: include/linux/timer* |
| 4562 | F: kernel/*timer* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4563 | |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 4564 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
| 4565 | P: Anton Vorontsov |
| 4566 | M: cbou@mail.ru |
| 4567 | P: David Woodhouse |
| 4568 | M: dwmw2@infradead.org |
| 4569 | L: linux-kernel@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4570 | T: git git://git.infradead.org/battery-2.6.git |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 4571 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4572 | F: include/linux/power_supply.h |
| 4573 | F: drivers/power/power_supply* |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 4574 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4575 | PNP SUPPORT |
| 4576 | P: Adam Belay |
Bjorn Helgaas | 2d59f6a | 2008-08-01 10:01:12 -0600 | [diff] [blame] | 4577 | M: abelay@mit.edu |
| 4578 | P: Bjorn Helgaas |
| 4579 | M: bjorn.helgaas@hp.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4580 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4581 | F: drivers/pnp/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4582 | |
Vitaly Wool | 999445d | 2007-01-04 13:07:03 +0100 | [diff] [blame] | 4583 | PNXxxxx I2C DRIVER |
| 4584 | P: Vitaly Wool |
| 4585 | M: vitalywool@gmail.com |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 4586 | L: linux-i2c@vger.kernel.org |
Vitaly Wool | 999445d | 2007-01-04 13:07:03 +0100 | [diff] [blame] | 4587 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4588 | F: drivers/i2c/busses/i2c-pnx.c |
Vitaly Wool | 999445d | 2007-01-04 13:07:03 +0100 | [diff] [blame] | 4589 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4590 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
| 4591 | P: Paul Mackerras |
| 4592 | M: paulus@samba.org |
| 4593 | L: linux-ppp@vger.kernel.org |
| 4594 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4595 | F: drivers/net/ppp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4596 | |
| 4597 | PPP OVER ATM (RFC 2364) |
| 4598 | P: Mitchell Blank Jr |
| 4599 | M: mitch@sfgoth.com |
| 4600 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4601 | F: net/atm/pppoatm.c |
| 4602 | F: include/linux/atmppp.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4603 | |
| 4604 | PPP OVER ETHERNET |
| 4605 | P: Michal Ostrowski |
Chris Wright | 5e70b7f | 2008-06-09 16:07:28 -0700 | [diff] [blame] | 4606 | M: mostrows@earthlink.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4607 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4608 | F: drivers/net/pppoe.c |
| 4609 | F: drivers/net/pppox.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4610 | |
James Chapman | a6d2370 | 2007-06-27 15:53:17 -0700 | [diff] [blame] | 4611 | PPP OVER L2TP |
| 4612 | P: James Chapman |
| 4613 | M: jchapman@katalix.com |
| 4614 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4615 | F: drivers/net/pppol2tp.c |
| 4616 | F: include/linux/if_pppol2tp.h |
James Chapman | a6d2370 | 2007-06-27 15:53:17 -0700 | [diff] [blame] | 4617 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4618 | PREEMPTIBLE KERNEL |
| 4619 | P: Robert Love |
| 4620 | M: rml@tech9.net |
| 4621 | L: linux-kernel@vger.kernel.org |
| 4622 | L: kpreempt-tech@lists.sourceforge.net |
| 4623 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel |
| 4624 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4625 | F: Documentation/preempt-locking.txt |
| 4626 | F: include/linux/preempt.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4627 | |
| 4628 | PRISM54 WIRELESS DRIVER |
Luis R. Rodriguez | e88b34b | 2007-06-01 00:46:57 -0700 | [diff] [blame] | 4629 | P: Luis R. Rodriguez |
| 4630 | M: mcgrof@gmail.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 4631 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4632 | W: http://prism54.org |
| 4633 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4634 | F: drivers/net/wireless/prism54/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4635 | |
| 4636 | PROMISE DC4030 CACHING DISK CONTROLLER DRIVER |
| 4637 | P: Peter Denison |
| 4638 | M: promise@pnd-pc.demon.co.uk |
| 4639 | W: http://www.pnd-pc.demon.co.uk/promise/ |
| 4640 | S: Maintained |
| 4641 | |
Mikael Pettersson | b3277df | 2007-01-10 09:33:53 +0100 | [diff] [blame] | 4642 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
| 4643 | P: Mikael Pettersson |
| 4644 | M: mikpe@it.uu.se |
| 4645 | L: linux-ide@vger.kernel.org |
| 4646 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4647 | F: drivers/ata/sata_promise.* |
Mikael Pettersson | b3277df | 2007-01-10 09:33:53 +0100 | [diff] [blame] | 4648 | |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 4649 | PS3 NETWORK SUPPORT |
Masakazu Mokuno | ae3d246 | 2009-03-30 11:04:04 -0700 | [diff] [blame] | 4650 | P: Geoff Levand |
| 4651 | M: geoffrey.levand@am.sony.com |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 4652 | L: netdev@vger.kernel.org |
| 4653 | L: cbe-oss-dev@ozlabs.org |
| 4654 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4655 | F: drivers/net/ps3_gelic_net.* |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 4656 | |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 4657 | PS3 PLATFORM SUPPORT |
| 4658 | P: Geoff Levand |
| 4659 | M: geoffrey.levand@am.sony.com |
| 4660 | L: linuxppc-dev@ozlabs.org |
| 4661 | L: cbe-oss-dev@ozlabs.org |
| 4662 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4663 | F: arch/powerpc/boot/ps3* |
| 4664 | F: arch/powerpc/include/asm/lv1call.h |
| 4665 | F: arch/powerpc/include/asm/ps3*.h |
| 4666 | F: arch/powerpc/platforms/ps3/ |
| 4667 | F: drivers/*/ps3* |
| 4668 | F: drivers/ps3/ |
Geoff Levand | fec629b | 2009-04-16 09:05:40 +0000 | [diff] [blame] | 4669 | F: drivers/rtc/rtc-ps3.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4670 | F: drivers/usb/host/*ps3.c |
Geoff Levand | fec629b | 2009-04-16 09:05:40 +0000 | [diff] [blame] | 4671 | F: sound/ppc/snd_ps3* |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 4672 | |
Jim Paris | cffb4add | 2009-01-06 11:32:10 +0000 | [diff] [blame] | 4673 | PS3VRAM DRIVER |
| 4674 | P: Jim Paris |
| 4675 | M: jim@jtan.com |
| 4676 | L: cbe-oss-dev@ozlabs.org |
| 4677 | S: Maintained |
| 4678 | |
Christoph Hellwig | cf94a4d | 2009-04-30 15:08:12 -0700 | [diff] [blame] | 4679 | PTRACE SUPPORT |
| 4680 | P: Roland McGrath |
| 4681 | M: roland@redhat.com |
| 4682 | P: Oleg Nesterov |
| 4683 | M: oleg@redhat.com |
| 4684 | L: linux-kernel@vger.kernel.org |
| 4685 | S: Maintained |
| 4686 | F: include/asm-generic/syscall.h |
| 4687 | F: include/linux/ptrace.h |
| 4688 | F: include/linux/regset.h |
| 4689 | F: include/linux/tracehook.h |
| 4690 | F: kernel/ptrace.c |
| 4691 | |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 4692 | PVRUSB2 VIDEO4LINUX DRIVER |
| 4693 | P: Mike Isely |
| 4694 | M: isely@pobox.com |
Mike Isely | 16e9495 | 2007-01-03 18:08:06 -0300 | [diff] [blame] | 4695 | L: pvrusb2@isely.net (subscribers-only) |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 4696 | L: linux-media@vger.kernel.org |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 4697 | W: http://www.isely.net/pvrusb2/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4698 | 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] | 4699 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4700 | F: Documentation/video4linux/README.pvrusb2 |
| 4701 | F: drivers/media/video/pvrusb2/ |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 4702 | |
Eric Miao | 30ec261 | 2008-06-12 15:21:41 -0700 | [diff] [blame] | 4703 | PXA2xx/PXA3xx SUPPORT |
| 4704 | P: Eric Miao |
Eric Miao | 7517b3f | 2009-06-13 00:10:17 +0800 | [diff] [blame] | 4705 | M: eric.y.miao@gmail.com |
Eric Miao | 30ec261 | 2008-06-12 15:21:41 -0700 | [diff] [blame] | 4706 | P: Russell King |
| 4707 | M: linux@arm.linux.org.uk |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 4708 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4709 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4710 | F: arch/arm/mach-pxa/ |
| 4711 | F: drivers/pcmcia/pxa2xx* |
| 4712 | F: drivers/spi/pxa2xx* |
| 4713 | F: drivers/usb/gadget/pxa2* |
| 4714 | F: include/sound/pxa2xx-lib.h |
Mark Brown | bec4c99 | 2009-05-06 10:36:34 +0100 | [diff] [blame] | 4715 | F: sound/arm/pxa* |
| 4716 | F: sound/soc/pxa |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4717 | |
Eric Miao | a6bb4ba | 2009-02-19 21:13:21 +0800 | [diff] [blame] | 4718 | PXA168 SUPPORT |
| 4719 | P: Eric Miao |
Eric Miao | 7517b3f | 2009-06-13 00:10:17 +0800 | [diff] [blame] | 4720 | M: eric.y.miao@gmail.com |
Eric Miao | a6bb4ba | 2009-02-19 21:13:21 +0800 | [diff] [blame] | 4721 | P: Jason Chagas |
| 4722 | M: jason.chagas@marvell.com |
| 4723 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4724 | 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] | 4725 | S: Maintained |
Eric Miao | a6bb4ba | 2009-02-19 21:13:21 +0800 | [diff] [blame] | 4726 | |
Eric Miao | 5fa82eb | 2009-03-20 12:52:24 +0800 | [diff] [blame] | 4727 | PXA910 SUPPORT |
| 4728 | P: Eric Miao |
Eric Miao | 7517b3f | 2009-06-13 00:10:17 +0800 | [diff] [blame] | 4729 | M: eric.y.miao@gmail.com |
Eric Miao | 5fa82eb | 2009-03-20 12:52:24 +0800 | [diff] [blame] | 4730 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4731 | 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] | 4732 | S: Maintained |
Eric Miao | 5fa82eb | 2009-03-20 12:52:24 +0800 | [diff] [blame] | 4733 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 4734 | PXA MMCI DRIVER |
| 4735 | S: Orphan |
| 4736 | |
Robert Jarzmik | 57f63bc | 2009-02-11 13:04:19 -0800 | [diff] [blame] | 4737 | PXA RTC DRIVER |
| 4738 | P: Robert Jarzmik |
| 4739 | M: robert.jarzmik@free.fr |
| 4740 | L: rtc-linux@googlegroups.com |
| 4741 | S: Maintained |
| 4742 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4743 | QLOGIC QLA2XXX FC-SCSI DRIVER |
| 4744 | P: Andrew Vasquez |
Andrew Vasquez | 95e6a85 | 2006-03-14 14:41:04 -0800 | [diff] [blame] | 4745 | M: linux-driver@qlogic.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4746 | L: linux-scsi@vger.kernel.org |
| 4747 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4748 | F: Documentation/scsi/LICENSE.qla2xxx |
| 4749 | F: drivers/scsi/qla2xxx/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4750 | |
Ron Mercer | 5a4faa8 | 2006-07-25 00:40:21 -0700 | [diff] [blame] | 4751 | QLOGIC QLA3XXX NETWORK DRIVER |
| 4752 | P: Ron Mercer |
| 4753 | M: linux-driver@qlogic.com |
| 4754 | L: netdev@vger.kernel.org |
| 4755 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4756 | F: Documentation/networking/LICENSE.qla3xxx |
| 4757 | F: drivers/net/qla3xxx.* |
Ron Mercer | 5a4faa8 | 2006-07-25 00:40:21 -0700 | [diff] [blame] | 4758 | |
Ron Mercer | c4e84bd | 2008-09-18 11:56:28 -0400 | [diff] [blame] | 4759 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
| 4760 | P: Ron Mercer |
| 4761 | M: linux-driver@qlogic.com |
| 4762 | M: ron.mercer@qlogic.com |
| 4763 | L: netdev@vger.kernel.org |
| 4764 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4765 | F: drivers/net/qlge/ |
Ron Mercer | c4e84bd | 2008-09-18 11:56:28 -0400 | [diff] [blame] | 4766 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4767 | QNX4 FILESYSTEM |
| 4768 | P: Anders Larsen |
| 4769 | M: al@alarsen.net |
| 4770 | L: linux-kernel@vger.kernel.org |
| 4771 | W: http://www.alarsen.net/linux/qnx4fs/ |
| 4772 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 4773 | F: fs/qnx4/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4774 | F: include/linux/qnx4_fs.h |
| 4775 | F: include/linux/qnxtypes.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4776 | |
| 4777 | RADEON FRAMEBUFFER DISPLAY DRIVER |
Benjamin Herrenschmidt | 187a278 | 2005-04-16 15:26:40 -0700 | [diff] [blame] | 4778 | P: Benjamin Herrenschmidt |
| 4779 | M: benh@kernel.crashing.org |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 4780 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4781 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4782 | F: drivers/video/aty/radeon* |
| 4783 | F: include/linux/radeonfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4784 | |
| 4785 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
Benjamin Herrenschmidt | 187a278 | 2005-04-16 15:26:40 -0700 | [diff] [blame] | 4786 | P: Paul Mackerras |
| 4787 | M: paulus@samba.org |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 4788 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4789 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4790 | F: drivers/video/aty/aty128fb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4791 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 4792 | RALINK RT2X00 WIRELESS LAN DRIVER |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 4793 | P: rt2x00 project |
| 4794 | L: linux-wireless@vger.kernel.org |
Ivo van Doorn | 6d5eaaf | 2009-03-17 11:29:19 +0100 | [diff] [blame] | 4795 | L: users@rt2x00.serialmonkey.com |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 4796 | W: http://rt2x00.serialmonkey.com/ |
| 4797 | S: Maintained |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4798 | 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] | 4799 | F: drivers/net/wireless/rt2x00/ |
| 4800 | |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 4801 | RAMDISK RAM BLOCK DEVICE DRIVER |
| 4802 | P: Nick Piggin |
| 4803 | M: npiggin@suse.de |
| 4804 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4805 | F: Documentation/blockdev/ramdisk.txt |
| 4806 | F: drivers/block/brd.c |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 4807 | |
Matt Mackall | 9e95ce2 | 2005-04-16 15:25:56 -0700 | [diff] [blame] | 4808 | RANDOM NUMBER DRIVER |
| 4809 | P: Matt Mackall |
| 4810 | M: mpm@selenic.com |
| 4811 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4812 | F: drivers/char/random.c |
Matt Mackall | 9e95ce2 | 2005-04-16 15:25:56 -0700 | [diff] [blame] | 4813 | |
Matt Porter | 394b701 | 2005-11-07 01:00:15 -0800 | [diff] [blame] | 4814 | RAPIDIO SUBSYSTEM |
| 4815 | P: Matt Porter |
| 4816 | M: mporter@kernel.crashing.org |
| 4817 | L: linux-kernel@vger.kernel.org |
| 4818 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4819 | F: drivers/rapidio/ |
Matt Porter | 394b701 | 2005-11-07 01:00:15 -0800 | [diff] [blame] | 4820 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4821 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
| 4822 | P: Corey Thomas |
| 4823 | M: coreythomas@charter.net |
| 4824 | L: linux-wireless@vger.kernel.org |
| 4825 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4826 | F: drivers/net/wireless/ray* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4827 | |
| 4828 | RCUTORTURE MODULE |
| 4829 | P: Josh Triplett |
| 4830 | M: josh@freedesktop.org |
| 4831 | L: linux-kernel@vger.kernel.org |
| 4832 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4833 | F: Documentation/RCU/torture.txt |
| 4834 | F: kernel/rcutorture.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4835 | |
Florian Fainelli | c1f766b | 2008-02-06 22:39:44 +0100 | [diff] [blame] | 4836 | RDC R-321X SoC |
| 4837 | P: Florian Fainelli |
Florian Fainelli | 1e50cc9 | 2009-04-30 15:08:10 -0700 | [diff] [blame] | 4838 | M: florian@openwrt.org |
Florian Fainelli | c1f766b | 2008-02-06 22:39:44 +0100 | [diff] [blame] | 4839 | L: linux-kernel@vger.kernel.org |
| 4840 | S: Maintained |
| 4841 | |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 4842 | RDC R6040 FAST ETHERNET DRIVER |
| 4843 | P: Florian Fainelli |
Florian Fainelli | 1e50cc9 | 2009-04-30 15:08:10 -0700 | [diff] [blame] | 4844 | M: florian@openwrt.org |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 4845 | L: netdev@vger.kernel.org |
| 4846 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4847 | F: drivers/net/r6040.c |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 4848 | |
Andy Grover | a09ed66 | 2009-02-24 15:30:41 +0000 | [diff] [blame] | 4849 | RDS - RELIABLE DATAGRAM SOCKETS |
| 4850 | P: Andy Grover |
| 4851 | M: andy.grover@oracle.com |
Kyle McMartin | fbb5a55 | 2009-04-09 14:09:47 +0000 | [diff] [blame] | 4852 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
Andy Grover | a09ed66 | 2009-02-24 15:30:41 +0000 | [diff] [blame] | 4853 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4854 | F: net/rds/ |
Andy Grover | a09ed66 | 2009-02-24 15:30:41 +0000 | [diff] [blame] | 4855 | |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 4856 | READ-COPY UPDATE (RCU) |
| 4857 | P: Dipankar Sarma |
| 4858 | M: dipankar@in.ibm.com |
| 4859 | W: http://www.rdrop.com/users/paulmck/rclock/ |
| 4860 | L: linux-kernel@vger.kernel.org |
| 4861 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4862 | F: Documentation/RCU/rcu.txt |
| 4863 | F: Documentation/RCU/rcuref.txt |
| 4864 | F: include/linux/rcupdate.h |
| 4865 | F: include/linux/srcu.h |
| 4866 | F: kernel/rcupdate.c |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 4867 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4868 | REAL TIME CLOCK DRIVER |
| 4869 | P: Paul Gortmaker |
| 4870 | M: p_gortmaker@yahoo.com |
| 4871 | L: linux-kernel@vger.kernel.org |
| 4872 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4873 | F: Documentation/rtc.txt |
| 4874 | F: drivers/rtc/ |
| 4875 | F: include/linux/rtc.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4876 | |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 4877 | REAL TIME CLOCK (RTC) SUBSYSTEM |
| 4878 | P: Alessandro Zummo |
| 4879 | M: a.zummo@towertech.it |
Alessandro Zummo | 7646549 | 2006-12-10 02:19:06 -0800 | [diff] [blame] | 4880 | L: rtc-linux@googlegroups.com |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 4881 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4882 | F: Documentation/rtc.txt |
| 4883 | F: drivers/rtc/ |
| 4884 | F: include/linux/rtc.h |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 4885 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4886 | REISERFS FILE SYSTEM |
Jeff Mahoney | 76c4e5e | 2007-06-08 13:47:02 -0700 | [diff] [blame] | 4887 | L: reiserfs-devel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4888 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4889 | F: fs/reiserfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4890 | |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 4891 | RFKILL |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 4892 | P: Johannes Berg |
| 4893 | M: johannes@sipsolutions.net |
| 4894 | L: linux-wireless@vger.kernel.org |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 4895 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 4896 | F Documentation/rfkill.txt |
| 4897 | F: net/rfkill/ |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 4898 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4899 | RISCOM8 DRIVER |
| 4900 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4901 | F: Documentation/serial/riscom8.txt |
| 4902 | F: drivers/char/riscom8* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4903 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4904 | ROCKETPORT DRIVER |
| 4905 | P: Comtrol Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4906 | W: http://www.comtrol.com |
| 4907 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4908 | F: Documentation/serial/rocket.txt |
| 4909 | F: drivers/char/rocket* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4910 | |
| 4911 | ROSE NETWORK LAYER |
| 4912 | P: Ralf Baechle |
| 4913 | M: ralf@linux-mips.org |
| 4914 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 4915 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4916 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4917 | F: include/linux/rose.h |
| 4918 | F: include/net/rose.h |
| 4919 | F: net/rose/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4920 | |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 4921 | RTL8180 WIRELESS DRIVER |
John W. Linville | 96dd603 | 2008-11-12 14:51:56 -0500 | [diff] [blame] | 4922 | P: John W. Linville |
| 4923 | M: linville@tuxdriver.com |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 4924 | L: linux-wireless@vger.kernel.org |
| 4925 | W: http://linuxwireless.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4926 | 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] | 4927 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4928 | F: drivers/net/wireless/rtl818* |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 4929 | |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 4930 | RTL8187 WIRELESS DRIVER |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 4931 | P: Herton Ronaldo Krzesinski |
| 4932 | M: herton@mandriva.com.br |
| 4933 | P: Hin-Tak Leung |
| 4934 | M: htl10@users.sourceforge.net |
| 4935 | P: Larry Finger |
| 4936 | M: Larry.Finger@lwfinger.net |
| 4937 | L: linux-wireless@vger.kernel.org |
| 4938 | W: http://linuxwireless.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4939 | 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] | 4940 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4941 | F: drivers/net/wireless/rtl818x/rtl8187* |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 4942 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 4943 | S3 SAVAGE FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4944 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 4945 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 4946 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4947 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4948 | F: drivers/video/savage/ |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 4949 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4950 | S390 |
| 4951 | P: Martin Schwidefsky |
| 4952 | M: schwidefsky@de.ibm.com |
Martin Schwidefsky | 8301425 | 2006-09-20 15:58:58 +0200 | [diff] [blame] | 4953 | P: Heiko Carstens |
| 4954 | M: heiko.carstens@de.ibm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4955 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140cc | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 4956 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4957 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 4958 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4959 | F: arch/s390/ |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4960 | |
| 4961 | S390 NETWORK DRIVERS |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 4962 | P: Ursula Braun |
Ursula Braun | 23fcc8d | 2008-07-18 15:24:58 +0200 | [diff] [blame] | 4963 | M: ursula.braun@de.ibm.com |
Ursula Braun | b9192ad | 2007-10-22 16:16:15 +0200 | [diff] [blame] | 4964 | P: Frank Blaschka |
| 4965 | M: blaschka@linux.vnet.ibm.com |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4966 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140cc | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 4967 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4968 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 4969 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4970 | F: drivers/s390/net/ |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4971 | |
Felix Beck | feed9b6 | 2009-03-26 15:24:23 +0100 | [diff] [blame] | 4972 | S390 ZCRYPT DRIVER |
| 4973 | P: Felix Beck |
| 4974 | M: felix.beck@de.ibm.com |
| 4975 | P: Ralph Wuerthner |
| 4976 | M: ralph.wuerthner@de.ibm.com |
| 4977 | M: linux390@de.ibm.com |
| 4978 | L: linux-s390@vger.kernel.org |
| 4979 | S: Supported |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 4980 | F: drivers/s390/crypto/ |
Felix Beck | feed9b6 | 2009-03-26 15:24:23 +0100 | [diff] [blame] | 4981 | |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4982 | S390 ZFCP DRIVER |
Swen Schillig | 0033bb4 | 2007-12-18 11:16:14 +0100 | [diff] [blame] | 4983 | P: Christof Schmitt |
| 4984 | M: christof.schmitt@de.ibm.com |
| 4985 | P: Martin Peschke |
| 4986 | M: mp3@de.ibm.com |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4987 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140cc | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 4988 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4989 | W: http://www.ibm.com/developerworks/linux/linux390/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4990 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4991 | F: Documentation/s390/zfcpdump.txt |
| 4992 | F: drivers/s390/scsi/zfcp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4993 | |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 4994 | S390 IUCV NETWORK LAYER |
| 4995 | P: Ursula Braun |
Ursula Braun | 23fcc8d | 2008-07-18 15:24:58 +0200 | [diff] [blame] | 4996 | M: ursula.braun@de.ibm.com |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 4997 | M: linux390@de.ibm.com |
| 4998 | L: linux-s390@vger.kernel.org |
| 4999 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 5000 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5001 | F: drivers/s390/net/*iucv* |
| 5002 | F: include/net/iucv/ |
| 5003 | F: net/iucv/ |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 5004 | |
Ben Dooks | 4dde7f7 | 2008-06-30 22:40:38 +0100 | [diff] [blame] | 5005 | S3C24XX SD/MMC Driver |
| 5006 | P: Ben Dooks |
| 5007 | M: ben-linux@fluff.org |
| 5008 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 5009 | L: linux-kernel@vger.kernel.org |
| 5010 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5011 | F: drivers/mmc/host/s3cmci.* |
Ben Dooks | 4dde7f7 | 2008-06-30 22:40:38 +0100 | [diff] [blame] | 5012 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5013 | SAA7146 VIDEO4LINUX-2 DRIVER |
| 5014 | P: Michael Hunold |
| 5015 | M: michael@mihu.de |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 5016 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5017 | 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] | 5018 | W: http://www.mihu.de/linux/saa7146 |
| 5019 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5020 | F: drivers/media/common/saa7146* |
| 5021 | F: drivers/media/video/*7146* |
| 5022 | F: include/media/*7146* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5023 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5024 | SC1200 WDT DRIVER |
| 5025 | P: Zwane Mwaikambo |
Zwane Mwaikambo | 3c7bf1e | 2005-08-18 11:24:07 -0700 | [diff] [blame] | 5026 | M: zwane@arm.linux.org.uk |
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/watchdog/sc1200wdt.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5029 | |
| 5030 | SCHEDULER |
| 5031 | P: Ingo Molnar |
| 5032 | M: mingo@elte.hu |
Ingo Molnar | 01fad98 | 2009-04-08 17:27:59 +0200 | [diff] [blame] | 5033 | P: Peter Zijlstra |
| 5034 | M: peterz@infradead.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5035 | L: linux-kernel@vger.kernel.org |
| 5036 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5037 | F: kernel/sched* |
| 5038 | F: include/linux/sched.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5039 | |
| 5040 | SCSI CDROM DRIVER |
| 5041 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 5042 | M: axboe@kernel.dk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5043 | L: linux-scsi@vger.kernel.org |
| 5044 | W: http://www.kernel.dk |
| 5045 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5046 | F: drivers/scsi/sr* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5047 | |
| 5048 | SCSI SG DRIVER |
| 5049 | P: Doug Gilbert |
| 5050 | M: dgilbert@interlog.com |
| 5051 | L: linux-scsi@vger.kernel.org |
| 5052 | W: http://www.torque.net/sg |
| 5053 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5054 | F: drivers/scsi/sg.c |
| 5055 | F: include/scsi/sg.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5056 | |
| 5057 | SCSI SUBSYSTEM |
| 5058 | P: James E.J. Bottomley |
James Bottomley | c4e1608 | 2007-11-03 08:40:30 -0500 | [diff] [blame] | 5059 | M: James.Bottomley@HansenPartnership.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5060 | L: linux-scsi@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5061 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
| 5062 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git |
| 5063 | 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] | 5064 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5065 | F: drivers/scsi/ |
| 5066 | F: include/scsi/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5067 | |
| 5068 | SCSI TAPE DRIVER |
John Anthony Kazos Jr | dd4ef01 | 2007-05-09 08:06:37 +0200 | [diff] [blame] | 5069 | P: Kai Mäkisara |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5070 | M: Kai.Makisara@kolumbus.fi |
| 5071 | L: linux-scsi@vger.kernel.org |
| 5072 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5073 | F: Documentation/scsi/st.txt |
| 5074 | F: drivers/scsi/st* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5075 | |
| 5076 | SCTP PROTOCOL |
Sridhar Samudrala | 5f85813 | 2007-03-23 11:39:51 -0700 | [diff] [blame] | 5077 | P: Vlad Yasevich |
| 5078 | M: vladislav.yasevich@hp.com |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 5079 | P: Sridhar Samudrala |
| 5080 | M: sri@us.ibm.com |
Vlad Yasevich | 1a41879 | 2008-04-12 18:55:42 -0700 | [diff] [blame] | 5081 | L: linux-sctp@vger.kernel.org |
Sridhar Samudrala | 5f85813 | 2007-03-23 11:39:51 -0700 | [diff] [blame] | 5082 | W: http://lksctp.sourceforge.net |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 5083 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5084 | F: Documentation/networking/sctp.txt |
| 5085 | F: include/linux/sctp.h |
| 5086 | F: include/net/sctp/ |
| 5087 | F: net/sctp/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5088 | |
| 5089 | SCx200 CPU SUPPORT |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 5090 | P: Jim Cromie |
| 5091 | M: jim.cromie@gmail.com |
| 5092 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5093 | F: Documentation/i2c/busses/scx200_acb |
| 5094 | F: arch/x86/kernel/scx200_32.c |
| 5095 | F: drivers/watchdog/scx200_wdt.c |
| 5096 | F: drivers/i2c/busses/scx200* |
| 5097 | F: drivers/mtd/maps/scx200_docflash.c |
| 5098 | F: include/linux/scx200.h |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 5099 | |
| 5100 | SCx200 GPIO DRIVER |
| 5101 | P: Jim Cromie |
| 5102 | M: jim.cromie@gmail.com |
| 5103 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5104 | F: drivers/char/scx200_gpio.c |
| 5105 | F: include/linux/scx200_gpio.h |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 5106 | |
| 5107 | SCx200 HRT CLOCKSOURCE DRIVER |
| 5108 | P: Jim Cromie |
| 5109 | M: jim.cromie@gmail.com |
| 5110 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5111 | F: drivers/clocksource/scx200_hrt.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5112 | |
Sascha Sommer | 6a36913 | 2008-07-15 14:21:29 +0200 | [diff] [blame] | 5113 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
| 5114 | P: Sascha Sommer |
| 5115 | M: saschasommer@freenet.de |
| 5116 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
| 5117 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5118 | F: drivers/mmc/host/sdricoh_cs.c |
Sascha Sommer | 6a36913 | 2008-07-15 14:21:29 +0200 | [diff] [blame] | 5119 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 5120 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5121 | P: Pierre Ossman |
Pierre Ossman | 32710e8 | 2009-04-08 20:14:54 +0200 | [diff] [blame] | 5122 | M: pierre@ossman.eu |
Pierre Ossman | b8e2006 | 2009-03-14 21:17:32 +0100 | [diff] [blame] | 5123 | L: sdhci-devel@lists.ossman.eu |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5124 | S: Maintained |
| 5125 | |
Anton Vorontsov | 3085e9c | 2009-03-17 00:14:05 +0300 | [diff] [blame] | 5126 | SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) |
| 5127 | P: Anton Vorontsov |
| 5128 | M: avorontsov@ru.mvista.com |
| 5129 | L: linuxppc-dev@ozlabs.org |
| 5130 | L: sdhci-devel@lists.ossman.eu |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5131 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5132 | F: drivers/mmc/host/sdhci.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5133 | |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 5134 | SECURITY SUBSYSTEM |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 5135 | P: James Morris |
| 5136 | M: jmorris@namei.org |
| 5137 | L: linux-kernel@vger.kernel.org |
| 5138 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5139 | 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] | 5140 | W: http://security.wiki.kernel.org/ |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 5141 | S: Supported |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 5142 | F: security/ |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 5143 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5144 | SECURITY CONTACT |
| 5145 | P: Security Officers |
| 5146 | M: security@kernel.org |
| 5147 | S: Supported |
| 5148 | |
| 5149 | SELINUX SECURITY MODULE |
| 5150 | P: Stephen Smalley |
| 5151 | M: sds@tycho.nsa.gov |
| 5152 | P: James Morris |
| 5153 | M: jmorris@namei.org |
Stephen Smalley | 588a315 | 2007-02-23 09:20:09 -0500 | [diff] [blame] | 5154 | P: Eric Paris |
| 5155 | M: eparis@parisplace.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5156 | L: linux-kernel@vger.kernel.org (kernel issues) |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 5157 | L: selinux@tycho.nsa.gov (subscribers-only, general discussion) |
Stephen Smalley | f058925 | 2008-09-11 09:20:26 -0400 | [diff] [blame] | 5158 | W: http://selinuxproject.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5159 | 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] | 5160 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5161 | F: include/linux/selinux* |
| 5162 | F: security/selinux/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5163 | |
Jiri Slaby | cef2cf0 | 2007-05-08 00:31:45 -0700 | [diff] [blame] | 5164 | SENSABLE PHANTOM |
| 5165 | P: Jiri Slaby |
| 5166 | M: jirislaby@gmail.com |
| 5167 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5168 | F: drivers/misc/phantom.c |
| 5169 | F: include/linux/phantom.h |
Jiri Slaby | cef2cf0 | 2007-05-08 00:31:45 -0700 | [diff] [blame] | 5170 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 5171 | SERIAL ATA (SATA) SUBSYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5172 | P: Jeff Garzik |
| 5173 | M: jgarzik@pobox.com |
| 5174 | L: linux-ide@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5175 | 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] | 5176 | S: Supported |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 5177 | F: drivers/ata/ |
| 5178 | F: include/linux/ata.h |
| 5179 | F: include/linux/libata.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5180 | |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 5181 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
| 5182 | P: Sathya Perla |
| 5183 | M: sathyap@serverengines.com |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 5184 | P: Subbu Seetharaman |
| 5185 | M: subbus@serverengines.com |
| 5186 | L: netdev@vger.kernel.org |
| 5187 | W: http://www.serverengines.com |
| 5188 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5189 | F: drivers/net/benet/ |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 5190 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 5191 | SFC NETWORK DRIVER |
| 5192 | P: Steve Hodgson |
| 5193 | P: Ben Hutchings |
| 5194 | P: Robert Stonehouse |
| 5195 | M: linux-net-drivers@solarflare.com |
| 5196 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5197 | F: drivers/net/sfc/ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 5198 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5199 | SGI GRU DRIVER |
| 5200 | P: Jack Steiner |
| 5201 | M: steiner@sgi.com |
| 5202 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5203 | F: drivers/misc/sgi-gru/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5204 | |
| 5205 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER |
| 5206 | P: Pat Gefre |
| 5207 | M: pfg@sgi.com |
| 5208 | L: linux-ia64@vger.kernel.org |
| 5209 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5210 | F: Documentation/ia64/serial.txt |
| 5211 | F: drivers/serial/ioc?_serial.c |
| 5212 | F: include/linux/ioc?.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5213 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5214 | SGI VISUAL WORKSTATION 320 AND 540 |
| 5215 | P: Andrey Panin |
| 5216 | M: pazke@donpac.ru |
| 5217 | L: linux-visws-devel@lists.sf.net |
| 5218 | W: http://linux-visws.sf.net |
| 5219 | S: Maintained for 2.6. |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5220 | F: Documentation/sgi-visws.txt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5221 | |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 5222 | SGI XP/XPC/XPNET DRIVER |
Robin Holt | a06bba4 | 2009-04-13 14:40:17 -0700 | [diff] [blame] | 5223 | P: Robin Holt |
| 5224 | M: holt@sgi.com |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 5225 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5226 | F: drivers/misc/sgi-xp/ |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 5227 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5228 | SHARP LH SUPPORT (LH7952X & LH7A40X) |
| 5229 | P: Marc Singer |
| 5230 | M: elf@buici.com |
| 5231 | W: http://projects.buici.com/arm |
| 5232 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 5233 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5234 | F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen |
| 5235 | F: arch/arm/mach-lh7a40x/ |
| 5236 | F: drivers/serial/serial_lh7a40x.c |
| 5237 | F: drivers/usb/gadget/lh7a40* |
| 5238 | F: drivers/usb/host/ohci-lh7a40* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5239 | |
| 5240 | SHPC HOTPLUG DRIVER |
| 5241 | P: Kristen Carlson Accardi |
| 5242 | M: kristen.c.accardi@intel.com |
| 5243 | L: linux-pci@vger.kernel.org |
| 5244 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5245 | F: drivers/pci/hotplug/shpchp* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5246 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5247 | SIMTEC EB110ATX (Chalice CATS) |
| 5248 | P: Ben Dooks |
| 5249 | P: Vincent Sanders |
| 5250 | M: support@simtec.co.uk |
| 5251 | W: http://www.simtec.co.uk/products/EB110ATX/ |
| 5252 | S: Supported |
| 5253 | |
| 5254 | SIMTEC EB2410ITX (BAST) |
| 5255 | P: Ben Dooks |
| 5256 | P: Vincent Sanders |
| 5257 | M: support@simtec.co.uk |
| 5258 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
| 5259 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5260 | F: arch/arm/mach-s3c2410/ |
| 5261 | F: drivers/*/*s3c2410* |
| 5262 | F: drivers/*/*/*s3c2410* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5263 | |
Francois Romieu | 92aab3c | 2005-07-30 13:11:18 +0200 | [diff] [blame] | 5264 | SIS 190 ETHERNET DRIVER |
| 5265 | P: Francois Romieu |
| 5266 | M: romieu@fr.zoreil.com |
| 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/sis190.c |
Francois Romieu | 92aab3c | 2005-07-30 13:11:18 +0200 | [diff] [blame] | 5270 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5271 | SIS 900/7016 FAST ETHERNET DRIVER |
| 5272 | P: Daniele Venzano |
| 5273 | M: venza@brownhat.org |
| 5274 | W: http://www.brownhat.org/sis900.html |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 5275 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5276 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5277 | F: drivers/net/sis900.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5278 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5279 | SIS 96X I2C/SMBUS DRIVER |
| 5280 | P: Mark M. Hoffman |
| 5281 | M: mhoffman@lightlink.com |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 5282 | L: linux-i2c@vger.kernel.org |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5283 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5284 | F: Documentation/i2c/busses/i2c-sis96x |
| 5285 | F: drivers/i2c/busses/i2c-sis96x.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5286 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5287 | SIS FRAMEBUFFER DRIVER |
| 5288 | P: Thomas Winischhofer |
| 5289 | M: thomas@winischhofer.net |
| 5290 | W: http://www.winischhofer.net/linuxsisvga.shtml |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 5291 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5292 | F: Documentation/fb/sisfb.txt |
| 5293 | F: drivers/video/sis/ |
| 5294 | F: include/video/sisfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5295 | |
| 5296 | SIS USB2VGA DRIVER |
| 5297 | P: Thomas Winischhofer |
| 5298 | M: thomas@winischhofer.net |
| 5299 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
| 5300 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5301 | F: drivers/usb/misc/sisusbvga/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5302 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5303 | SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS |
| 5304 | P: Stephen Hemminger |
| 5305 | M: shemminger@linux-foundation.org |
| 5306 | L: netdev@vger.kernel.org |
| 5307 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5308 | F: drivers/net/skge.* |
| 5309 | F: drivers/net/sky2.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5310 | |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 5311 | SLAB ALLOCATOR |
| 5312 | P: Christoph Lameter |
Christoph Lameter | cde5353 | 2008-07-04 09:59:22 -0700 | [diff] [blame] | 5313 | M: cl@linux-foundation.org |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 5314 | P: Pekka Enberg |
| 5315 | M: penberg@cs.helsinki.fi |
Pekka Enberg | c76d118 | 2008-02-11 23:52:47 +0200 | [diff] [blame] | 5316 | P: Matt Mackall |
| 5317 | M: mpm@selenic.com |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 5318 | L: linux-mm@kvack.org |
| 5319 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5320 | F: include/linux/sl?b*.h |
| 5321 | F: mm/sl?b.c |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 5322 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5323 | SMC91x ETHERNET DRIVER |
| 5324 | P: Nicolas Pitre |
| 5325 | M: nico@cam.org |
| 5326 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5327 | F: drivers/net/smc91x.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5328 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5329 | SMSC47B397 HARDWARE MONITOR DRIVER |
| 5330 | P: Mark M. Hoffman |
| 5331 | M: mhoffman@lightlink.com |
| 5332 | L: lm-sensors@lm-sensors.org |
| 5333 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5334 | F: Documentation/hwmon/smsc47b397 |
| 5335 | F: drivers/hwmon/smsc47b397.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5336 | |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 5337 | SMSC911x ETHERNET DRIVER |
| 5338 | P: Steve Glendinning |
| 5339 | M: steve.glendinning@smsc.com |
| 5340 | L: netdev@vger.kernel.org |
| 5341 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5342 | F: include/linux/smsc911x.h |
| 5343 | F: drivers/net/smsc911x.* |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 5344 | |
Steve Glendinning | 2cb3772 | 2008-12-11 20:54:30 -0800 | [diff] [blame] | 5345 | SMSC9420 PCI ETHERNET DRIVER |
| 5346 | P: Steve Glendinning |
| 5347 | M: steve.glendinning@smsc.com |
| 5348 | L: netdev@vger.kernel.org |
| 5349 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5350 | F: drivers/net/smsc9420.* |
Steve Glendinning | 2cb3772 | 2008-12-11 20:54:30 -0800 | [diff] [blame] | 5351 | |
Ben Nizette | b54f286 | 2008-03-13 22:27:30 +1100 | [diff] [blame] | 5352 | SMX UIO Interface |
| 5353 | P: Ben Nizette |
| 5354 | M: bn@niasdigital.com |
| 5355 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5356 | F: drivers/uio/uio_smx.c |
Ben Nizette | b54f286 | 2008-03-13 22:27:30 +1100 | [diff] [blame] | 5357 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5358 | SN-IA64 (Itanium) SUB-PLATFORM |
| 5359 | P: Jes Sorensen |
| 5360 | M: jes@sgi.com |
| 5361 | L: linux-altix@sgi.com |
| 5362 | L: linux-ia64@vger.kernel.org |
| 5363 | W: http://www.sgi.com/altix |
| 5364 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5365 | F: arch/ia64/sn/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5366 | |
Guennadi Liakhovetski | 668acf3 | 2008-07-19 07:54:43 -0300 | [diff] [blame] | 5367 | SOC-CAMERA V4L2 SUBSYSTEM |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5368 | P: Guennadi Liakhovetski |
| 5369 | M: g.liakhovetski@gmx.de |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 5370 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5371 | 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] | 5372 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5373 | F: include/media/v4l2* |
| 5374 | F: drivers/media/video/v4l2* |
Guennadi Liakhovetski | 668acf3 | 2008-07-19 07:54:43 -0300 | [diff] [blame] | 5375 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5376 | SOEKRIS NET48XX LED SUPPORT |
| 5377 | P: Chris Boot |
| 5378 | M: bootc@bootc.net |
| 5379 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5380 | F: drivers/leds/leds-net48xx.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5381 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5382 | SOFTWARE RAID (Multiple Disks) SUPPORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5383 | P: Neil Brown |
NeilBrown | 524418b | 2007-01-26 00:57:01 -0800 | [diff] [blame] | 5384 | M: neilb@suse.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5385 | L: linux-raid@vger.kernel.org |
NeilBrown | 524418b | 2007-01-26 00:57:01 -0800 | [diff] [blame] | 5386 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5387 | F: drivers/md/ |
| 5388 | F: include/linux/raid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5389 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5390 | SONIC NETWORK DRIVER |
| 5391 | P: Thomas Bogendoerfer |
| 5392 | M: tsbogend@alpha.franken.de |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 5393 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5394 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5395 | F: drivers/net/sonic.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5396 | |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 5397 | SONICS SILICON BACKPLANE DRIVER (SSB) |
| 5398 | P: Michael Buesch |
| 5399 | M: mb@bu3sch.de |
| 5400 | L: netdev@vger.kernel.org |
| 5401 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5402 | F: drivers/ssb/ |
| 5403 | F: include/linux/ssb/ |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 5404 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5405 | SONY VAIO CONTROL DEVICE DRIVER |
Mattia Dongili | 0d477fa | 2007-02-08 20:16:40 +0100 | [diff] [blame] | 5406 | P: Mattia Dongili |
| 5407 | M: malattia@linux.it |
Mattia Dongili | 5b18167 | 2007-03-12 21:43:57 +0100 | [diff] [blame] | 5408 | L: linux-acpi@vger.kernel.org |
| 5409 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5410 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5411 | F: Documentation/laptops/sony-laptop.txt |
| 5412 | F: drivers/char/sonypi.c |
| 5413 | F: drivers/platform/x86/sony-laptop.c |
| 5414 | F: include/linux/sony-laptop.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5415 | |
Alex Dubov | baf8532 | 2008-02-09 10:20:54 -0800 | [diff] [blame] | 5416 | SONY MEMORYSTICK CARD SUPPORT |
| 5417 | P: Alex Dubov |
| 5418 | M: oakad@yahoo.com |
| 5419 | L: linux-kernel@vger.kernel.org |
| 5420 | W: http://tifmxx.berlios.de/ |
| 5421 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5422 | F: drivers/memstick/host/tifm_ms.c |
Alex Dubov | baf8532 | 2008-02-09 10:20:54 -0800 | [diff] [blame] | 5423 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5424 | SOUND |
| 5425 | P: Jaroslav Kysela |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 5426 | M: perex@perex.cz |
Takashi Iwai | 281712f | 2008-08-19 13:10:04 +0200 | [diff] [blame] | 5427 | P: Takashi Iwai |
| 5428 | M: tiwai@suse.de |
Takashi Iwai | 8262204 | 2007-04-16 12:32:52 +0200 | [diff] [blame] | 5429 | L: alsa-devel@alsa-project.org (subscribers-only) |
Joe Perches | 3126a17 | 2009-04-15 23:38:45 -0700 | [diff] [blame] | 5430 | W: http://www.alsa-project.org/ |
| 5431 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git |
| 5432 | T: git git://git.alsa-project.org/alsa-kernel.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5433 | S: Maintained |
Joe Perches | 3126a17 | 2009-04-15 23:38:45 -0700 | [diff] [blame] | 5434 | F: Documentation/sound/ |
| 5435 | F: include/sound/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5436 | F: sound/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5437 | |
Mark Brown | bd903bd | 2008-11-19 19:16:05 +0000 | [diff] [blame] | 5438 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 5439 | P: Liam Girdwood |
Liam Girdwood | b0b8daf | 2008-09-18 14:36:37 +0100 | [diff] [blame] | 5440 | M: lrg@slimlogic.co.uk |
Mark Brown | 2cad0ad | 2008-01-10 14:33:07 +0100 | [diff] [blame] | 5441 | P: Mark Brown |
| 5442 | M: broonie@opensource.wolfsonmicro.com |
Mark Brown | bb74a6e | 2009-05-13 17:23:54 +0100 | [diff] [blame] | 5443 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git |
Takashi Iwai | 8262204 | 2007-04-16 12:32:52 +0200 | [diff] [blame] | 5444 | L: alsa-devel@alsa-project.org (subscribers-only) |
Liam Girdwood | b0b8daf | 2008-09-18 14:36:37 +0100 | [diff] [blame] | 5445 | W: http://alsa-project.org/main/index.php/ASoC |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 5446 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5447 | F: sound/soc/ |
Mark Brown | e6e5512 | 2009-05-05 11:10:24 +0100 | [diff] [blame] | 5448 | F: include/sound/soc* |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 5449 | |
Sam Ravnborg | 473321f | 2009-01-04 15:47:49 -0800 | [diff] [blame] | 5450 | SPARC + UltraSPARC (sparc/sparc64) |
| 5451 | P: David S. Miller |
| 5452 | M: davem@davemloft.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5453 | L: sparclinux@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5454 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git |
| 5455 | 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] | 5456 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5457 | F: arch/sparc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5458 | |
| 5459 | SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER |
| 5460 | P: Roger Wolff |
| 5461 | M: R.E.Wolff@BitWizard.nl |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 5462 | L: linux-kernel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5463 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5464 | F: Documentation/serial/specialix.txt |
| 5465 | F: drivers/char/specialix* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5466 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5467 | SPI SUBSYSTEM |
| 5468 | P: David Brownell |
| 5469 | M: dbrownell@users.sourceforge.net |
| 5470 | L: spi-devel-general@lists.sourceforge.net |
| 5471 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5472 | F: Documentation/spi/ |
| 5473 | F: drivers/spi/ |
| 5474 | F: include/linux/spi/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5475 | |
Jim Lewis | 2752e40 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 5476 | SPIDERNET NETWORK DRIVER for CELL |
Jens Osterkamp | cb8da8a | 2008-01-11 13:44:35 +0100 | [diff] [blame] | 5477 | P: Ishizaki Kou |
| 5478 | M: kou.ishizaki@toshiba.co.jp |
| 5479 | P: Jens Osterkamp |
| 5480 | M: jens@de.ibm.com |
Jim Lewis | 2752e40 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 5481 | L: netdev@vger.kernel.org |
| 5482 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5483 | F: Documentation/networking/spider_net.txt |
| 5484 | F: drivers/net/spider_net* |
Jim Lewis | 2752e40 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 5485 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5486 | SPU FILE SYSTEM |
| 5487 | P: Jeremy Kerr |
| 5488 | M: jk@ozlabs.org |
| 5489 | L: linuxppc-dev@ozlabs.org |
| 5490 | L: cbe-oss-dev@ozlabs.org |
| 5491 | W: http://www.ibm.com/developerworks/power/cell/ |
| 5492 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5493 | F: Documentation/filesystems/spufs.txt |
| 5494 | F: arch/powerpc/platforms/cell/spufs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5495 | |
Phillip Lougher | fc55584 | 2009-01-05 08:46:29 +0000 | [diff] [blame] | 5496 | SQUASHFS FILE SYSTEM |
| 5497 | P: Phillip Lougher |
| 5498 | M: phillip@lougher.demon.co.uk |
| 5499 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
| 5500 | W: http://squashfs.org.uk |
| 5501 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5502 | F: Documentation/filesystems/squashfs.txt |
| 5503 | F: fs/squashfs/ |
Phillip Lougher | fc55584 | 2009-01-05 08:46:29 +0000 | [diff] [blame] | 5504 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5505 | SRM (Alpha) environment access |
| 5506 | P: Jan-Benedict Glaw |
| 5507 | M: jbglaw@lug-owl.de |
| 5508 | L: linux-kernel@vger.kernel.org |
| 5509 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5510 | F: arch/alpha/kernel/srm_env.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5511 | |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 5512 | STABLE BRANCH |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5513 | P: Greg Kroah-Hartman |
| 5514 | M: greg@kroah.com |
| 5515 | P: Chris Wright |
| 5516 | M: chrisw@sous-sol.org |
| 5517 | L: stable@kernel.org |
| 5518 | S: Maintained |
| 5519 | |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 5520 | STAGING SUBSYSTEM |
| 5521 | P: Greg Kroah-Hartman |
| 5522 | M: gregkh@suse.de |
| 5523 | L: linux-kernel@vger.kernel.org |
| 5524 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
| 5525 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5526 | F: drivers/staging/ |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 5527 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5528 | STARFIRE/DURALAN NETWORK DRIVER |
| 5529 | P: Ion Badulescu |
| 5530 | M: ionut@cs.columbia.edu |
| 5531 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5532 | F: drivers/net/starfire* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5533 | |
| 5534 | STARMODE RADIO IP (STRIP) PROTOCOL DRIVER |
| 5535 | W: http://mosquitonet.Stanford.EDU/strip.html |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 5536 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5537 | F: drivers/net/wireless/strip.c |
| 5538 | F: include/linux/if_strip.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5539 | |
| 5540 | STRADIS MPEG-2 DECODER DRIVER |
| 5541 | P: Nathan Laredo |
| 5542 | M: laredo@gnu.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5543 | W: http://www.stradis.com/ |
| 5544 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5545 | F: drivers/media/video/stradis.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5546 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5547 | SUN3/3X |
| 5548 | P: Sam Creasey |
| 5549 | M: sammy@sammy.net |
| 5550 | W: http://sammy.net/sun3/ |
| 5551 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5552 | F: arch/m68k/kernel/*sun3* |
| 5553 | F: arch/m68k/sun3*/ |
| 5554 | F: arch/m68k/include/asm/sun3* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5555 | |
Paul Mundt | 2cbb12a | 2007-11-19 13:08:37 +0900 | [diff] [blame] | 5556 | SUPERH |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5557 | P: Paul Mundt |
| 5558 | M: lethal@linux-sh.org |
Paul Mundt | 2cbb12a | 2007-11-19 13:08:37 +0900 | [diff] [blame] | 5559 | L: linux-sh@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5560 | W: http://www.linux-sh.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5561 | 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] | 5562 | S: Supported |
Paul Mundt | 066069e | 2009-04-14 06:32:08 +0900 | [diff] [blame] | 5563 | F: Documentation/sh/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5564 | F: arch/sh/ |
Paul Mundt | 066069e | 2009-04-14 06:32:08 +0900 | [diff] [blame] | 5565 | F: drivers/sh/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5566 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 5567 | SUSPEND TO RAM |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5568 | P: Len Brown |
| 5569 | M: len.brown@intel.com |
| 5570 | P: Pavel Machek |
Pavel Machek | ef35ce2 | 2009-02-18 14:48:16 -0800 | [diff] [blame] | 5571 | M: pavel@ucw.cz |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5572 | P: Rafael J. Wysocki |
| 5573 | M: rjw@sisk.pl |
| 5574 | L: linux-pm@lists.linux-foundation.org |
| 5575 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5576 | F: Documentation/power/ |
| 5577 | F: arch/x86/kernel/acpi/ |
| 5578 | F: drivers/base/power/ |
| 5579 | F: kernel/power/ |
| 5580 | F: include/linux/suspend.h |
| 5581 | F: include/linux/freezer.h |
| 5582 | F: include/linux/pm.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5583 | |
| 5584 | SVGA HANDLING |
| 5585 | P: Martin Mares |
| 5586 | M: mj@ucw.cz |
| 5587 | L: linux-video@atrey.karlin.mff.cuni.cz |
| 5588 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5589 | F: Documentation/svga.txt |
| 5590 | F: arch/x86/boot/video* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5591 | |
| 5592 | SYSV FILESYSTEM |
| 5593 | P: Christoph Hellwig |
| 5594 | M: hch@infradead.org |
| 5595 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5596 | F: Documentation/filesystems/sysv-fs.txt |
| 5597 | F: fs/sysv/ |
| 5598 | F: include/linux/sysv_fs.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5599 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5600 | TASKSTATS STATISTICS INTERFACE |
Balbir Singh | abc5f23 | 2008-07-04 09:59:42 -0700 | [diff] [blame] | 5601 | P: Balbir Singh |
| 5602 | M: balbir@linux.vnet.ibm.com |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5603 | L: linux-kernel@vger.kernel.org |
| 5604 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5605 | F: Documentation/accounting/taskstats* |
| 5606 | F: include/linux/taskstats* |
| 5607 | F: kernel/taskstats.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5608 | |
Stephen Hemminger | 781b456 | 2006-07-10 20:25:29 -0700 | [diff] [blame] | 5609 | TC CLASSIFIER |
| 5610 | P: Jamal Hadi Salim |
| 5611 | M: hadi@cyberus.ca |
| 5612 | L: netdev@vger.kernel.org |
| 5613 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5614 | F: include/linux/pkt_cls.h |
| 5615 | F: include/net/pkt_cls.h |
| 5616 | F: net/sched/ |
Stephen Hemminger | 781b456 | 2006-07-10 20:25:29 -0700 | [diff] [blame] | 5617 | |
Wong Hoi Sing Edison | 5067f08 | 2006-09-13 20:31:13 -0700 | [diff] [blame] | 5618 | TCP LOW PRIORITY MODULE |
| 5619 | P: Wong Hoi Sing, Edison |
| 5620 | M: hswong3i@gmail.com |
| 5621 | P: Hung Hing Lun, Mike |
| 5622 | M: hlhung3i@gmail.com |
| 5623 | W: http://tcp-lp-mod.sourceforge.net/ |
| 5624 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5625 | F: net/ipv4/tcp_lp.c |
Wong Hoi Sing Edison | 5067f08 | 2006-09-13 20:31:13 -0700 | [diff] [blame] | 5626 | |
Andy Gospodarek | 1a348cc | 2007-09-17 18:50:36 -0700 | [diff] [blame] | 5627 | TEHUTI ETHERNET DRIVER |
| 5628 | P: Alexander Indenbaum |
| 5629 | M: baum@tehutinetworks.net |
| 5630 | P: Andy Gospodarek |
| 5631 | M: andy@greyhouse.net |
| 5632 | L: netdev@vger.kernel.org |
| 5633 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5634 | F: drivers/net/tehuti* |
Andy Gospodarek | 1a348cc | 2007-09-17 18:50:36 -0700 | [diff] [blame] | 5635 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5636 | Telecom Clock Driver for MCPL0010 |
| 5637 | P: Mark Gross |
| 5638 | M: mark.gross@intel.com |
| 5639 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5640 | F: drivers/char/tlclk.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5641 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 5642 | TENSILICA XTENSA PORT (xtensa) |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5643 | P: Chris Zankel |
| 5644 | M: chris@zankel.net |
| 5645 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5646 | F: arch/xtensa/ |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5647 | |
| 5648 | THINKPAD ACPI EXTRAS DRIVER |
| 5649 | P: Henrique de Moraes Holschuh |
| 5650 | M: ibm-acpi@hmh.eng.br |
| 5651 | L: ibm-acpi-devel@lists.sourceforge.net |
| 5652 | W: http://ibm-acpi.sourceforge.net |
| 5653 | W: http://thinkwiki.org/wiki/Ibm-acpi |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5654 | 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] | 5655 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5656 | F: drivers/platform/x86/thinkpad_acpi.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5657 | |
Alex Dubov | 4020f2d | 2006-10-04 02:15:37 -0700 | [diff] [blame] | 5658 | TI FLASH MEDIA INTERFACE DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5659 | P: Alex Dubov |
| 5660 | M: oakad@yahoo.com |
| 5661 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5662 | F: drivers/misc/tifm* |
| 5663 | F: drivers/mmc/host/tifm_sd.c |
| 5664 | F: include/linux/tifm.h |
Alex Dubov | 4020f2d | 2006-10-04 02:15:37 -0700 | [diff] [blame] | 5665 | |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5666 | TIPC NETWORK LAYER |
| 5667 | P: Per Liden |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 5668 | M: per.liden@ericsson.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5669 | P: Jon Maloy |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 5670 | M: jon.maloy@ericsson.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5671 | P: Allan Stephens |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 5672 | M: allan.stephens@windriver.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5673 | L: tipc-discussion@lists.sourceforge.net |
| 5674 | W: http://tipc.sourceforge.net/ |
| 5675 | W: http://tipc.cslab.ericsson.net/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5676 | T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5677 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5678 | F: include/linux/tipc*.h |
| 5679 | F: include/net/tipc/ |
| 5680 | F: net/tipc/ |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5681 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5682 | TLAN NETWORK DRIVER |
| 5683 | P: Samuel Chessman |
| 5684 | M: chessman@tux.org |
Gabriel Craciunescu | 88c07dd | 2007-11-22 19:43:36 +0800 | [diff] [blame] | 5685 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5686 | W: http://sourceforge.net/projects/tlan/ |
| 5687 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5688 | F: Documentation/networking/tlan.txt |
| 5689 | F: drivers/net/tlan.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5690 | |
Kentaro Takeda | d74db3b | 2009-02-05 17:18:18 +0900 | [diff] [blame] | 5691 | TOMOYO SECURITY MODULE |
| 5692 | P: Kentaro Takeda |
| 5693 | M: takedakn@nttdata.co.jp |
| 5694 | P: Tetsuo Handa |
| 5695 | M: penguin-kernel@I-love.SAKURA.ne.jp |
| 5696 | L: linux-kernel@vger.kernel.org (kernel issues) |
| 5697 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English) |
| 5698 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
| 5699 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) |
| 5700 | W: http://tomoyo.sourceforge.jp/ |
| 5701 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/ |
| 5702 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5703 | F: security/tomoyo/ |
Kentaro Takeda | d74db3b | 2009-02-05 17:18:18 +0900 | [diff] [blame] | 5704 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5705 | TOSHIBA ACPI EXTRAS DRIVER |
Johannes Berg | 1506553 | 2009-03-30 12:02:35 +0200 | [diff] [blame] | 5706 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5707 | F: drivers/platform/x86/toshiba_acpi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5708 | |
| 5709 | TOSHIBA SMM DRIVER |
| 5710 | P: Jonathan Buzzard |
| 5711 | M: jonathan@buzzard.org.uk |
| 5712 | L: tlinux-users@tce.toshiba-dme.co.jp |
| 5713 | W: http://www.buzzard.org.uk/toshiba/ |
| 5714 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5715 | F: drivers/char/toshiba.c |
| 5716 | F: include/linux/toshiba.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5717 | |
Pierre Ossman | d719f90 | 2009-03-24 21:06:09 +0100 | [diff] [blame] | 5718 | TMIO MMC DRIVER |
| 5719 | P: Ian Molton |
| 5720 | M: ian@mnementh.co.uk |
| 5721 | S: Maintained |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 5722 | F: drivers/mmc/host/tmio_mmc.* |
Pierre Ossman | d719f90 | 2009-03-24 21:06:09 +0100 | [diff] [blame] | 5723 | |
Hugh Dickins | 98f3260 | 2009-05-21 20:33:58 +0100 | [diff] [blame] | 5724 | TMPFS (SHMEM FILESYSTEM) |
| 5725 | P: Hugh Dickins |
| 5726 | M: hugh.dickins@tiscali.co.uk |
| 5727 | L: linux-mm@kvack.org |
| 5728 | S: Maintained |
| 5729 | F: include/linux/shmem_fs.h |
| 5730 | F: mm/shmem.c |
| 5731 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5732 | TPM DEVICE DRIVER |
Rajiv Andrade | 141c024 | 2008-07-21 14:21:37 -0700 | [diff] [blame] | 5733 | P: Debora Velarde |
| 5734 | M: debora@linux.vnet.ibm.com |
| 5735 | P: Rajiv Andrade |
| 5736 | M: srajiv@linux.vnet.ibm.com |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5737 | W: http://tpmdd.sourceforge.net |
| 5738 | P: Marcel Selhorst |
Marcel Selhorst | 7dcce13 | 2009-02-11 13:04:27 -0800 | [diff] [blame] | 5739 | M: m.selhorst@sirrix.com |
| 5740 | W: http://www.sirrix.com |
Rajiv Andrade | 63a10df | 2008-10-15 22:04:36 -0700 | [diff] [blame] | 5741 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5742 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5743 | F: drivers/char/tpm/ |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5744 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5745 | TRIVIAL PATCHES |
Jiri Kosina | 2b6a2f5 | 2008-11-14 11:55:03 +0100 | [diff] [blame] | 5746 | P: Jiri Kosina |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 5747 | M: trivial@kernel.org |
| 5748 | L: linux-kernel@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5749 | 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] | 5750 | S: Maintained |
| 5751 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5752 | TTY LAYER |
| 5753 | P: Alan Cox |
| 5754 | M: alan@lxorguk.ukuu.org.uk |
| 5755 | L: linux-kernel@vger.kernel.org |
| 5756 | S: Maintained |
Alan Cox | e960bf7 | 2009-06-11 14:04:57 +0100 | [diff] [blame] | 5757 | T: stgit http://zeniv.linux.org.uk/~alan/ttydev/ |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5758 | |
Grant Grundler | 740db6d | 2008-02-17 11:53:49 -0700 | [diff] [blame] | 5759 | TULIP NETWORK DRIVERS |
| 5760 | P: Grant Grundler |
| 5761 | M: grundler@parisc-linux.org |
| 5762 | P: Kyle McMartin |
Kyle McMartin | 42a5a8a | 2008-06-06 17:16:17 -0400 | [diff] [blame] | 5763 | M: kyle@mcmartin.ca |
Grant Grundler | 740db6d | 2008-02-17 11:53:49 -0700 | [diff] [blame] | 5764 | L: netdev@vger.kernel.org |
| 5765 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5766 | F: drivers/net/tulip/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5767 | |
| 5768 | TUN/TAP driver |
| 5769 | P: Maxim Krasnyansky |
Dave Jones | 66777b7 | 2006-03-25 03:07:53 -0800 | [diff] [blame] | 5770 | M: maxk@qualcomm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5771 | L: vtun@office.satix.net |
| 5772 | W: http://vtun.sourceforge.net/tun |
| 5773 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5774 | F: Documentation/networking/tuntap.txt |
| 5775 | F: arch/um/os-Linux/drivers/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5776 | |
Maciej W. Rozycki | b454cc6 | 2007-02-05 16:28:25 -0800 | [diff] [blame] | 5777 | TURBOCHANNEL SUBSYSTEM |
| 5778 | P: Maciej W. Rozycki |
| 5779 | M: macro@linux-mips.org |
| 5780 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5781 | F: drivers/tc/ |
| 5782 | F: include/linux/tc.h |
Maciej W. Rozycki | b454cc6 | 2007-02-05 16:28:25 -0800 | [diff] [blame] | 5783 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5784 | U14-34F SCSI DRIVER |
| 5785 | P: Dario Ballabio |
| 5786 | M: ballabio_dario@emc.com |
| 5787 | L: linux-scsi@vger.kernel.org |
| 5788 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5789 | F: drivers/scsi/u14-34f.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5790 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5791 | UBI FILE SYSTEM (UBIFS) |
| 5792 | P: Artem Bityutskiy |
| 5793 | M: dedekind@infradead.org |
| 5794 | P: Adrian Hunter |
| 5795 | M: ext-adrian.hunter@nokia.com |
| 5796 | L: linux-mtd@lists.infradead.org |
Artem Bityutskiy | e2966cb | 2008-10-25 18:54:04 +0300 | [diff] [blame] | 5797 | T: git git://git.infradead.org/ubifs-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5798 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
| 5799 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5800 | F: Documentation/filesystems/ubifs.txt |
| 5801 | F: fs/ubifs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5802 | |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5803 | UCLINUX (AND M68KNOMMU) |
| 5804 | P: Greg Ungerer |
| 5805 | M: gerg@uclinux.org |
| 5806 | W: http://www.uclinux.org/ |
| 5807 | L: uclinux-dev@uclinux.org (subscribers-only) |
| 5808 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5809 | F: arch/m68knommu/ |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5810 | |
Robert P. J. Day | 14fadca | 2009-04-21 12:24:47 -0700 | [diff] [blame] | 5811 | UCLINUX FOR RENESAS H8/300 (H8300) |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5812 | P: Yoshinori Sato |
| 5813 | M: ysato@users.sourceforge.jp |
| 5814 | W: http://uclinux-h8.sourceforge.jp/ |
| 5815 | S: Supported |
| 5816 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5817 | UDF FILESYSTEM |
Jan Kara | 800fdfb | 2008-02-08 04:20:51 -0800 | [diff] [blame] | 5818 | P: Jan Kara |
| 5819 | M: jack@suse.cz |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5820 | W: http://linux-udf.sourceforge.net |
| 5821 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5822 | F: Documentation/filesystems/udf.txt |
| 5823 | F: fs/udf/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5824 | |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5825 | UFS FILESYSTEM |
| 5826 | P: Evgeniy Dushistov |
| 5827 | M: dushistov@mail.ru |
| 5828 | L: linux-kernel@vger.kernel.org |
| 5829 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5830 | F: Documentation/filesystems/ufs.txt |
| 5831 | F: fs/ufs/ |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5832 | |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 5833 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
| 5834 | P: David Vrabel |
| 5835 | M: david.vrabel@csr.com |
| 5836 | L: linux-usb@vger.kernel.org |
| 5837 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5838 | F: drivers/uwb/* |
| 5839 | F: include/linux/uwb.h |
| 5840 | F: include/linux/uwb/ |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 5841 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5842 | UNIFORM CDROM DRIVER |
| 5843 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 5844 | M: axboe@kernel.dk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5845 | L: linux-kernel@vger.kernel.org |
| 5846 | W: http://www.kernel.dk |
| 5847 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5848 | F: Documentation/cdrom/ |
| 5849 | F: drivers/cdrom/cdrom.c |
| 5850 | F: include/linux/cdrom.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5851 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5852 | UNSORTED BLOCK IMAGES (UBI) |
| 5853 | P: Artem Bityutskiy |
| 5854 | M: dedekind@infradead.org |
| 5855 | W: http://www.linux-mtd.infradead.org/ |
| 5856 | L: linux-mtd@lists.infradead.org |
Artem Bityutskiy | e2966cb | 2008-10-25 18:54:04 +0300 | [diff] [blame] | 5857 | T: git git://git.infradead.org/ubi-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5858 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 5859 | F: drivers/mtd/ubi/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5860 | F: include/linux/mtd/ubi.h |
| 5861 | F: include/mtd/ubi-user.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5862 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5863 | USB ACM DRIVER |
| 5864 | P: Oliver Neukum |
| 5865 | M: oliver@neukum.name |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 5866 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5867 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5868 | F: Documentation/usb/acm.txt |
| 5869 | F: drivers/usb/class/cdc-acm.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5870 | |
| 5871 | USB BLOCK DRIVER (UB ub) |
| 5872 | P: Pete Zaitcev |
| 5873 | M: zaitcev@redhat.com |
| 5874 | L: linux-kernel@vger.kernel.org |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5875 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5876 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5877 | F: drivers/block/ub.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5878 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5879 | USB CDC ETHERNET DRIVER |
| 5880 | P: Greg Kroah-Hartman |
| 5881 | M: greg@kroah.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5882 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5883 | S: Maintained |
| 5884 | W: http://www.kroah.com/linux-usb/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5885 | F: drivers/net/usb/cdc_*.c |
| 5886 | F: include/linux/usb/cdc.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5887 | |
Peter Korsgaard | b02b371 | 2008-04-27 08:59:44 +0200 | [diff] [blame] | 5888 | USB CYPRESS C67X00 DRIVER |
| 5889 | P: Peter Korsgaard |
| 5890 | M: jacmet@sunsite.dk |
| 5891 | L: linux-usb@vger.kernel.org |
| 5892 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5893 | F: drivers/usb/c67x00/ |
Peter Korsgaard | b02b371 | 2008-04-27 08:59:44 +0200 | [diff] [blame] | 5894 | |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 5895 | USB DAVICOM DM9601 DRIVER |
| 5896 | P: Peter Korsgaard |
| 5897 | M: jacmet@sunsite.dk |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 5898 | L: netdev@vger.kernel.org |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 5899 | W: http://www.linux-usb.org/usbnet |
| 5900 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5901 | F: drivers/net/usb/dm9601.c |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 5902 | |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5903 | USB DIAMOND RIO500 DRIVER |
| 5904 | P: Cesar Miquel |
| 5905 | M: miquel@df.uba.ar |
| 5906 | L: rio500-users@lists.sourceforge.net |
| 5907 | W: http://rio500.sourceforge.net |
| 5908 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5909 | F: drivers/usb/misc/rio500* |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5910 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5911 | USB EHCI DRIVER |
| 5912 | P: David Brownell |
| 5913 | M: dbrownell@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5914 | L: linux-usb@vger.kernel.org |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 5915 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5916 | F: Documentation/usb/ehci.txt |
| 5917 | F: drivers/usb/host/ehci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5918 | |
Luca Risolia | 7ce08c9 | 2006-01-11 02:06:59 +0000 | [diff] [blame] | 5919 | USB ET61X[12]51 DRIVER |
| 5920 | P: Luca Risolia |
| 5921 | M: luca.risolia@studio.unibo.it |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5922 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 5923 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5924 | 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] | 5925 | W: http://www.linux-projects.org |
| 5926 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5927 | F: drivers/media/video/et61x251/ |
Luca Risolia | 7ce08c9 | 2006-01-11 02:06:59 +0000 | [diff] [blame] | 5928 | |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 5929 | USB GADGET/PERIPHERAL SUBSYSTEM |
| 5930 | P: David Brownell |
| 5931 | M: dbrownell@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5932 | L: linux-usb@vger.kernel.org |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 5933 | W: http://www.linux-usb.org/gadget |
| 5934 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5935 | F: drivers/usb/gadget/ |
| 5936 | F: include/linux/usb/gadget* |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 5937 | |
Jiri Kosina | 2dea64b | 2007-07-11 12:12:11 +0200 | [diff] [blame] | 5938 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
Jiri Kosina | 641266f | 2007-01-15 09:56:21 +0100 | [diff] [blame] | 5939 | P: Jiri Kosina |
| 5940 | M: jkosina@suse.cz |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5941 | L: linux-usb@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5942 | 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] | 5943 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5944 | F: Documentation/usb/hiddev.txt |
| 5945 | F: drivers/hid/usbhid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5946 | |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 5947 | USB ISP116X DRIVER |
| 5948 | P: Olav Kongas |
| 5949 | M: ok@artecdesign.ee |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5950 | L: linux-usb@vger.kernel.org |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 5951 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5952 | F: drivers/usb/host/isp116x* |
| 5953 | F: include/linux/usb/isp116x.h |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 5954 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5955 | USB KAWASAKI LSI DRIVER |
| 5956 | P: Oliver Neukum |
| 5957 | M: oliver@neukum.name |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5958 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5959 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5960 | F: drivers/usb/serial/kl5kusb105.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5961 | |
| 5962 | USB MASS STORAGE DRIVER |
| 5963 | P: Matthew Dharm |
| 5964 | M: mdharm-usb@one-eyed-alien.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5965 | L: linux-usb@vger.kernel.org |
Matthew Dharm | 8836aeb | 2005-12-04 22:03:47 -0800 | [diff] [blame] | 5966 | L: usb-storage@lists.one-eyed-alien.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5967 | S: Maintained |
| 5968 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5969 | F: drivers/usb/storage/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5970 | |
| 5971 | USB OHCI DRIVER |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 5972 | P: David Brownell |
| 5973 | M: dbrownell@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5974 | L: linux-usb@vger.kernel.org |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 5975 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5976 | F: Documentation/usb/ohci.txt |
| 5977 | F: drivers/usb/host/ohci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5978 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 5979 | USB OPTION-CARD DRIVER |
| 5980 | P: Matthias Urlichs |
| 5981 | M: smurf@smurf.noris.de |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5982 | L: linux-usb@vger.kernel.org |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 5983 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5984 | F: drivers/usb/serial/option.c |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 5985 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5986 | USB OV511 DRIVER |
| 5987 | P: Mark McClelland |
| 5988 | M: mmcclell@bigfoot.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5989 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5990 | W: http://alpha.dyndns.org/ov511/ |
| 5991 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5992 | F: drivers/media/video/ov511.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5993 | |
| 5994 | USB PEGASUS DRIVER |
| 5995 | P: Petko Manolov |
| 5996 | M: petkan@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5997 | L: linux-usb@vger.kernel.org |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 5998 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5999 | W: http://pegasus2.sourceforge.net/ |
| 6000 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6001 | F: drivers/net/usb/pegasus.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6002 | |
Pete Zaitcev | 73e4fb3 | 2007-06-21 15:18:35 -0700 | [diff] [blame] | 6003 | USB PRINTER DRIVER (usblp) |
| 6004 | P: Pete Zaitcev |
| 6005 | M: zaitcev@redhat.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6006 | L: linux-usb@vger.kernel.org |
Pete Zaitcev | 73e4fb3 | 2007-06-21 15:18:35 -0700 | [diff] [blame] | 6007 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6008 | F: drivers/usb/class/usblp.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6009 | |
| 6010 | USB RTL8150 DRIVER |
| 6011 | P: Petko Manolov |
| 6012 | M: petkan@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6013 | L: linux-usb@vger.kernel.org |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 6014 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6015 | W: http://pegasus2.sourceforge.net/ |
| 6016 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6017 | F: drivers/net/usb/rtl8150.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6018 | |
| 6019 | USB SE401 DRIVER |
| 6020 | P: Jeroen Vreeken |
| 6021 | M: pe1rxq@amsat.org |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6022 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6023 | W: http://www.chello.nl/~j.vreeken/se401/ |
| 6024 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6025 | F: Documentation/video4linux/se401.txt |
| 6026 | F: drivers/media/video/se401.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6027 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 6028 | USB SERIAL BELKIN F5U103 DRIVER |
| 6029 | P: William Greathouse |
| 6030 | M: wgreathouse@smva.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6031 | L: linux-usb@vger.kernel.org |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 6032 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6033 | F: drivers/usb/serial/belkin_sa.* |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 6034 | |
| 6035 | USB SERIAL CYPRESS M8 DRIVER |
| 6036 | P: Lonnie Mendez |
| 6037 | M: dignome@gmail.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6038 | L: linux-usb@vger.kernel.org |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 6039 | S: Maintained |
| 6040 | W: http://geocities.com/i0xox0i |
| 6041 | W: http://firstlight.net/cvs |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6042 | F: drivers/usb/serial/cypress_m8.* |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 6043 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6044 | USB SERIAL CYBERJACK DRIVER |
| 6045 | P: Matthias Bruestle and Harald Welte |
| 6046 | M: support@reiner-sct.com |
| 6047 | W: http://www.reiner-sct.de/support/treiber_cyberjack.php |
| 6048 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6049 | F: drivers/usb/serial/cyberjack.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6050 | |
| 6051 | USB SERIAL DIGI ACCELEPORT DRIVER |
| 6052 | P: Peter Berger and Al Borchers |
| 6053 | M: pberger@brimson.com |
| 6054 | M: alborchers@steinerpoint.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6055 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6056 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6057 | F: drivers/usb/serial/digi_acceleport.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6058 | |
| 6059 | USB SERIAL DRIVER |
| 6060 | P: Greg Kroah-Hartman |
| 6061 | M: gregkh@suse.de |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6062 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6063 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6064 | F: Documentation/usb/usb-serial.txt |
| 6065 | F: drivers/usb/serial/generic.c |
| 6066 | F: drivers/usb/serial/usb-serial.c |
| 6067 | F: include/linux/usb/serial.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6068 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6069 | USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER |
| 6070 | P: Gary Brubaker |
| 6071 | M: xavyer@ix.netcom.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6072 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6073 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6074 | F: drivers/usb/serial/empeg.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6075 | |
| 6076 | USB SERIAL KEYSPAN DRIVER |
| 6077 | P: Greg Kroah-Hartman |
| 6078 | M: greg@kroah.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6079 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6080 | W: http://www.kroah.com/linux/ |
| 6081 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6082 | F: drivers/usb/serial/*keyspan* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6083 | |
| 6084 | USB SERIAL WHITEHEAT DRIVER |
Stuart MacDonald | 8bc8493 | 2007-05-04 16:00:03 -0400 | [diff] [blame] | 6085 | P: Support Department |
| 6086 | M: support@connecttech.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6087 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6088 | W: http://www.connecttech.com |
| 6089 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6090 | F: drivers/usb/serial/whiteheat* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6091 | |
Steve Glendinning | 2f7ca80 | 2008-10-02 05:27:57 +0000 | [diff] [blame] | 6092 | USB SMSC95XX ETHERNET DRIVER |
| 6093 | P: Steve Glendinning |
| 6094 | M: steve.glendinning@smsc.com |
| 6095 | L: netdev@vger.kernel.org |
| 6096 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6097 | F: drivers/net/usb/smsc95xx.* |
Steve Glendinning | 2f7ca80 | 2008-10-02 05:27:57 +0000 | [diff] [blame] | 6098 | |
Luca Risolia | f423b9a | 2007-03-26 16:12:04 -0300 | [diff] [blame] | 6099 | USB SN9C1xx DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6100 | P: Luca Risolia |
| 6101 | M: luca.risolia@studio.unibo.it |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6102 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6103 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6104 | 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] | 6105 | W: http://www.linux-projects.org |
| 6106 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6107 | F: Documentation/video4linux/sn9c102.txt |
| 6108 | F: drivers/media/video/sn9c102/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6109 | |
| 6110 | USB SUBSYSTEM |
| 6111 | P: Greg Kroah-Hartman |
| 6112 | M: gregkh@suse.de |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6113 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6114 | W: http://www.linux-usb.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 6115 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6116 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6117 | F: Documentation/usb/ |
| 6118 | F: drivers/net/usb/ |
| 6119 | F: drivers/usb/ |
| 6120 | F: include/linux/usb.h |
| 6121 | F: include/linux/usb/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6122 | |
| 6123 | USB UHCI DRIVER |
| 6124 | P: Alan Stern |
| 6125 | M: stern@rowland.harvard.edu |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6126 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6127 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6128 | F: drivers/usb/host/uhci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6129 | |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 6130 | USB "USBNET" DRIVER FRAMEWORK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6131 | P: David Brownell |
| 6132 | M: dbrownell@users.sourceforge.net |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 6133 | L: netdev@vger.kernel.org |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 6134 | W: http://www.linux-usb.org/usbnet |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6135 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6136 | F: drivers/net/usb/usbnet.c |
| 6137 | F: include/linux/usb/usbnet.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6138 | |
Laurent Pinchart | c0efd23 | 2008-06-30 15:04:50 -0300 | [diff] [blame] | 6139 | USB VIDEO CLASS |
| 6140 | P: Laurent Pinchart |
| 6141 | M: laurent.pinchart@skynet.be |
Jiri Slaby | a67534a | 2008-12-10 09:09:27 -0300 | [diff] [blame] | 6142 | L: linux-uvc-devel@lists.berlios.de (subscribers-only) |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6143 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6144 | 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] | 6145 | W: http://linux-uvc.berlios.de |
| 6146 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6147 | F: drivers/media/video/uvc/ |
Laurent Pinchart | c0efd23 | 2008-06-30 15:04:50 -0300 | [diff] [blame] | 6148 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6149 | USB W996[87]CF DRIVER |
| 6150 | P: Luca Risolia |
| 6151 | M: luca.risolia@studio.unibo.it |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6152 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6153 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6154 | 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] | 6155 | W: http://www.linux-projects.org |
| 6156 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6157 | F: Documentation/video4linux/w9968cf.txt |
| 6158 | F: drivers/media/video/w996* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6159 | |
Jussi Kivilinna | bf164cc | 2008-01-26 00:51:51 +0200 | [diff] [blame] | 6160 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
| 6161 | P: Jussi Kivilinna |
| 6162 | M: jussi.kivilinna@mbnet.fi |
| 6163 | L: linux-wireless@vger.kernel.org |
| 6164 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6165 | F: drivers/net/wireless/rndis_wlan.c |
Jussi Kivilinna | bf164cc | 2008-01-26 00:51:51 +0200 | [diff] [blame] | 6166 | |
Luca Risolia | 60f7805 | 2006-02-06 16:29:35 +0000 | [diff] [blame] | 6167 | USB ZC0301 DRIVER |
| 6168 | P: Luca Risolia |
| 6169 | M: luca.risolia@studio.unibo.it |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6170 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6171 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6172 | 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] | 6173 | W: http://www.linux-projects.org |
| 6174 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6175 | F: Documentation/video4linux/zc0301.txt |
| 6176 | F: drivers/media/video/zc0301/ |
Luca Risolia | 60f7805 | 2006-02-06 16:29:35 +0000 | [diff] [blame] | 6177 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6178 | USB ZD1201 DRIVER |
| 6179 | P: Jeroen Vreeken |
| 6180 | M: pe1rxq@amsat.org |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6181 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6182 | W: http://linux-lc100020.sourceforge.net |
| 6183 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6184 | F: drivers/net/wireless/zd1201.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6185 | |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 6186 | USB ZR364XX DRIVER |
| 6187 | P: Antoine Jacquet |
| 6188 | M: royale@zerezo.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6189 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6190 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6191 | 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] | 6192 | W: http://royale.zerezo.com/zr364xx/ |
| 6193 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6194 | F: Documentation/video4linux/zr364xx.txt |
| 6195 | F: drivers/media/video/zr364xx.c |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 6196 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 6197 | USER-MODE LINUX (UML) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6198 | P: Jeff Dike |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 6199 | M: jdike@addtoit.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6200 | L: user-mode-linux-devel@lists.sourceforge.net |
| 6201 | L: user-mode-linux-user@lists.sourceforge.net |
| 6202 | W: http://user-mode-linux.sourceforge.net |
| 6203 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6204 | F: Documentation/uml/ |
| 6205 | F: arch/um/ |
| 6206 | F: fs/hostfs/ |
| 6207 | F: fs/hppfs/ |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 6208 | |
Hans-Jürgen Koch | e5f114e | 2007-12-05 15:08:07 +0100 | [diff] [blame] | 6209 | USERSPACE I/O (UIO) |
| 6210 | P: Hans J. Koch |
| 6211 | M: hjk@linutronix.de |
| 6212 | P: Greg Kroah-Hartman |
| 6213 | M: gregkh@suse.de |
| 6214 | L: linux-kernel@vger.kernel.org |
| 6215 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6216 | F: Documentation/DocBook/uio-howto.tmpl |
| 6217 | F: drivers/uio/ |
| 6218 | F: include/linux/uio*.h |
Hans-Jürgen Koch | e5f114e | 2007-12-05 15:08:07 +0100 | [diff] [blame] | 6219 | |
Karel Zak | f899b0a | 2008-05-23 13:04:21 -0700 | [diff] [blame] | 6220 | UTIL-LINUX-NG PACKAGE |
| 6221 | P: Karel Zak |
| 6222 | M: kzak@redhat.com |
| 6223 | L: util-linux-ng@vger.kernel.org |
| 6224 | W: http://kernel.org/~kzak/util-linux-ng/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6225 | 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] | 6226 | S: Maintained |
| 6227 | |
Michal Januszewski | c1fd1c0 | 2008-10-15 22:03:48 -0700 | [diff] [blame] | 6228 | UVESAFB DRIVER |
| 6229 | P: Michal Januszewski |
| 6230 | M: spock@gentoo.org |
| 6231 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 6232 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
| 6233 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6234 | F: Documentation/fb/uvesafb.txt |
| 6235 | F: drivers/video/uvesafb.* |
Michal Januszewski | c1fd1c0 | 2008-10-15 22:03:48 -0700 | [diff] [blame] | 6236 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 6237 | VFAT/FAT/MSDOS FILESYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6238 | P: OGAWA Hirofumi |
| 6239 | M: hirofumi@mail.parknet.co.jp |
| 6240 | L: linux-kernel@vger.kernel.org |
| 6241 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6242 | F: Documentation/filesystems/vfat.txt |
| 6243 | F: fs/fat/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6244 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6245 | VIA RHINE NETWORK DRIVER |
| 6246 | P: Roger Luethi |
| 6247 | M: rl@hellgate.ch |
| 6248 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6249 | F: drivers/net/via-rhine.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6250 | |
Jean Delvare | 32c0a52 | 2005-09-22 21:47:58 +0200 | [diff] [blame] | 6251 | VIAPRO SMBUS DRIVER |
| 6252 | P: Jean Delvare |
| 6253 | M: khali@linux-fr.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 6254 | L: linux-i2c@vger.kernel.org |
Jean Delvare | 32c0a52 | 2005-09-22 21:47:58 +0200 | [diff] [blame] | 6255 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6256 | F: Documentation/i2c/busses/i2c-viapro |
| 6257 | F: drivers/i2c/busses/i2c-viapro.c |
Jean Delvare | 32c0a52 | 2005-09-22 21:47:58 +0200 | [diff] [blame] | 6258 | |
Joseph Chan | 69e4a7c | 2008-10-15 22:03:31 -0700 | [diff] [blame] | 6259 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
| 6260 | P: Joseph Chan |
| 6261 | M: JosephChan@via.com.tw |
| 6262 | P: Scott Fang |
| 6263 | M: ScottFang@viatech.com.cn |
| 6264 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 6265 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6266 | F: drivers/video/via/ |
Joseph Chan | 69e4a7c | 2008-10-15 22:03:31 -0700 | [diff] [blame] | 6267 | |
Francois Romieu | 01f2073 | 2007-01-26 00:57:17 -0800 | [diff] [blame] | 6268 | VIA VELOCITY NETWORK DRIVER |
| 6269 | P: Francois Romieu |
| 6270 | M: romieu@fr.zoreil.com |
| 6271 | L: netdev@vger.kernel.org |
| 6272 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6273 | F: drivers/net/via-velocity.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6274 | |
Patrick McHardy | be7f827 | 2007-10-23 20:26:36 -0700 | [diff] [blame] | 6275 | VLAN (802.1Q) |
| 6276 | P: Patrick McHardy |
| 6277 | M: kaber@trash.net |
| 6278 | L: netdev@vger.kernel.org |
| 6279 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6280 | F: drivers/net/macvlan.c |
| 6281 | F: include/linux/if_*vlan.h |
| 6282 | F: net/8021q/ |
Patrick McHardy | be7f827 | 2007-10-23 20:26:36 -0700 | [diff] [blame] | 6283 | |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 6284 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
| 6285 | P: Liam Girdwood |
Liam Girdwood | 8a62ab4 | 2008-09-14 17:40:21 +0100 | [diff] [blame] | 6286 | M: lrg@slimlogic.co.uk |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 6287 | P: Mark Brown |
| 6288 | M: broonie@opensource.wolfsonmicro.com |
| 6289 | W: http://opensource.wolfsonmicro.com/node/15 |
Liam Girdwood | 1dd68f0 | 2009-02-02 21:43:31 +0000 | [diff] [blame] | 6290 | W: http://www.slimlogic.co.uk/?p=48 |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6291 | 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] | 6292 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6293 | F: drivers/regulator/ |
| 6294 | F: include/linux/regulator/ |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 6295 | |
Juerg Haefliger | ab41319 | 2006-09-24 20:54:04 +0200 | [diff] [blame] | 6296 | VT1211 HARDWARE MONITOR DRIVER |
| 6297 | P: Juerg Haefliger |
| 6298 | M: juergh@gmail.com |
| 6299 | L: lm-sensors@lm-sensors.org |
| 6300 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6301 | F: Documentation/hwmon/vt1211 |
| 6302 | F: drivers/hwmon/vt1211.c |
Juerg Haefliger | ab41319 | 2006-09-24 20:54:04 +0200 | [diff] [blame] | 6303 | |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 6304 | VT8231 HARDWARE MONITOR DRIVER |
| 6305 | P: Roger Lucas |
Roger Lucas | af86576 | 2008-02-13 07:52:06 -0500 | [diff] [blame] | 6306 | M: vt8231@hiddenengine.co.uk |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 6307 | L: lm-sensors@lm-sensors.org |
| 6308 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6309 | F: drivers/hwmon/vt8231.c |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 6310 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6311 | W1 DALLAS'S 1-WIRE BUS |
| 6312 | P: Evgeniy Polyakov |
| 6313 | M: johnpol@2ka.mipt.ru |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6314 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6315 | F: Documentation/w1/ |
| 6316 | F: drivers/w1/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6317 | |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 6318 | W83791D HARDWARE MONITORING DRIVER |
Marc Hulsman | 25845c2 | 2008-06-08 10:59:41 -0400 | [diff] [blame] | 6319 | P: Marc Hulsman |
| 6320 | M: m.hulsman@tudelft.nl |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 6321 | L: lm-sensors@lm-sensors.org |
Marc Hulsman | 25845c2 | 2008-06-08 10:59:41 -0400 | [diff] [blame] | 6322 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6323 | F: Documentation/hwmon/w83791d |
| 6324 | F: drivers/hwmon/w83791d.c |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 6325 | |
Rudolf Marek | 61db011 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 6326 | W83793 HARDWARE MONITORING DRIVER |
| 6327 | P: Rudolf Marek |
| 6328 | M: r.marek@assembler.cz |
| 6329 | L: lm-sensors@lm-sensors.org |
| 6330 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6331 | F: Documentation/hwmon/w83793 |
| 6332 | F: drivers/hwmon/w83793.c |
Rudolf Marek | 61db011 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 6333 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6334 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
| 6335 | P: Pierre Ossman |
Pierre Ossman | 32710e8 | 2009-04-08 20:14:54 +0200 | [diff] [blame] | 6336 | M: pierre@ossman.eu |
Pierre Ossman | fac8899 | 2007-01-27 13:18:26 +0100 | [diff] [blame] | 6337 | L: linux-kernel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6338 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6339 | F: drivers/mmc/host/wbsd.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6340 | |
Wim Van Sebroeck | 3527761 | 2006-01-15 21:21:14 +0100 | [diff] [blame] | 6341 | WATCHDOG DEVICE DRIVERS |
| 6342 | P: Wim Van Sebroeck |
| 6343 | M: wim@iguana.be |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6344 | 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] | 6345 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6346 | F: Documentation/watchdog/ |
| 6347 | F: drivers/watchdog/ |
| 6348 | F: include/linux/watchdog.h |
Wim Van Sebroeck | 3527761 | 2006-01-15 21:21:14 +0100 | [diff] [blame] | 6349 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6350 | WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS |
| 6351 | P: Jean Tourrilhes |
| 6352 | M: jt@hpl.hp.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 6353 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6354 | W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/ |
| 6355 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6356 | F: Documentation/networking/wavelan.txt |
| 6357 | F: drivers/net/wireless/wavelan* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6358 | |
| 6359 | WD7000 SCSI DRIVER |
| 6360 | P: Miroslav Zagorac |
| 6361 | M: zaga@fly.cc.fer.hr |
| 6362 | L: linux-scsi@vger.kernel.org |
| 6363 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6364 | F: drivers/scsi/wd7000.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6365 | |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 6366 | WIMAX STACK |
| 6367 | P: Inaky Perez-Gonzalez |
| 6368 | M: inaky.perez-gonzalez@intel.com |
| 6369 | M: linux-wimax@intel.com |
| 6370 | L: wimax@linuxwimax.org |
| 6371 | S: Supported |
| 6372 | W: http://linuxwimax.org |
| 6373 | |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 6374 | WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM |
| 6375 | P: David Vrabel |
| 6376 | M: david.vrabel@csr.com |
| 6377 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6378 | F: include/linux/wlp.h |
| 6379 | F: drivers/uwb/wlp/ |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 6380 | |
Dmitry Torokhov | 5fc1468 | 2005-11-20 00:50:06 -0500 | [diff] [blame] | 6381 | WISTRON LAPTOP BUTTON DRIVER |
| 6382 | P: Miloslav Trmac |
| 6383 | M: mitr@volny.cz |
| 6384 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6385 | F: drivers/input/misc/wistron_btns.c |
Dmitry Torokhov | 5fc1468 | 2005-11-20 00:50:06 -0500 | [diff] [blame] | 6386 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6387 | WL3501 WIRELESS PCMCIA CARD DRIVER |
| 6388 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 6389 | M: acme@ghostprotocols.net |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 6390 | L: linux-wireless@vger.kernel.org |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 6391 | W: http://oops.ghostprotocols.net:81/blog |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6392 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6393 | F: drivers/net/wireless/wl3501* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6394 | |
Mark Brown | febf1df | 2008-04-02 00:51:09 -0400 | [diff] [blame] | 6395 | WM97XX TOUCHSCREEN DRIVERS |
| 6396 | P: Mark Brown |
| 6397 | M: broonie@opensource.wolfsonmicro.com |
| 6398 | P: Liam Girdwood |
Liam Girdwood | b8d055a | 2008-10-13 23:00:15 -0400 | [diff] [blame] | 6399 | M: lrg@slimlogic.co.uk |
Mark Brown | febf1df | 2008-04-02 00:51:09 -0400 | [diff] [blame] | 6400 | L: linux-input@vger.kernel.org |
| 6401 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch |
| 6402 | W: http://opensource.wolfsonmicro.com/node/7 |
| 6403 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6404 | F: drivers/input/touchscreen/*wm97* |
| 6405 | F: include/linux/wm97xx.h |
Mark Brown | febf1df | 2008-04-02 00:51:09 -0400 | [diff] [blame] | 6406 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6407 | X.25 NETWORK LAYER |
| 6408 | P: Henner Eisen |
| 6409 | M: eis@baty.hanse.de |
| 6410 | L: linux-x25@vger.kernel.org |
| 6411 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6412 | F: Documentation/networking/x25* |
| 6413 | F: include/net/x25* |
| 6414 | F: net/x25/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6415 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6416 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
| 6417 | P: Thomas Gleixner |
| 6418 | M: tglx@linutronix.de |
| 6419 | P: Ingo Molnar |
| 6420 | M: mingo@redhat.com |
| 6421 | P: H. Peter Anvin |
| 6422 | M: hpa@zytor.com |
H. Peter Anvin | bcde563 | 2009-02-02 21:42:40 -0800 | [diff] [blame] | 6423 | M: x86@kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6424 | L: linux-kernel@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6425 | 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] | 6426 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6427 | F: Documentation/x86/ |
| 6428 | F: arch/x86/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6429 | |
Jeremy Fitzhardinge | 4cdf6bc | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 6430 | XEN HYPERVISOR INTERFACE |
| 6431 | P: Jeremy Fitzhardinge |
| 6432 | M: jeremy@xensource.com |
| 6433 | P: Chris Wright |
| 6434 | M: chrisw@sous-sol.org |
| 6435 | L: virtualization@lists.osdl.org |
| 6436 | L: xen-devel@lists.xensource.com |
| 6437 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6438 | F: arch/x86/xen/ |
| 6439 | F: drivers/*/xen-*front.c |
| 6440 | F: drivers/xen/ |
| 6441 | F: arch/x86/include/asm/xen/ |
| 6442 | F: include/xen/ |
Jeremy Fitzhardinge | 4cdf6bc | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 6443 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6444 | XFS FILESYSTEM |
| 6445 | P: Silicon Graphics Inc |
Felix Blyakher | b58a4cc | 2009-02-03 15:37:18 -0600 | [diff] [blame] | 6446 | P: Felix Blyakher |
| 6447 | M: felixb@sgi.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6448 | M: xfs-masters@oss.sgi.com |
Nathan Scott | d7ede1a | 2006-06-13 16:28:11 +1000 | [diff] [blame] | 6449 | L: xfs@oss.sgi.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6450 | W: http://oss.sgi.com/projects/xfs |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6451 | T: git git://oss.sgi.com/xfs/xfs.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6452 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6453 | F: Documentation/filesystems/xfs.txt |
| 6454 | F: fs/xfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6455 | |
Grant Likely | c9d3d8e | 2007-10-01 16:33:51 +0200 | [diff] [blame] | 6456 | XILINX SYSTEMACE DRIVER |
| 6457 | P: Grant Likely |
| 6458 | M: grant.likely@secretlab.ca |
| 6459 | W: http://www.secretlab.ca/ |
| 6460 | L: linux-kernel@vger.kernel.org |
| 6461 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6462 | F: drivers/block/xsysace.c |
Grant Likely | c9d3d8e | 2007-10-01 16:33:51 +0200 | [diff] [blame] | 6463 | |
Peter Korsgaard | 238b872 | 2006-12-06 20:35:17 -0800 | [diff] [blame] | 6464 | XILINX UARTLITE SERIAL DRIVER |
| 6465 | P: Peter Korsgaard |
| 6466 | M: jacmet@sunsite.dk |
| 6467 | L: linux-serial@vger.kernel.org |
| 6468 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6469 | F: drivers/serial/uartlite.c |
Peter Korsgaard | 238b872 | 2006-12-06 20:35:17 -0800 | [diff] [blame] | 6470 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6471 | YAM DRIVER FOR AX.25 |
| 6472 | P: Jean-Paul Roubelat |
| 6473 | M: jpr@f6fbb.org |
| 6474 | L: linux-hams@vger.kernel.org |
| 6475 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6476 | F: drivers/net/hamradio/yam* |
| 6477 | F: include/linux/yam.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6478 | |
Henk | af64a5e | 2005-10-12 15:02:56 +0200 | [diff] [blame] | 6479 | YEALINK PHONE DRIVER |
| 6480 | P: Henk Vergonet |
| 6481 | M: Henk.Vergonet@gmail.com |
| 6482 | L: usbb2k-api-dev@nongnu.org |
| 6483 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6484 | F: Documentation/input/yealink.txt |
| 6485 | F: drivers/input/misc/yealink.* |
Henk | af64a5e | 2005-10-12 15:02:56 +0200 | [diff] [blame] | 6486 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6487 | Z8530 DRIVER FOR AX.25 |
| 6488 | P: Joerg Reuter |
| 6489 | M: jreuter@yaina.de |
| 6490 | W: http://yaina.de/jreuter/ |
| 6491 | W: http://www.qsl.net/dl1bke/ |
| 6492 | L: linux-hams@vger.kernel.org |
| 6493 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6494 | F: Documentation/networking/z8530drv.txt |
| 6495 | F: drivers/net/hamradio/*scc.c |
| 6496 | F: drivers/net/hamradio/z8530.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6497 | |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 6498 | ZD1211RW WIRELESS DRIVER |
| 6499 | P: Daniel Drake |
| 6500 | M: dsd@gentoo.org |
| 6501 | P: Ulrich Kunitz |
| 6502 | M: kune@deine-taler.de |
| 6503 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 6504 | L: linux-wireless@vger.kernel.org |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 6505 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
| 6506 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6507 | F: drivers/net/wireless/zd1211rw/ |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 6508 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6509 | ZR36067 VIDEO FOR LINUX DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6510 | L: mjpeg-users@lists.sourceforge.net |
Trent Piepho | f63145e | 2009-01-24 20:52:41 -0300 | [diff] [blame] | 6511 | L: linux-media@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6512 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
Trent Piepho | f63145e | 2009-01-24 20:52:41 -0300 | [diff] [blame] | 6513 | T: Mercurial http://linuxtv.org/hg/v4l-dvb |
| 6514 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6515 | F: drivers/media/video/zoran/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6516 | |
Maciej W. Rozycki | 8b4a408 | 2007-07-18 00:49:11 -0700 | [diff] [blame] | 6517 | ZS DECSTATION Z85C30 SERIAL DRIVER |
| 6518 | P: Maciej W. Rozycki |
| 6519 | M: macro@linux-mips.org |
| 6520 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6521 | F: drivers/serial/zs.* |
Maciej W. Rozycki | 8b4a408 | 2007-07-18 00:49:11 -0700 | [diff] [blame] | 6522 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6523 | THE REST |
| 6524 | P: Linus Torvalds |
Joe Perches | cfe81f7 | 2009-04-07 21:09:58 -0700 | [diff] [blame] | 6525 | 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] | 6526 | S: Buried alive in reporters |