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 |
Joe Perches | dc98792 | 2009-06-16 17:01:52 +0100 | [diff] [blame] | 160 | P: Alan Cox |
| 161 | M: alan@lxorguk.ukuu.org.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | L: linux-serial@vger.kernel.org |
| 163 | W: http://serial.sourceforge.net |
Alan Cox | 4b6ae89 | 2009-06-11 12:45:08 +0100 | [diff] [blame] | 164 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 165 | F: drivers/serial/8250* |
| 166 | F: include/linux/serial_8250.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | |
| 168 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] |
| 169 | P: Paul Gortmaker |
| 170 | M: p_gortmaker@yahoo.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 171 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 173 | F: drivers/net/*8390* |
| 174 | F: drivers/net/ax88796.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | |
Eric Van Hensbergen | 67543e5 | 2006-03-25 03:07:29 -0800 | [diff] [blame] | 176 | 9P FILE SYSTEM |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 177 | P: Eric Van Hensbergen |
| 178 | M: ericvh@gmail.com |
| 179 | P: Ron Minnich |
Eric Van Hensbergen | 27a2a5f | 2007-07-23 13:06:13 -0500 | [diff] [blame] | 180 | M: rminnich@sandia.gov |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 181 | P: Latchesar Ionkov |
| 182 | M: lucho@ionkov.net |
| 183 | L: v9fs-developer@lists.sourceforge.net |
Eric Van Hensbergen | 27a2a5f | 2007-07-23 13:06:13 -0500 | [diff] [blame] | 184 | W: http://swik.net/v9fs |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 185 | 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] | 186 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 187 | F: Documentation/filesystems/9p.txt |
| 188 | F: fs/9p/ |
Eric Van Hensbergen | 67543e5 | 2006-03-25 03:07:29 -0800 | [diff] [blame] | 189 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | A2232 SERIAL BOARD DRIVER |
| 191 | P: Enver Haase |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | M: A2232@gmx.net |
| 193 | L: linux-m68k@lists.linux-m68k.org |
| 194 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 195 | F: drivers/char/ser_a2232* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 197 | AACRAID SCSI RAID DRIVER |
| 198 | P: Adaptec OEM Raid Solutions |
| 199 | M: aacraid@adaptec.com |
| 200 | L: linux-scsi@vger.kernel.org |
| 201 | W: http://www.adaptec.com/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 203 | F: Documentation/scsi/aacraid.txt |
| 204 | F: drivers/scsi/aacraid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 206 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
Hans de Goede | f2b84bb | 2006-06-04 20:22:24 +0200 | [diff] [blame] | 207 | P: Hans de Goede |
| 208 | M: j.w.r.degoede@hhs.nl |
| 209 | L: lm-sensors@lm-sensors.org |
| 210 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 211 | F: drivers/hwmon/abituguru.c |
Hans de Goede | f2b84bb | 2006-06-04 20:22:24 +0200 | [diff] [blame] | 212 | |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 213 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
| 214 | P: Alistair John Strachan |
| 215 | M: alistair@devzero.co.uk |
| 216 | L: lm-sensors@lm-sensors.org |
| 217 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 218 | F: drivers/hwmon/abituguru3.c |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 219 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | ACENIC DRIVER |
| 221 | P: Jes Sorensen |
| 222 | M: jes@trained-monkey.org |
| 223 | L: linux-acenic@sunsite.dk |
| 224 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 225 | F: drivers/net/acenic* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 227 | ACER WMI LAPTOP EXTRAS |
| 228 | P: Carlos Corbacho |
| 229 | M: carlos@strangeworlds.co.uk |
| 230 | L: aceracpi@googlegroups.com (subscribers-only) |
| 231 | W: http://code.google.com/p/aceracpi |
| 232 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 233 | F: drivers/platform/x86/acer-wmi.c |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 234 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | ACPI |
Andi Kleen | 54cd314 | 2008-09-04 13:30:07 +0200 | [diff] [blame] | 236 | P: Len Brown |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 237 | M: lenb@kernel.org |
Len Brown | 6968e50 | 2005-12-30 00:32:49 -0500 | [diff] [blame] | 238 | L: linux-acpi@vger.kernel.org |
Len Brown | 38e09d8 | 2007-10-25 17:55:59 -0400 | [diff] [blame] | 239 | W: http://www.lesswatts.org/projects/acpi/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 240 | 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] | 241 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 242 | F: drivers/acpi/ |
| 243 | F: drivers/pnp/pnpacpi/ |
| 244 | F: include/linux/acpi.h |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 245 | |
| 246 | ACPI BATTERY DRIVERS |
Len Brown | a414655 | 2007-06-23 15:54:36 -0400 | [diff] [blame] | 247 | P: Alexey Starikovskiy |
| 248 | M: astarikovskiy@suse.de |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 249 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 250 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 251 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 252 | F: drivers/acpi/battery.c |
| 253 | F: drivers/acpi/*sbs* |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 254 | |
| 255 | ACPI EC DRIVER |
| 256 | P: Alexey Starikovskiy |
Len Brown | a414655 | 2007-06-23 15:54:36 -0400 | [diff] [blame] | 257 | M: astarikovskiy@suse.de |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 258 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 259 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 260 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 261 | F: drivers/acpi/ec.c |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 262 | |
| 263 | ACPI FAN DRIVER |
Len Brown | 65573ee | 2008-06-27 11:22:46 -0400 | [diff] [blame] | 264 | P: Zhang Rui |
| 265 | M: rui.zhang@intel.com |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 266 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 267 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 268 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 269 | F: drivers/acpi/fan.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
Kristen Carlson Accardi | 998be20 | 2006-07-26 10:52:33 -0700 | [diff] [blame] | 271 | ACPI PCI HOTPLUG DRIVER |
| 272 | P: Kristen Carlson Accardi |
| 273 | M: kristen.c.accardi@intel.com |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 274 | L: linux-pci@vger.kernel.org |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 275 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 276 | F: drivers/pci/hotplug/acpi* |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 277 | |
| 278 | ACPI THERMAL DRIVER |
Len Brown | 65573ee | 2008-06-27 11:22:46 -0400 | [diff] [blame] | 279 | P: Zhang Rui |
| 280 | M: rui.zhang@intel.com |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 281 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 282 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 283 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 284 | F: drivers/acpi/*thermal* |
Kristen Carlson Accardi | 998be20 | 2006-07-26 10:52:33 -0700 | [diff] [blame] | 285 | |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 286 | ACPI VIDEO DRIVER |
Len Brown | 65573ee | 2008-06-27 11:22:46 -0400 | [diff] [blame] | 287 | P: Zhang Rui |
Len Brown | 38e09d8 | 2007-10-25 17:55:59 -0400 | [diff] [blame] | 288 | M: rui.zhang@intel.com |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 289 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 290 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 291 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 292 | F: drivers/acpi/video.c |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 293 | |
Carlos Corbacho | bff431e | 2008-02-05 02:17:04 +0000 | [diff] [blame] | 294 | ACPI WMI DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 295 | P: Carlos Corbacho |
| 296 | M: carlos@strangeworlds.co.uk |
| 297 | L: linux-acpi@vger.kernel.org |
| 298 | W: http://www.lesswatts.org/projects/acpi/ |
| 299 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 300 | F: drivers/platform/x86/wmi.c |
Carlos Corbacho | bff431e | 2008-02-05 02:17:04 +0000 | [diff] [blame] | 301 | |
Thibaut VARENE | 2f39d51 | 2008-02-20 21:05:56 +0100 | [diff] [blame] | 302 | AD1889 ALSA SOUND DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 303 | P: Kyle McMartin |
| 304 | M: kyle@mcmartin.ca |
| 305 | P: Thibaut Varene |
| 306 | M: T-Bone@parisc-linux.org |
| 307 | W: http://wiki.parisc-linux.org/AD1889 |
| 308 | L: linux-parisc@vger.kernel.org |
| 309 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 310 | F: sound/pci/ad1889.* |
Thibaut VARENE | 2f39d51 | 2008-02-20 21:05:56 +0100 | [diff] [blame] | 311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | ADM1025 HARDWARE MONITOR DRIVER |
| 313 | P: Jean Delvare |
| 314 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 315 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 317 | F: Documentation/hwmon/adm1025 |
| 318 | F: drivers/hwmon/adm1025.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | |
Corentin Labbe | cae2caa | 2007-02-14 21:15:04 +0100 | [diff] [blame] | 320 | ADM1029 HARDWARE MONITOR DRIVER |
| 321 | P: Corentin Labbe |
| 322 | M: corentin.labbe@geomatys.fr |
| 323 | L: lm-sensors@lm-sensors.org |
| 324 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 325 | F: drivers/hwmon/adm1029.c |
Corentin Labbe | cae2caa | 2007-02-14 21:15:04 +0100 | [diff] [blame] | 326 | |
Michael Wu | cc0b88c | 2007-08-31 01:15:25 -0400 | [diff] [blame] | 327 | ADM8211 WIRELESS DRIVER |
| 328 | P: Michael Wu |
| 329 | M: flamingice@sourmilk.net |
| 330 | L: linux-wireless@vger.kernel.org |
| 331 | W: http://linuxwireless.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 332 | 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] | 333 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 334 | F: drivers/net/wireless/adm8211.* |
Michael Wu | cc0b88c | 2007-08-31 01:15:25 -0400 | [diff] [blame] | 335 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | ADT746X FAN DRIVER |
| 337 | P: Colin Leroy |
| 338 | M: colin@colino.net |
| 339 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 340 | F: drivers/macintosh/therm_adt746x.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | |
Matthew Wilcox | 8c6af9e | 2007-07-26 11:03:19 -0400 | [diff] [blame] | 342 | ADVANSYS SCSI DRIVER |
| 343 | P: Matthew Wilcox |
| 344 | M: matthew@wil.cx |
| 345 | L: linux-scsi@vger.kernel.org |
| 346 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 347 | F: Documentation/scsi/advansys.txt |
| 348 | F: drivers/scsi/advansys.c |
Matthew Wilcox | 8c6af9e | 2007-07-26 11:03:19 -0400 | [diff] [blame] | 349 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | AEDSP16 DRIVER |
| 351 | P: Riccardo Facchetti |
| 352 | M: fizban@tin.it |
| 353 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 354 | F: sound/oss/aedsp16.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
| 356 | AFFS FILE SYSTEM |
| 357 | P: Roman Zippel |
| 358 | M: zippel@linux-m68k.org |
| 359 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 360 | F: Documentation/filesystems/affs.txt |
| 361 | F: fs/affs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 363 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
| 364 | P: David Howells |
| 365 | M: dhowells@redhat.com |
| 366 | L: linux-afs@lists.infradead.org |
| 367 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 368 | F: fs/afs/ |
| 369 | F: include/net/af_rxrpc.h |
| 370 | F: net/rxrpc/af_rxrpc.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 371 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | AGPGART DRIVER |
Dave Jones | 70e8992 | 2007-07-09 20:23:50 -0400 | [diff] [blame] | 373 | P: David Airlie |
| 374 | M: airlied@linux.ie |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 375 | 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] | 376 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 377 | F: drivers/char/agp/ |
| 378 | F: include/linux/agp* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | |
| 380 | AHA152X SCSI DRIVER |
| 381 | P: Juergen E. Fischer |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 382 | M: fischer@norbit.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | L: linux-scsi@vger.kernel.org |
| 384 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 385 | F: drivers/scsi/aha152x* |
| 386 | F: drivers/scsi/pcmcia/aha152x* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
Hannes Reinecke | 64624d4 | 2007-10-19 10:32:29 +0200 | [diff] [blame] | 388 | AIC7XXX / AIC79XX SCSI DRIVER |
| 389 | P: Hannes Reinecke |
| 390 | M: hare@suse.de |
| 391 | L: linux-scsi@vger.kernel.org |
| 392 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 393 | F: drivers/scsi/aic7xxx/ |
| 394 | F: drivers/scsi/aic7xxx_old/ |
Hannes Reinecke | 64624d4 | 2007-10-19 10:32:29 +0200 | [diff] [blame] | 395 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 396 | AIO |
| 397 | P: Benjamin LaHaise |
| 398 | M: bcrl@kvack.org |
| 399 | L: linux-aio@kvack.org |
| 400 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 401 | F: fs/aio.c |
| 402 | F: include/linux/*aio*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 403 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | ALCATEL SPEEDTOUCH USB DRIVER |
| 405 | P: Duncan Sands |
| 406 | M: duncan.sands@free.fr |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 407 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | W: http://www.linux-usb.org/SpeedTouch/ |
| 409 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 410 | F: drivers/usb/atm/speedtch.c |
| 411 | F: drivers/usb/atm/usbatm.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 413 | ALCHEMY AU1XX0 MMC DRIVER |
Manuel Lauss | 08fcb72 | 2008-06-09 08:40:35 +0200 | [diff] [blame] | 414 | P: Manuel Lauss |
| 415 | M: manuel.lauss@gmail.com |
| 416 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 417 | F: drivers/mmc/host/au1xmmc.c |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 418 | |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 419 | ALI1563 I2C DRIVER |
| 420 | P: Rudolf Marek |
Jean Delvare | 7188cc6 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 421 | M: r.marek@assembler.cz |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 422 | L: linux-i2c@vger.kernel.org |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 423 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 424 | F: Documentation/i2c/busses/i2c-ali1563 |
| 425 | F: drivers/i2c/busses/i2c-ali1563.c |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 426 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | ALPHA PORT |
| 428 | P: Richard Henderson |
| 429 | M: rth@twiddle.net |
| 430 | S: Odd Fixes for 2.4; Maintained for 2.6. |
| 431 | P: Ivan Kokshaysky |
| 432 | M: ink@jurassic.park.msu.ru |
| 433 | S: Maintained for 2.4; PCI support for 2.6. |
Cheng Renquan | a940669 | 2009-03-31 15:23:35 -0700 | [diff] [blame] | 434 | L: linux-alpha@vger.kernel.org |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 435 | F: arch/alpha/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 437 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
| 438 | P: Thomas Dahlmann |
Thomas Dahlmann | ba94471 | 2009-05-28 14:34:30 -0700 | [diff] [blame] | 439 | M: dahlmann.thomas@arcor.de |
Jordan Crouse | 67d7671 | 2008-05-12 14:02:22 -0700 | [diff] [blame] | 440 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 441 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 442 | F: drivers/usb/gadget/amd5536udc.* |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 443 | |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 444 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 445 | P: Jordan Crouse |
Jordan Crouse | 67d7671 | 2008-05-12 14:02:22 -0700 | [diff] [blame] | 446 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 447 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
| 448 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 449 | F: arch/x86/kernel/geode_32.c |
| 450 | F: drivers/char/hw_random/geode-rng.c |
| 451 | F: drivers/crypto/geode* |
| 452 | F: drivers/video/geode/ |
| 453 | F: arch/x86/include/asm/geode.h |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 454 | |
Joerg Roedel | 919ee7d | 2008-06-26 21:28:09 +0200 | [diff] [blame] | 455 | AMD IOMMU (AMD-VI) |
| 456 | P: Joerg Roedel |
| 457 | M: joerg.roedel@amd.com |
| 458 | L: iommu@lists.linux-foundation.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 459 | 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] | 460 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 461 | F: arch/x86/kernel/amd_iommu*.c |
| 462 | F: arch/x86/include/asm/amd_iommu*.h |
Joerg Roedel | 919ee7d | 2008-06-26 21:28:09 +0200 | [diff] [blame] | 463 | |
Peter Oruba | e7f5b30 | 2008-07-28 18:44:11 +0200 | [diff] [blame] | 464 | AMD MICROCODE UPDATE SUPPORT |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 465 | P: Andreas Herrmann |
Randy Dunlap | f403bb8 | 2009-04-13 14:39:36 -0700 | [diff] [blame] | 466 | M: andreas.herrmann3@amd.com |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 467 | L: amd64-microcode@amd64.org |
| 468 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 469 | F: arch/x86/kernel/microcode_amd.c |
Peter Oruba | e7f5b30 | 2008-07-28 18:44:11 +0200 | [diff] [blame] | 470 | |
Stelian Pop | 284f42b | 2006-12-12 18:18:31 +0100 | [diff] [blame] | 471 | AMS (Apple Motion Sensor) DRIVER |
| 472 | P: Stelian Pop |
| 473 | M: stelian@popies.net |
| 474 | P: Michael Hanselmann |
| 475 | M: linux-kernel@hansmi.ch |
| 476 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 477 | F: drivers/hwmon/ams/ |
Stelian Pop | 284f42b | 2006-12-12 18:18:31 +0100 | [diff] [blame] | 478 | |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 479 | AMSO1100 RNIC DRIVER |
| 480 | P: Tom Tucker |
| 481 | M: tom@opengridcomputing.com |
| 482 | P: Steve Wise |
| 483 | M: swise@opengridcomputing.com |
Roland Dreier | 7852682 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 484 | L: general@lists.openfabrics.org |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 485 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 486 | F: drivers/infiniband/hw/amso1100/ |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 487 | |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 488 | AOA (Apple Onboard Audio) ALSA DRIVER |
| 489 | P: Johannes Berg |
| 490 | M: johannes@sipsolutions.net |
| 491 | L: linuxppc-dev@ozlabs.org |
Takashi Iwai | 8262204 | 2007-04-16 12:32:52 +0200 | [diff] [blame] | 492 | L: alsa-devel@alsa-project.org (subscribers-only) |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 493 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 494 | F: sound/aoa/ |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 495 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | APM DRIVER |
| 497 | P: Stephen Rothwell |
| 498 | M: sfr@canb.auug.org.au |
| 499 | L: linux-laptop@vger.kernel.org |
| 500 | W: http://www.canb.auug.org.au/~sfr/ |
| 501 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 502 | F: arch/x86/kernel/apm_32.c |
| 503 | F: include/linux/apm_bios.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | |
Henrik Rydberg | bd7aa4b | 2008-09-02 14:35:43 -0700 | [diff] [blame] | 505 | APPLE BCM5974 MULTITOUCH DRIVER |
| 506 | P: Henrik Rydberg |
| 507 | M: rydberg@euromail.se |
| 508 | L: linux-input@vger.kernel.org |
| 509 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 510 | F: drivers/input/mouse/bcm5974.c |
Henrik Rydberg | bd7aa4b | 2008-09-02 14:35:43 -0700 | [diff] [blame] | 511 | |
Nicolas Boichat | 6f2fad7 | 2007-05-08 00:24:52 -0700 | [diff] [blame] | 512 | APPLE SMC DRIVER |
| 513 | P: Nicolas Boichat |
| 514 | M: nicolas@boichat.ch |
| 515 | L: mactel-linux-devel@lists.sourceforge.net |
| 516 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 517 | F: drivers/hwmon/applesmc.c |
Nicolas Boichat | 6f2fad7 | 2007-05-08 00:24:52 -0700 | [diff] [blame] | 518 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | APPLETALK NETWORK LAYER |
| 520 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 521 | M: acme@ghostprotocols.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 523 | F: drivers/net/appletalk/ |
| 524 | F: net/appletalk/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | |
Johannes Berg | eb9ebe6 | 2007-10-27 23:42:45 -0400 | [diff] [blame] | 526 | APPLETOUCH TOUCHPAD DRIVER |
| 527 | P: Johannes Berg |
| 528 | M: johannes@sipsolutions.net |
Dmitry Torokhov | eb76c5c | 2007-11-02 09:07:33 -0400 | [diff] [blame] | 529 | L: linux-input@vger.kernel.org |
Johannes Berg | eb9ebe6 | 2007-10-27 23:42:45 -0400 | [diff] [blame] | 530 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 531 | F: Documentation/input/appletouch.txt |
| 532 | F: drivers/input/mouse/appletouch.c |
Johannes Berg | eb9ebe6 | 2007-10-27 23:42:45 -0400 | [diff] [blame] | 533 | |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 534 | ARC FRAMEBUFFER DRIVER |
| 535 | P: Jaya Kumar |
| 536 | M: jayalk@intworks.biz |
| 537 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 538 | F: drivers/video/arcfb.c |
| 539 | F: drivers/video/fb_defio.c |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 540 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | ARM MFM AND FLOPPY DRIVERS |
| 542 | P: Ian Molton |
| 543 | M: spyro@f2s.com |
| 544 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 545 | F: arch/arm/lib/floppydma.S |
| 546 | F: arch/arm/include/asm/floppy.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 548 | ARM PORT |
| 549 | P: Russell King |
| 550 | M: linux@arm.linux.org.uk |
| 551 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 552 | W: http://www.arm.linux.org.uk/ |
| 553 | S: Maintained |
| 554 | F: arch/arm/ |
| 555 | |
Russell King | 2761f5c | 2007-05-24 06:56:08 +0200 | [diff] [blame] | 556 | ARM PRIMECELL MMCI PL180/1 DRIVER |
Pierre Ossman | 6d79947 | 2008-07-22 14:36:57 +0200 | [diff] [blame] | 557 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 558 | F: drivers/mmc/host/mmci.* |
Russell King | 2761f5c | 2007-05-24 06:56:08 +0200 | [diff] [blame] | 559 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 560 | ARM/ADI ROADRUNNER MACHINE SUPPORT |
| 561 | P: Lennert Buytenhek |
| 562 | M: kernel@wantstofly.org |
| 563 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 564 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 565 | F: arch/arm/mach-ixp23xx/ |
| 566 | F: arch/arm/mach-ixp23xx/include/mach/ |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 567 | |
| 568 | ARM/ADS SPHERE MACHINE SUPPORT |
| 569 | P: Lennert Buytenhek |
| 570 | M: kernel@wantstofly.org |
| 571 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 572 | S: Maintained |
| 573 | |
Sergey Lapin | 9c784f9 | 2008-08-03 02:29:48 +0100 | [diff] [blame] | 574 | ARM/AFEB9260 MACHINE SUPPORT |
| 575 | P: Sergey Lapin |
| 576 | M: slapin@ossfans.org |
| 577 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 578 | S: Maintained |
| 579 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 580 | ARM/AJECO 1ARM MACHINE SUPPORT |
| 581 | P: Lennert Buytenhek |
| 582 | M: kernel@wantstofly.org |
| 583 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 584 | S: Maintained |
| 585 | |
Andrew Victor | d4a89c7 | 2006-12-04 13:56:21 +0100 | [diff] [blame] | 586 | ARM/ATMEL AT91RM9200 ARM ARCHITECTURE |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 587 | P: Andrew Victor |
| 588 | M: linux@maxim.org.za |
| 589 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 590 | W: http://maxim.org.za/at91_26.html |
| 591 | S: Maintained |
Andrew Victor | d4a89c7 | 2006-12-04 13:56:21 +0100 | [diff] [blame] | 592 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 593 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
| 594 | P: Lennert Buytenhek |
| 595 | M: kernel@wantstofly.org |
| 596 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 597 | S: Maintained |
| 598 | |
| 599 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT |
| 600 | P: Lennert Buytenhek |
| 601 | M: kernel@wantstofly.org |
| 602 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 603 | S: Maintained |
| 604 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 605 | ARM/CLKDEV SUPPORT |
| 606 | P: Russell King |
| 607 | M: linux@arm.linux.org.uk |
| 608 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 609 | F: arch/arm/common/clkdev.c |
| 610 | F: arch/arm/include/asm/clkdev.h |
| 611 | |
Mike Rapoport | d48134e | 2008-08-20 09:03:26 +0100 | [diff] [blame] | 612 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
Russell King | a9da4f7 | 2008-07-12 21:42:04 +0100 | [diff] [blame] | 613 | P: Mike Rapoport |
| 614 | M: mike@compulab.co.il |
| 615 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 616 | S: Maintained |
| 617 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | ARM/CORGI MACHINE SUPPORT |
| 619 | P: Richard Purdie |
| 620 | M: rpurdie@rpsys.net |
| 621 | S: Maintained |
| 622 | |
Paulius Zaleckas | 881a95f | 2009-03-26 10:06:27 +0200 | [diff] [blame] | 623 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
| 624 | P: Paulius Zaleckas |
| 625 | M: paulius.zaleckas@teltonika.lt |
| 626 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 627 | T: git git://gitorious.org/linux-gemini/mainline.git |
Paulius Zaleckas | 881a95f | 2009-03-26 10:06:27 +0200 | [diff] [blame] | 628 | S: Maintained |
Paulius Zaleckas | f49afbb | 2009-05-28 16:41:36 +0300 | [diff] [blame] | 629 | F: arch/arm/mach-gemini/ |
Paulius Zaleckas | 881a95f | 2009-03-26 10:06:27 +0200 | [diff] [blame] | 630 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 631 | ARM/EBSA110 MACHINE SUPPORT |
| 632 | P: Russell King |
| 633 | M: linux@arm.linux.org.uk |
| 634 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 635 | W: http://www.arm.linux.org.uk/ |
| 636 | S: Maintained |
| 637 | F: arch/arm/mach-ebsa110/ |
| 638 | F: drivers/net/arm/am79c961a.* |
| 639 | |
Russell King | a9da4f7 | 2008-07-12 21:42:04 +0100 | [diff] [blame] | 640 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
| 641 | P: Daniel Ribeiro |
| 642 | M: drwyrm@gmail.com |
| 643 | P: Stefan Schmidt |
| 644 | M: stefan@openezx.org |
| 645 | P: Harald Welte |
| 646 | M: laforge@openezx.org |
| 647 | L: openezx-devel@lists.openezx.org (subscribers-only) |
| 648 | W: http://www.openezx.org/ |
| 649 | S: Maintained |
| 650 | |
Paulius Zaleckas | 6a915af | 2009-03-25 13:10:20 +0200 | [diff] [blame] | 651 | ARM/FARADAY FA526 PORT |
| 652 | P: Paulius Zaleckas |
| 653 | M: paulius.zaleckas@teltonika.lt |
| 654 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 655 | S: Maintained |
Paulius Zaleckas | f49afbb | 2009-05-28 16:41:36 +0300 | [diff] [blame] | 656 | F: arch/arm/mm/*-fa* |
Paulius Zaleckas | 6a915af | 2009-03-25 13:10:20 +0200 | [diff] [blame] | 657 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 658 | ARM/FOOTBRIDGE ARCHITECTURE |
| 659 | P: Russell King |
| 660 | M: linux@arm.linux.org.uk |
| 661 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 662 | W: http://www.arm.linux.org.uk/ |
| 663 | S: Maintained |
| 664 | F: arch/arm/include/asm/hardware/dec21285.h |
| 665 | F: arch/arm/mach-footbridge/ |
| 666 | |
Sascha Hauer | 86183a5 | 2008-07-24 23:50:35 +0200 | [diff] [blame] | 667 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
| 668 | P: Sascha Hauer |
| 669 | M: kernel@pengutronix.de |
| 670 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 671 | S: Maintained |
| 672 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 673 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
| 674 | P: Lennert Buytenhek |
| 675 | M: kernel@wantstofly.org |
| 676 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 677 | S: Maintained |
| 678 | |
Jaya Kumar | 90b8fc3 | 2008-03-15 05:11:07 +0100 | [diff] [blame] | 679 | ARM/GUMSTIX MACHINE SUPPORT |
| 680 | P: Steve Sakoman |
| 681 | M: sakoman@gmail.com |
| 682 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 683 | S: Maintained |
| 684 | |
Philipp Zabel | ef47d5f | 2009-05-28 07:07:47 +0200 | [diff] [blame] | 685 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
| 686 | P: Philipp Zabel |
| 687 | M: philipp.zabel@gmail.com |
| 688 | S: Maintained |
| 689 | F: arch/arm/mach-pxa/hx4700.c |
| 690 | F: arch/arm/mach-pxa/include/mach/hx4700.h |
| 691 | |
Kristoffer Ericson | 21f37bc | 2006-11-21 01:20:31 +0100 | [diff] [blame] | 692 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 693 | P: Kristoffer Ericson |
| 694 | M: kristoffer.ericson@gmail.com |
| 695 | W: www.jlime.com |
| 696 | S: Maintained |
Kristoffer Ericson | 21f37bc | 2006-11-21 01:20:31 +0100 | [diff] [blame] | 697 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 698 | ARM/INTEL IOP32X ARM ARCHITECTURE |
| 699 | P: Lennert Buytenhek |
| 700 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 701 | P: Dan Williams |
| 702 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 703 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 704 | S: Supported |
| 705 | |
| 706 | ARM/INTEL IOP33X ARM ARCHITECTURE |
| 707 | P: Dan Williams |
| 708 | M: dan.j.williams@intel.com |
| 709 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 710 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 711 | |
| 712 | ARM/INTEL IOP13XX ARM ARCHITECTURE |
| 713 | P: Lennert Buytenhek |
| 714 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 715 | P: Dan Williams |
| 716 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 717 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 718 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 719 | |
| 720 | ARM/INTEL IQ81342EX MACHINE SUPPORT |
| 721 | P: Lennert Buytenhek |
| 722 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 723 | P: Dan Williams |
| 724 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 725 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 726 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 727 | |
| 728 | ARM/INTEL IXP2000 ARM ARCHITECTURE |
| 729 | P: Lennert Buytenhek |
| 730 | M: kernel@wantstofly.org |
| 731 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 732 | S: Maintained |
| 733 | |
| 734 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
| 735 | P: Lennert Buytenhek |
| 736 | M: kernel@wantstofly.org |
| 737 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 738 | S: Maintained |
| 739 | |
| 740 | ARM/INTEL IXP23XX ARM ARCHITECTURE |
| 741 | P: Lennert Buytenhek |
| 742 | M: kernel@wantstofly.org |
| 743 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 744 | S: Maintained |
| 745 | |
| 746 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
| 747 | P: Lennert Buytenhek |
| 748 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 749 | P: Dan Williams |
| 750 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 751 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 752 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 753 | |
| 754 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT |
| 755 | P: Lennert Buytenhek |
| 756 | M: kernel@wantstofly.org |
| 757 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 758 | S: Maintained |
| 759 | |
| 760 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
| 761 | P: Lennert Buytenhek |
| 762 | M: kernel@wantstofly.org |
| 763 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 764 | S: Maintained |
| 765 | |
Philipp Zabel | 3b886171 | 2008-07-09 21:27:15 +0100 | [diff] [blame] | 766 | ARM/MAGICIAN MACHINE SUPPORT |
| 767 | P: Philipp Zabel |
| 768 | M: philipp.zabel@gmail.com |
| 769 | S: Maintained |
| 770 | |
Kristoffer Ericson | 9624dfe | 2008-10-09 16:50:46 +0100 | [diff] [blame] | 771 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
| 772 | P: Michael Petchkovsky |
| 773 | M: mkpetch@internode.on.net |
| 774 | S: Maintained |
| 775 | |
Dirk Opfer | 8459c15 | 2005-11-06 14:27:52 +0000 | [diff] [blame] | 776 | ARM/TOSA MACHINE SUPPORT |
Dmitry Eremin-Solenikov | bfa0b1c | 2009-01-06 14:41:05 -0800 | [diff] [blame] | 777 | P: Dmitry Eremin-Solenikov |
Dmitry Baryshkov | 9388704 | 2008-07-07 10:50:06 +0100 | [diff] [blame] | 778 | M: dbaryshkov@gmail.com |
Dirk Opfer | 8459c15 | 2005-11-06 14:27:52 +0000 | [diff] [blame] | 779 | P: Dirk Opfer |
| 780 | M: dirk@opfer-online.de |
| 781 | S: Maintained |
| 782 | |
Marek Vasut | 54088bf | 2009-03-24 00:29:29 +0100 | [diff] [blame] | 783 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2 SUPPORT |
Marek Vašut | b5e4ad5 | 2008-07-07 17:25:46 +0100 | [diff] [blame] | 784 | P: Marek Vasut |
| 785 | M: marek.vasut@gmail.com |
| 786 | W: http://hackndev.com |
| 787 | S: Maintained |
| 788 | |
Sergey Lapin | c49e1e6 | 2008-08-29 15:47:52 +0100 | [diff] [blame] | 789 | ARM/PALMZ72 SUPPORT |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 790 | P: Sergey Lapin |
| 791 | M: slapin@ossfans.org |
| 792 | W: http://hackndev.com |
| 793 | S: Maintained |
Sergey Lapin | c49e1e6 | 2008-08-29 15:47:52 +0100 | [diff] [blame] | 794 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | ARM/PLEB SUPPORT |
| 796 | P: Peter Chubb |
| 797 | M: pleb@gelato.unsw.edu.au |
| 798 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
| 799 | S: Maintained |
| 800 | |
| 801 | ARM/PT DIGITAL BOARD PORT |
| 802 | P: Stefan Eletzhofer |
| 803 | M: stefan.eletzhofer@eletztrick.de |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 804 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | W: http://www.arm.linux.org.uk/ |
| 806 | S: Maintained |
| 807 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 808 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
| 809 | P: Lennert Buytenhek |
| 810 | M: kernel@wantstofly.org |
| 811 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 812 | S: Maintained |
| 813 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 814 | ARM/RISCPC ARCHITECTURE |
| 815 | P: Russell King |
| 816 | M: linux@arm.linux.org.uk |
| 817 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 818 | W: http://www.arm.linux.org.uk/ |
| 819 | S: Maintained |
| 820 | F: arch/arm/common/time-acorn.c |
| 821 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
| 822 | F: arch/arm/include/asm/hardware/ioc.h |
| 823 | F: arch/arm/include/asm/hardware/iomd.h |
| 824 | F: arch/arm/include/asm/hardware/memc.h |
| 825 | F: arch/arm/mach-rpc/ |
| 826 | F: drivers/net/arm/ether* |
| 827 | F: drivers/scsi/arm/ |
| 828 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | ARM/SHARK MACHINE SUPPORT |
| 830 | P: Alexander Schulz |
| 831 | M: alex@shark-linux.de |
| 832 | W: http://www.shark-linux.de/shark.html |
| 833 | S: Maintained |
| 834 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | ARM/S3C2410 ARM ARCHITECTURE |
| 836 | P: Ben Dooks |
Ben Dooks | 449d4dd | 2006-12-22 01:10:23 -0800 | [diff] [blame] | 837 | M: ben-linux@fluff.org |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 838 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | W: http://www.fluff.org/ben/linux/ |
| 840 | S: Maintained |
| 841 | |
| 842 | ARM/S3C2440 ARM ARCHITECTURE |
| 843 | P: Ben Dooks |
Ben Dooks | 449d4dd | 2006-12-22 01:10:23 -0800 | [diff] [blame] | 844 | M: ben-linux@fluff.org |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 845 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | W: http://www.fluff.org/ben/linux/ |
| 847 | S: Maintained |
| 848 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 849 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
| 850 | P: Lennert Buytenhek |
| 851 | M: kernel@wantstofly.org |
| 852 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 853 | S: Maintained |
| 854 | |
| 855 | ARM/THECUS N2100 MACHINE SUPPORT |
| 856 | P: Lennert Buytenhek |
| 857 | M: kernel@wantstofly.org |
| 858 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 859 | S: Maintained |
| 860 | |
wanzongshun | 98ad6e3 | 2009-02-13 06:04:32 +0100 | [diff] [blame] | 861 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 862 | P: Wan ZongShun |
| 863 | M: mcuos.com@gmail.com |
| 864 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 865 | W: http://www.mcuos.com |
| 866 | S: Maintained |
wanzongshun | 98ad6e3 | 2009-02-13 06:04:32 +0100 | [diff] [blame] | 867 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 868 | ARM/VFP SUPPORT |
| 869 | P: Russell King |
| 870 | M: linux@arm.linux.org.uk |
| 871 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 872 | W: http://www.arm.linux.org.uk/ |
| 873 | S: Maintained |
| 874 | F: arch/arm/vfp/ |
| 875 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | ARPD SUPPORT |
| 877 | P: Jonathan Layes |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 878 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 880 | F: net/ipv4/arp.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | |
| 882 | ASUS ACPI EXTRAS DRIVER |
Len Brown | 0b67d94 | 2006-12-22 21:18:56 -0500 | [diff] [blame] | 883 | P: Corentin Chary |
| 884 | M: corentincj@iksaif.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | P: Karol Kozimor |
| 886 | M: sziwan@users.sourceforge.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | L: acpi4asus-user@lists.sourceforge.net |
| 888 | W: http://sourceforge.net/projects/acpi4asus |
Len Brown | 0b67d94 | 2006-12-22 21:18:56 -0500 | [diff] [blame] | 889 | W: http://xf.iksaif.net/acpi4asus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 891 | F: arch/x86/kernel/acpi/boot.c |
| 892 | F: drivers/platform/x86/asus_acpi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 894 | ASUS ASB100 HARDWARE MONITOR DRIVER |
| 895 | P: Mark M. Hoffman |
| 896 | M: mhoffman@lightlink.com |
| 897 | L: lm-sensors@lm-sensors.org |
| 898 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 899 | F: drivers/hwmon/asb100.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 900 | |
Corentin Chary | 85091b7 | 2007-01-26 14:04:30 +0100 | [diff] [blame] | 901 | ASUS LAPTOP EXTRAS DRIVER |
| 902 | P: Corentin Chary |
| 903 | M: corentincj@iksaif.net |
| 904 | L: acpi4asus-user@lists.sourceforge.net |
| 905 | W: http://sourceforge.net/projects/acpi4asus |
| 906 | W: http://xf.iksaif.net/acpi4asus |
| 907 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 908 | F: drivers/platform/x86/asus-laptop.c |
Corentin Chary | 85091b7 | 2007-01-26 14:04:30 +0100 | [diff] [blame] | 909 | |
Andrew Morton | 953a647 | 2008-11-06 12:53:28 -0800 | [diff] [blame] | 910 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 911 | P: Dan Williams |
| 912 | M: dan.j.williams@intel.com |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 913 | P: Maciej Sosnowski |
| 914 | M: maciej.sosnowski@intel.com |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 915 | L: linux-kernel@vger.kernel.org |
| 916 | W: http://sourceforge.net/projects/xscaleiop |
| 917 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 918 | F: Documentation/crypto/async-tx-api.txt |
| 919 | F: crypto/async_tx/ |
| 920 | F: drivers/dma/ |
| 921 | F: include/linux/dmaengine.h |
| 922 | F: include/linux/async_tx.h |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 923 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 924 | ATA OVER ETHERNET (AOE) DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | P: Ed L. Cashin |
| 926 | M: ecashin@coraid.com |
| 927 | W: http://www.coraid.com/support/linux |
| 928 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 929 | F: Documentation/aoe/ |
| 930 | F: drivers/block/aoe/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 932 | ATHEROS ATH5K WIRELESS DRIVER |
| 933 | P: Jiri Slaby |
| 934 | M: jirislaby@gmail.com |
| 935 | P: Nick Kossifidis |
| 936 | M: mickflemm@gmail.com |
| 937 | P: Luis R. Rodriguez |
Luis R. Rodriguez | 4fe0657 | 2008-10-13 14:08:07 -0700 | [diff] [blame] | 938 | M: lrodriguez@atheros.com |
Bob Copeland | adef199 | 2008-10-29 08:30:57 -0400 | [diff] [blame] | 939 | P: Bob Copeland |
| 940 | M: me@bobcopeland.com |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 941 | L: linux-wireless@vger.kernel.org |
| 942 | L: ath5k-devel@lists.ath5k.org |
| 943 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 944 | F: drivers/net/wireless/ath5k/ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 945 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 946 | ATHEROS ATH9K WIRELESS DRIVER |
| 947 | P: Luis R. Rodriguez |
| 948 | M: lrodriguez@atheros.com |
| 949 | P: Jouni Malinen |
| 950 | M: jmalinen@atheros.com |
Luis R. Rodriguez | 295936c | 2009-03-27 17:21:05 -0400 | [diff] [blame] | 951 | P: Sujith Manoharan |
| 952 | M: Sujith.Manoharan@atheros.com |
| 953 | P: Vasanthakumar Thiagarajan |
| 954 | M: vasanth@atheros.com |
| 955 | P: Senthil Balasubramanian |
| 956 | M: senthilkumar@atheros.com |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 957 | L: linux-wireless@vger.kernel.org |
| 958 | L: ath9k-devel@lists.ath9k.org |
| 959 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 960 | F: drivers/net/wireless/ath9k/ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 961 | |
Christian Lamparter | 75ca88c | 2009-03-21 23:11:49 +0100 | [diff] [blame] | 962 | ATHEROS AR9170 WIRELESS DRIVER |
| 963 | P: Christian Lamparter |
| 964 | M: chunkeey@web.de |
| 965 | L: linux-wireless@vger.kernel.org |
| 966 | W: http://wireless.kernel.org/en/users/Drivers/ar9170 |
| 967 | S: Maintained |
| 968 | F: drivers/net/wireless/ar9170/ |
| 969 | |
Ville Syrjala | 6f69a6d | 2008-04-21 22:21:10 +0000 | [diff] [blame] | 970 | ATI_REMOTE2 DRIVER |
| 971 | P: Ville Syrjala |
| 972 | M: syrjala@sci.fi |
| 973 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 974 | F: drivers/input/misc/ati_remote2.c |
Ville Syrjala | 6f69a6d | 2008-04-21 22:21:10 +0000 | [diff] [blame] | 975 | |
Chris Snook | 7ae115b | 2008-09-09 03:26:57 -0400 | [diff] [blame] | 976 | ATLX ETHERNET DRIVERS |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 977 | P: Jay Cliburn |
| 978 | M: jcliburn@gmail.com |
| 979 | P: Chris Snook |
| 980 | M: csnook@redhat.com |
Chris Snook | 7ae115b | 2008-09-09 03:26:57 -0400 | [diff] [blame] | 981 | P: Jie Yang |
| 982 | M: jie.yang@atheros.com |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 983 | L: atl1-devel@lists.sourceforge.net |
| 984 | W: http://sourceforge.net/projects/atl1 |
| 985 | W: http://atl1.sourceforge.net |
| 986 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 987 | F: drivers/net/atlx/ |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 988 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | ATM |
| 990 | P: Chas Williams |
| 991 | M: chas@cmf.nrl.navy.mil |
Roland Dreier | f37bf90 | 2006-09-13 20:39:33 -0700 | [diff] [blame] | 992 | L: linux-atm-general@lists.sourceforge.net (subscribers-only) |
Jiri Slaby | 44ae98b | 2008-11-30 23:27:11 -0800 | [diff] [blame] | 993 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | W: http://linux-atm.sourceforge.net |
| 995 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 996 | F: drivers/atm/ |
| 997 | F: include/linux/atm* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 999 | ATMEL AT91 MCI DRIVER |
Pierre Ossman | 81764fa | 2007-07-15 18:47:38 +0200 | [diff] [blame] | 1000 | P: Nicolas Ferre |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1001 | M: nicolas.ferre@atmel.com |
Pierre Ossman | 81764fa | 2007-07-15 18:47:38 +0200 | [diff] [blame] | 1002 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 1003 | W: http://www.atmel.com/products/AT91/ |
| 1004 | W: http://www.at91.com/ |
| 1005 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1006 | F: drivers/mmc/host/at91_mci.c |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 1007 | |
Haavard Skinnemoen | a1cfac4 | 2008-02-08 04:21:00 -0800 | [diff] [blame] | 1008 | ATMEL AT91 / AT32 SERIAL DRIVER |
| 1009 | P: Haavard Skinnemoen |
| 1010 | M: hskinnemoen@atmel.com |
| 1011 | L: linux-kernel@vger.kernel.org |
| 1012 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1013 | F: drivers/serial/atmel_serial.c |
Haavard Skinnemoen | a1cfac4 | 2008-02-08 04:21:00 -0800 | [diff] [blame] | 1014 | |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1015 | ATMEL LCDFB DRIVER |
| 1016 | P: Nicolas Ferre |
| 1017 | M: nicolas.ferre@atmel.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 1018 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1019 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1020 | F: drivers/video/atmel_lcdfb.c |
| 1021 | F: include/video/atmel_lcdc.h |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1022 | |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 1023 | ATMEL MACB ETHERNET DRIVER |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 1024 | P: Haavard Skinnemoen |
| 1025 | M: hskinnemoen@atmel.com |
| 1026 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1027 | F: drivers/net/macb.* |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 1028 | |
Haavard Skinnemoen | 754ce4f | 2007-02-14 00:33:09 -0800 | [diff] [blame] | 1029 | ATMEL SPI DRIVER |
| 1030 | P: Haavard Skinnemoen |
| 1031 | M: hskinnemoen@atmel.com |
| 1032 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1033 | F: drivers/spi/atmel_spi.* |
Haavard Skinnemoen | 754ce4f | 2007-02-14 00:33:09 -0800 | [diff] [blame] | 1034 | |
Haavard Skinnemoen | 914a3f3 | 2007-10-10 02:29:43 -0700 | [diff] [blame] | 1035 | ATMEL USBA UDC DRIVER |
| 1036 | P: Haavard Skinnemoen |
| 1037 | M: hskinnemoen@atmel.com |
| 1038 | L: kernel@avr32linux.org |
| 1039 | W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver |
| 1040 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1041 | F: drivers/usb/gadget/atmel_usba_udc.* |
Haavard Skinnemoen | 914a3f3 | 2007-10-10 02:29:43 -0700 | [diff] [blame] | 1042 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | ATMEL WIRELESS DRIVER |
| 1044 | P: Simon Kelley |
| 1045 | M: simon@thekelleys.org.uk |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 1046 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | W: http://www.thekelleys.org.uk/atmel |
| 1048 | W: http://atmelwlandriver.sourceforge.net/ |
| 1049 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1050 | F: drivers/net/wireless/atmel* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 1052 | AUDIT SUBSYSTEM |
Eric Paris | 0ef1970 | 2008-04-18 10:47:32 -0400 | [diff] [blame] | 1053 | P: Al Viro |
| 1054 | M: viro@zeniv.linux.org.uk |
| 1055 | P: Eric Paris |
| 1056 | M: eparis@redhat.com |
Gabriel C | b9a0620 | 2007-08-10 13:00:56 -0700 | [diff] [blame] | 1057 | L: linux-audit@redhat.com (subscribers-only) |
David Woodhouse | ad3f9a2 | 2005-07-13 15:28:29 +0100 | [diff] [blame] | 1058 | W: http://people.redhat.com/sgrubb/audit/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1059 | 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] | 1060 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1061 | F: include/linux/audit.h |
| 1062 | F: kernel/audit* |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 1063 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1064 | AUXILIARY DISPLAY DRIVERS |
| 1065 | P: Miguel Ojeda Sandonis |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1066 | M: miguel.ojeda.sandonis@gmail.com |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1067 | L: linux-kernel@vger.kernel.org |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1068 | W: http://miguelojeda.es/auxdisplay.htm |
| 1069 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1070 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1071 | F: drivers/auxdisplay/ |
| 1072 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1073 | |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1074 | AVR32 ARCHITECTURE |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1075 | P: Haavard Skinnemoen |
| 1076 | M: hskinnemoen@atmel.com |
| 1077 | W: http://www.atmel.com/products/AVR32/ |
| 1078 | W: http://avr32linux.org/ |
| 1079 | W: http://avrfreaks.net/ |
| 1080 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1081 | F: arch/avr32/ |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1082 | |
| 1083 | AVR32/AT32AP MACHINE SUPPORT |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1084 | P: Haavard Skinnemoen |
| 1085 | M: hskinnemoen@atmel.com |
| 1086 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1087 | F: arch/avr32/mach-at32ap/ |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1088 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | AX.25 NETWORK LAYER |
| 1090 | P: Ralf Baechle |
| 1091 | M: ralf@linux-mips.org |
| 1092 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 1093 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1095 | F: include/linux/ax25.h |
| 1096 | F: include/net/ax25.h |
| 1097 | F: net/ax25/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1099 | B43 WIRELESS DRIVER |
| 1100 | P: Michael Buesch |
| 1101 | M: mb@bu3sch.de |
| 1102 | P: Stefano Brivio |
| 1103 | M: stefano.brivio@polimi.it |
| 1104 | L: linux-wireless@vger.kernel.org |
| 1105 | W: http://linuxwireless.org/en/users/Drivers/b43 |
| 1106 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1107 | F: drivers/net/wireless/b43/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1108 | |
| 1109 | B43LEGACY WIRELESS DRIVER |
| 1110 | P: Larry Finger |
| 1111 | M: Larry.Finger@lwfinger.net |
| 1112 | P: Stefano Brivio |
| 1113 | M: stefano.brivio@polimi.it |
| 1114 | L: linux-wireless@vger.kernel.org |
| 1115 | W: http://linuxwireless.org/en/users/Drivers/b43 |
| 1116 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1117 | F: drivers/net/wireless/b43legacy/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1118 | |
Richard Purdie | 300abeb | 2007-02-07 22:21:07 +0000 | [diff] [blame] | 1119 | BACKLIGHT CLASS/SUBSYSTEM |
| 1120 | P: Richard Purdie |
| 1121 | M: rpurdie@rpsys.net |
| 1122 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1123 | F: drivers/video/backlight/ |
| 1124 | F: include/linux/backlight.h |
Richard Purdie | 300abeb | 2007-02-07 22:21:07 +0000 | [diff] [blame] | 1125 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1126 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
| 1127 | P: Thomas Sailer |
| 1128 | M: t.sailer@alumni.ethz.ch |
| 1129 | L: linux-hams@vger.kernel.org |
| 1130 | W: http://www.baycom.org/~tom/ham/ham.html |
| 1131 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1132 | F: drivers/net/hamradio/baycom* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1133 | |
| 1134 | BEFS FILE SYSTEM |
| 1135 | P: Sergey S. Kostyliov |
| 1136 | M: rathamahata@php4.ru |
| 1137 | L: linux-kernel@vger.kernel.org |
| 1138 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1139 | F: Documentation/filesystems/befs.txt |
| 1140 | F: fs/befs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1141 | |
| 1142 | BFS FILE SYSTEM |
| 1143 | P: Tigran A. Aivazian |
| 1144 | M: tigran@aivazian.fsnet.co.uk |
| 1145 | L: linux-kernel@vger.kernel.org |
| 1146 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1147 | F: Documentation/filesystems/bfs.txt |
| 1148 | F: fs/bfs/ |
| 1149 | F: include/linux/bfs_fs.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1150 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1151 | BLACKFIN ARCHITECTURE |
Mike Frysinger | 6c83429 | 2009-05-24 02:13:15 -0400 | [diff] [blame] | 1152 | P: Mike Frysinger |
| 1153 | M: vapier@gentoo.org |
Mike Frysinger | 5b93e13 | 2009-02-04 16:49:45 +0800 | [diff] [blame] | 1154 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | e3b2d3f | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1155 | W: http://blackfin.uclinux.org |
| 1156 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1157 | F: arch/blackfin/ |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1158 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1159 | BLACKFIN EMAC DRIVER |
Mike Frysinger | 6c83429 | 2009-05-24 02:13:15 -0400 | [diff] [blame] | 1160 | P: Michael Hennerich |
| 1161 | M: michael.hennerich@analog.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1162 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1163 | W: http://blackfin.uclinux.org |
| 1164 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1165 | F: drivers/net/bfin_mac.* |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1166 | |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1167 | BLACKFIN RTC DRIVER |
| 1168 | P: Mike Frysinger |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1169 | M: vapier.adi@gmail.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1170 | L: uclinux-dist-devel@blackfin.uclinux.org |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1171 | W: http://blackfin.uclinux.org |
| 1172 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1173 | F: drivers/rtc/rtc-bfin.c |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1174 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1175 | BLACKFIN SERIAL DRIVER |
Mike Frysinger | 9c5e710 | 2007-11-17 23:19:44 +0800 | [diff] [blame] | 1176 | P: Sonic Zhang |
| 1177 | M: sonic.zhang@analog.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1178 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | e3b2d3f | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1179 | W: http://blackfin.uclinux.org |
| 1180 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1181 | F: drivers/serial/bfin_5xx.c |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1182 | |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 1183 | BLACKFIN WATCHDOG DRIVER |
| 1184 | P: Mike Frysinger |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 1185 | M: vapier.adi@gmail.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1186 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 1187 | W: http://blackfin.uclinux.org |
| 1188 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1189 | F: drivers/watchdog/bfin_wdt.c |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 1190 | |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 1191 | BLACKFIN I2C TWI DRIVER |
| 1192 | P: Sonic Zhang |
| 1193 | M: sonic.zhang@analog.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1194 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 1195 | W: http://blackfin.uclinux.org/ |
| 1196 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1197 | F: drivers/i2c/busses/i2c-bfin-twi.c |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 1198 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | BLOCK LAYER |
| 1200 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 1201 | M: axboe@kernel.dk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1202 | L: linux-kernel@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1203 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1205 | F: block/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 1207 | BLOCK2MTD DRIVER |
| 1208 | P: Joern Engel |
| 1209 | M: joern@lazybastard.org |
| 1210 | L: linux-mtd@lists.infradead.org |
| 1211 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1212 | F: drivers/mtd/devices/block2mtd.c |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 1213 | |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 1214 | BLUETOOTH DRIVERS |
| 1215 | P: Marcel Holtmann |
| 1216 | M: marcel@holtmann.org |
| 1217 | L: linux-bluetooth@vger.kernel.org |
| 1218 | W: http://www.bluez.org/ |
| 1219 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1220 | F: drivers/bluetooth/ |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 1221 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | BLUETOOTH SUBSYSTEM |
| 1223 | P: Marcel Holtmann |
| 1224 | M: marcel@holtmann.org |
Pavel Machek | 781c284 | 2008-03-20 15:41:02 -0700 | [diff] [blame] | 1225 | L: linux-bluetooth@vger.kernel.org |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 1226 | W: http://www.bluez.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1227 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1229 | F: net/bluetooth/ |
| 1230 | F: include/net/bluetooth/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | BONDING DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 1233 | P: Jay Vosburgh |
| 1234 | M: fubar@us.ibm.com |
| 1235 | L: bonding-devel@lists.sourceforge.net |
| 1236 | W: http://sourceforge.net/projects/bonding/ |
| 1237 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1238 | F: drivers/net/bonding/ |
| 1239 | F: include/linux/if_bonding.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1240 | |
Gary Zambrano | 3910589 | 2006-06-22 17:26:20 -0700 | [diff] [blame] | 1241 | BROADCOM B44 10/100 ETHERNET DRIVER |
| 1242 | P: Gary Zambrano |
| 1243 | M: zambrano@broadcom.com |
| 1244 | L: netdev@vger.kernel.org |
| 1245 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1246 | F: drivers/net/b44.* |
Gary Zambrano | 3910589 | 2006-06-22 17:26:20 -0700 | [diff] [blame] | 1247 | |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1248 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
| 1249 | P: Michael Chan |
| 1250 | M: mchan@broadcom.com |
| 1251 | L: netdev@vger.kernel.org |
| 1252 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1253 | F: drivers/net/bnx2.* |
| 1254 | F: drivers/net/bnx2_* |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1255 | |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 1256 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
Eilon Greenstein | 24e3fce | 2008-06-12 14:30:28 -0700 | [diff] [blame] | 1257 | P: Eilon Greenstein |
| 1258 | M: eilong@broadcom.com |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 1259 | L: netdev@vger.kernel.org |
| 1260 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1261 | F: drivers/net/bnx2x* |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 1262 | |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1263 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
Matt Carlson | 1318136 | 2009-02-25 14:41:06 +0000 | [diff] [blame] | 1264 | P: Matt Carlson |
| 1265 | M: mcarlson@broadcom.com |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1266 | P: Michael Chan |
| 1267 | M: mchan@broadcom.com |
| 1268 | L: netdev@vger.kernel.org |
| 1269 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1270 | F: drivers/net/tg3.* |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1271 | |
Jens Axboe | 5cdf7f7 | 2007-07-17 08:58:06 +0200 | [diff] [blame] | 1272 | BSG (block layer generic sg v4 driver) |
| 1273 | P: FUJITA Tomonori |
| 1274 | M: fujita.tomonori@lab.ntt.co.jp |
| 1275 | L: linux-scsi@vger.kernel.org |
| 1276 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1277 | F: block/bsg.c |
| 1278 | F: include/linux/bsg.h |
Jens Axboe | 5cdf7f7 | 2007-07-17 08:58:06 +0200 | [diff] [blame] | 1279 | |
Michael Buesch | ff1d5c2 | 2008-07-25 01:46:10 -0700 | [diff] [blame] | 1280 | BT8XXGPIO DRIVER |
| 1281 | P: Michael Buesch |
| 1282 | M: mb@bu3sch.de |
| 1283 | W: http://bu3sch.de/btgpio.php |
| 1284 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1285 | F: drivers/gpio/bt8xxgpio.c |
Michael Buesch | ff1d5c2 | 2008-07-25 01:46:10 -0700 | [diff] [blame] | 1286 | |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 1287 | BTRFS FILE SYSTEM |
| 1288 | P: Chris Mason |
| 1289 | M: chris.mason@oracle.com |
| 1290 | L: linux-btrfs@vger.kernel.org |
| 1291 | W: http://btrfs.wiki.kernel.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1292 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 1293 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1294 | F: Documentation/filesystems/btrfs.txt |
| 1295 | F: fs/btrfs/ |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 1296 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | BTTV VIDEO4LINUX DRIVER |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 1298 | P: Mauro Carvalho Chehab |
Mauro Carvalho Chehab | 8d58d77 | 2006-01-27 16:32:02 -0200 | [diff] [blame] | 1299 | M: mchehab@infradead.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 1300 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 1301 | W: http://linuxtv.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1302 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 1303 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1304 | F: Documentation/video4linux/bttv/ |
| 1305 | F: drivers/media/video/bt8xx/bttv* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | |
David Howells | a5432f5 | 2009-04-20 15:46:45 +0100 | [diff] [blame] | 1307 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
| 1308 | P: David Howells |
| 1309 | M: dhowells@redhat.com |
| 1310 | L: linux-cachefs@redhat.com |
| 1311 | S: Supported |
| 1312 | F: Documentation/filesystems/caching/cachefiles.txt |
| 1313 | F: fs/cachefiles/ |
| 1314 | |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1315 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 1316 | P: Jonathan Corbet |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1317 | M: corbet@lwn.net |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 1318 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1319 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1320 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1321 | F: Documentation/video4linux/cafe_ccic |
| 1322 | F: drivers/media/video/cafe_ccic* |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1323 | |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 1324 | CALGARY x86-64 IOMMU |
| 1325 | P: Muli Ben-Yehuda |
| 1326 | M: muli@il.ibm.com |
| 1327 | P: Jon D. Mason |
Jon Mason | d8d2bed | 2006-10-05 18:47:21 +0200 | [diff] [blame] | 1328 | M: jdmason@kudzu.us |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 1329 | L: linux-kernel@vger.kernel.org |
| 1330 | L: discuss@x86-64.org |
| 1331 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1332 | F: arch/x86/kernel/pci-calgary_64.c |
| 1333 | F: arch/x86/kernel/tce_64.c |
| 1334 | F: arch/x86/include/asm/calgary.h |
| 1335 | F: arch/x86/include/asm/tce.h |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 1336 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1337 | CAN NETWORK LAYER |
| 1338 | P: Urs Thuermann |
| 1339 | M: urs.thuermann@volkswagen.de |
| 1340 | P: Oliver Hartkopp |
| 1341 | M: oliver.hartkopp@volkswagen.de |
| 1342 | L: socketcan-core@lists.berlios.de (subscribers-only) |
| 1343 | W: http://developer.berlios.de/projects/socketcan/ |
| 1344 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1345 | F: drivers/net/can/ |
| 1346 | F: include/linux/can/ |
| 1347 | F: include/linux/can.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1348 | |
Wolfgang Grandegger | 4261a20 | 2009-05-15 23:39:28 +0000 | [diff] [blame] | 1349 | CAN NETWORK DRIVERS |
| 1350 | P: Wolfgang Grandegger |
| 1351 | M: wg@grandegger.com |
| 1352 | L: socketcan-core@lists.berlios.de (subscribers-only) |
| 1353 | W: http://developer.berlios.de/projects/socketcan/ |
| 1354 | S: Maintained |
| 1355 | |
Arnd Bergmann | b815454 | 2008-05-16 11:10:59 +0200 | [diff] [blame] | 1356 | CELL BROADBAND ENGINE ARCHITECTURE |
| 1357 | P: Arnd Bergmann |
| 1358 | M: arnd@arndb.de |
| 1359 | L: linuxppc-dev@ozlabs.org |
| 1360 | L: cbe-oss-dev@ozlabs.org |
| 1361 | W: http://www.ibm.com/developerworks/power/cell/ |
| 1362 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1363 | F: arch/powerpc/include/asm/cell*.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1364 | F: arch/powerpc/include/asm/spu*.h |
| 1365 | F: arch/powerpc/oprofile/*cell* |
| 1366 | F: arch/powerpc/platforms/cell/ |
Arnd Bergmann | b815454 | 2008-05-16 11:10:59 +0200 | [diff] [blame] | 1367 | |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 1368 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
| 1369 | P: David Vrabel |
| 1370 | M: david.vrabel@csr.com |
| 1371 | L: linux-usb@vger.kernel.org |
| 1372 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1373 | F: Documentation/usb/WUSB-Design-overview.txt |
| 1374 | F: Documentation/usb/wusb-cbaf |
| 1375 | F: drivers/usb/wusbcore/ |
| 1376 | F: include/linux/usb/wusb* |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 1377 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1378 | CFAG12864B LCD DRIVER |
| 1379 | P: Miguel Ojeda Sandonis |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1380 | M: miguel.ojeda.sandonis@gmail.com |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1381 | L: linux-kernel@vger.kernel.org |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1382 | W: http://miguelojeda.es/auxdisplay.htm |
| 1383 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1384 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1385 | F: drivers/auxdisplay/cfag12864b.c |
| 1386 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1387 | |
| 1388 | CFAG12864BFB LCD FRAMEBUFFER DRIVER |
| 1389 | P: Miguel Ojeda Sandonis |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1390 | M: miguel.ojeda.sandonis@gmail.com |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1391 | L: linux-kernel@vger.kernel.org |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1392 | W: http://miguelojeda.es/auxdisplay.htm |
| 1393 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1394 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1395 | F: drivers/auxdisplay/cfag12864bfb.c |
| 1396 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1397 | |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 1398 | CFG80211 and NL80211 |
| 1399 | P: Johannes Berg |
| 1400 | M: johannes@sipsolutions.net |
| 1401 | L: linux-wireless@vger.kernel.org |
| 1402 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1403 | F: include/linux/nl80211.h |
| 1404 | F: include/net/cfg80211.h |
| 1405 | F: net/wireless/* |
| 1406 | X: net/wireless/wext* |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 1407 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1408 | CHECKPATCH |
| 1409 | P: Andy Whitcroft |
Andy Whitcroft | b0e0b43 | 2009-01-06 14:41:22 -0800 | [diff] [blame] | 1410 | M: apw@canonical.com |
| 1411 | L: linux-kernel@vger.kernel.org |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1412 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1413 | F: scripts/checkpatch.pl |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1414 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1415 | CISCO 10G ETHERNET DRIVER |
| 1416 | P: Scott Feldman |
| 1417 | M: scofeldm@cisco.com |
| 1418 | P: Joe Eykholt |
| 1419 | M: jeykholt@cisco.com |
Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 1420 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1421 | F: drivers/net/enic/ |
Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 1422 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1423 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
| 1424 | P: Lennert Buytenhek |
| 1425 | M: kernel@wantstofly.org |
| 1426 | L: netdev@vger.kernel.org |
| 1427 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1428 | F: drivers/net/arm/ep93xx_eth.c |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1429 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1430 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
| 1431 | P: Lennert Buytenhek |
| 1432 | M: kernel@wantstofly.org |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 1433 | L: linux-usb@vger.kernel.org |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1434 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1435 | F: drivers/usb/host/ohci-ep93xx.c |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1436 | |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 1437 | CIRRUS LOGIC CS4270 SOUND DRIVER |
| 1438 | P: Timur Tabi |
| 1439 | M: timur@freescale.com |
| 1440 | L: alsa-devel@alsa-project.org |
| 1441 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1442 | F: sound/soc/codecs/cs4270* |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 1443 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1444 | CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER |
| 1445 | P: Cirrus Logic Corporation (kernel 2.2 driver) |
| 1446 | M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com> |
| 1447 | P: Nils Faerber (port to kernel 2.4) |
| 1448 | M: Nils Faerber <nils@kernelconcepts.de> |
| 1449 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1450 | F: Documentation/input/cs461x.txt |
| 1451 | F: sound/pci/cs46xx/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1452 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1453 | CLK API |
| 1454 | P: Russell King |
| 1455 | M: linux@arm.linux.org.uk |
| 1456 | F: include/linux/clk.h |
| 1457 | |
Abhijeet Joglekar | 5df6d73 | 2009-04-17 18:33:26 -0700 | [diff] [blame] | 1458 | CISCO FCOE HBA DRIVER |
| 1459 | P: Abhijeet Joglekar |
| 1460 | M: abjoglek@cisco.com |
| 1461 | P: Joe Eykholt |
| 1462 | M: jeykholt@cisco.com |
| 1463 | L: linux-scsi@vger.kernel.org |
| 1464 | S: Supported |
| 1465 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1466 | CODA FILE SYSTEM |
| 1467 | P: Jan Harkes |
| 1468 | M: jaharkes@cs.cmu.edu |
| 1469 | M: coda@cs.cmu.edu |
| 1470 | L: codalist@coda.cs.cmu.edu |
| 1471 | W: http://www.coda.cs.cmu.edu/ |
| 1472 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1473 | F: Documentation/filesystems/coda.txt |
| 1474 | F: fs/coda/ |
| 1475 | F: include/linux/coda*.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1476 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1477 | COMMON INTERNET FILE SYSTEM (CIFS) |
| 1478 | P: Steve French |
| 1479 | M: sfrench@samba.org |
| 1480 | L: linux-cifs-client@lists.samba.org |
| 1481 | L: samba-technical@lists.samba.org |
| 1482 | W: http://linux-cifs.samba.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1483 | 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] | 1484 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1485 | F: Documentation/filesystems/cifs.txt |
| 1486 | F: fs/cifs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1487 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1488 | COMPACTPCI HOTPLUG CORE |
| 1489 | P: Scott Murray |
| 1490 | M: scottm@somanetworks.com |
| 1491 | M: scott@spiteful.org |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 1492 | L: linux-pci@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1494 | F: drivers/pci/hotplug/cpci_hotplug* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1495 | |
| 1496 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER |
| 1497 | P: Scott Murray |
| 1498 | M: scottm@somanetworks.com |
| 1499 | M: scott@spiteful.org |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 1500 | L: linux-pci@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1501 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1502 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1503 | |
| 1504 | COMPACTPCI HOTPLUG GENERIC DRIVER |
| 1505 | P: Scott Murray |
| 1506 | M: scottm@somanetworks.com |
| 1507 | M: scott@spiteful.org |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 1508 | L: linux-pci@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1509 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1510 | F: drivers/pci/hotplug/cpcihp_generic.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | |
Cezary Jackiewicz | 5411552 | 2008-06-09 16:22:22 -0700 | [diff] [blame] | 1512 | COMPAL LAPTOP SUPPORT |
| 1513 | P: Cezary Jackiewicz |
| 1514 | M: cezary.jackiewicz@gmail.com |
| 1515 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1516 | F: drivers/platform/x86/compal-laptop.c |
Cezary Jackiewicz | 5411552 | 2008-06-09 16:22:22 -0700 | [diff] [blame] | 1517 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1518 | COMPUTONE INTELLIPORT MULTIPORT CARD |
| 1519 | P: Michael H. Warfield |
Adrian Bunk | 07d46de | 2005-06-25 14:59:13 -0700 | [diff] [blame] | 1520 | M: mhw@wittsend.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1521 | W: http://www.wittsend.com/computone.html |
Adrian Bunk | 07d46de | 2005-06-25 14:59:13 -0700 | [diff] [blame] | 1522 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1523 | F: Documentation/serial/computone.txt |
| 1524 | F: drivers/char/ip2/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1525 | |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 1526 | CONEXANT ACCESSRUNNER USB DRIVER |
| 1527 | P: Simon Arlott |
| 1528 | M: cxacru@fire.lp0.eu |
Simon Arlott | 9ae5e3b | 2007-05-09 08:38:10 +0200 | [diff] [blame] | 1529 | L: accessrunner-general@lists.sourceforge.net |
| 1530 | W: http://accessrunner.sourceforge.net/ |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 1531 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1532 | F: drivers/usb/atm/cxacru.c |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 1533 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1534 | CONFIGFS |
| 1535 | P: Joel Becker |
| 1536 | M: joel.becker@oracle.com |
| 1537 | L: linux-kernel@vger.kernel.org |
| 1538 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1539 | F: fs/configfs/ |
| 1540 | F: include/linux/configfs.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1541 | |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 1542 | CONTROL GROUPS (CGROUPS) |
| 1543 | P: Paul Menage |
| 1544 | M: menage@google.com |
KOSAKI Motohiro | 01c4a42 | 2009-02-11 13:04:35 -0800 | [diff] [blame] | 1545 | P: Li Zefan |
| 1546 | M: lizf@cn.fujitsu.com |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 1547 | L: containers@lists.linux-foundation.org |
| 1548 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1549 | F: include/linux/cgroup* |
| 1550 | F: kernel/cgroup* |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 1551 | |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1552 | CORETEMP HARDWARE MONITORING DRIVER |
| 1553 | P: Rudolf Marek |
| 1554 | M: r.marek@assembler.cz |
| 1555 | L: lm-sensors@lm-sensors.org |
| 1556 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1557 | F: Documentation/hwmon/coretemp |
| 1558 | F: drivers/hwmon/coretemp.c |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1559 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | COSA/SRP SYNC SERIAL DRIVER |
| 1561 | P: Jan "Yenya" Kasprzak |
| 1562 | M: kas@fi.muni.cz |
| 1563 | W: http://www.fi.muni.cz/~kas/cosa/ |
| 1564 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1565 | F: drivers/net/wan/cosa* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | |
Florian Fainelli | 4371ee3 | 2009-06-01 02:43:17 -0700 | [diff] [blame] | 1567 | CPMAC ETHERNET DRIVER |
| 1568 | P: Florian Fainelli |
| 1569 | M: florian@openwrt.org |
| 1570 | L: netdev@vger.kernel.org |
| 1571 | S: Maintained |
| 1572 | F: drivers/net/cpmac.c |
| 1573 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1574 | CPU FREQUENCY DRIVERS |
| 1575 | P: Dave Jones |
Dave Jones | f4432c5 | 2008-10-20 13:31:45 -0400 | [diff] [blame] | 1576 | M: davej@redhat.com |
Dave Jones | bc5f65d | 2008-07-31 18:22:59 -0400 | [diff] [blame] | 1577 | L: cpufreq@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1578 | W: http://www.codemonkey.org.uk/projects/cpufreq/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1579 | 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] | 1580 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1581 | F: arch/x86/kernel/cpu/cpufreq/ |
| 1582 | F: drivers/cpufreq/ |
| 1583 | F: include/linux/cpufreq.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1584 | |
| 1585 | CPUID/MSR DRIVER |
| 1586 | P: H. Peter Anvin |
| 1587 | M: hpa@zytor.com |
| 1588 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1589 | F: arch/x86/kernel/cpuid.c |
| 1590 | F: arch/x86/kernel/msr.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1592 | CPUSETS |
Paul Jackson | 6bffd7b | 2008-05-01 04:34:21 -0700 | [diff] [blame] | 1593 | P: Paul Menage |
Paul Jackson | 6bffd7b | 2008-05-01 04:34:21 -0700 | [diff] [blame] | 1594 | M: menage@google.com |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1595 | L: linux-kernel@vger.kernel.org |
| 1596 | W: http://www.bullopensource.org/cpuset/ |
Paul Jackson | 551e172 | 2008-06-12 15:21:31 -0700 | [diff] [blame] | 1597 | W: http://oss.sgi.com/projects/cpusets/ |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1598 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1599 | F: Documentation/cgroups/cpusets.txt |
| 1600 | F: include/linux/cpuset.h |
| 1601 | F: kernel/cpuset.c |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1602 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1603 | CRAMFS FILESYSTEM |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 1604 | W: http://sourceforge.net/projects/cramfs/ |
| 1605 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1606 | F: Documentation/filesystems/cramfs.txt |
| 1607 | F: fs/cramfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1608 | |
| 1609 | CRIS PORT |
| 1610 | P: Mikael Starvik |
| 1611 | M: starvik@axis.com |
Jesper Nilsson | 0b07aa6 | 2008-01-25 13:22:29 +0100 | [diff] [blame] | 1612 | P: Jesper Nilsson |
| 1613 | M: jesper.nilsson@axis.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1614 | L: dev-etrax@axis.com |
| 1615 | W: http://developer.axis.com |
| 1616 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1617 | F: arch/cris/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 | |
| 1619 | CRYPTO API |
| 1620 | P: Herbert Xu |
| 1621 | M: herbert@gondor.apana.org.au |
| 1622 | P: David S. Miller |
| 1623 | M: davem@davemloft.net |
| 1624 | L: linux-crypto@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1625 | 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] | 1626 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1627 | F: Documentation/crypto/ |
| 1628 | F: arch/*/crypto/ |
| 1629 | F: crypto/ |
| 1630 | F: drivers/crypto/ |
| 1631 | F: include/crypto/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | |
Neil Horman | 5b07bd5 | 2009-02-05 16:03:04 +1100 | [diff] [blame] | 1633 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
| 1634 | P: Neil Horman |
| 1635 | M: nhorman@tuxdriver.com |
| 1636 | L: linux-crypto@vger.kernel.org |
| 1637 | S: Maintained |
| 1638 | |
Jaya Kumar | 9b4ffa4 | 2005-11-17 10:12:23 +0100 | [diff] [blame] | 1639 | CS5535 Audio ALSA driver |
| 1640 | P: Jaya Kumar |
| 1641 | M: jayakumar.alsa@gmail.com |
| 1642 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1643 | F: sound/pci/cs5535audio/ |
Jaya Kumar | 9b4ffa4 | 2005-11-17 10:12:23 +0100 | [diff] [blame] | 1644 | |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 1645 | CX18 VIDEO4LINUX DRIVER |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1646 | P: Hans Verkuil |
| 1647 | M: hverkuil@xs4all.nl |
| 1648 | P: Andy Walls |
| 1649 | M: awalls@radix.net |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 1650 | L: ivtv-devel@ivtvdriver.org |
| 1651 | L: ivtv-users@ivtvdriver.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 1652 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1653 | 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] | 1654 | W: http://linuxtv.org |
| 1655 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1656 | F: Documentation/video4linux/cx18.txt |
| 1657 | F: drivers/media/video/cx18/ |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 1658 | |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 1659 | CXGB3 ETHERNET DRIVER (CXGB3) |
| 1660 | P: Divy Le Ray |
| 1661 | M: divy@chelsio.com |
| 1662 | L: netdev@vger.kernel.org |
| 1663 | W: http://www.chelsio.com |
| 1664 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1665 | F: drivers/net/cxgb3/ |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 1666 | |
| 1667 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) |
| 1668 | P: Steve Wise |
| 1669 | M: swise@chelsio.com |
| 1670 | L: general@lists.openfabrics.org |
| 1671 | W: http://www.openfabrics.org |
| 1672 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1673 | F: drivers/infiniband/hw/cxgb3/ |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 1674 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1675 | CYBERPRO FB DRIVER |
| 1676 | P: Russell King |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1677 | M: linux@arm.linux.org.uk |
| 1678 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1679 | W: http://www.arm.linux.org.uk/ |
| 1680 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1681 | F: drivers/video/cyber2000fb.* |
Knut Petersen | 9fa68ea | 2005-09-09 13:04:56 -0700 | [diff] [blame] | 1682 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1683 | CYCLADES 2X SYNC CARD DRIVER |
| 1684 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 1685 | M: acme@ghostprotocols.net |
| 1686 | W: http://oops.ghostprotocols.net:81/blog |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1687 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1688 | F: drivers/net/wan/cycx* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 | |
| 1690 | CYCLADES ASYNC MUX DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1691 | W: http://www.cyclades.com/ |
Jiri Slaby | d459883 | 2007-02-12 00:51:53 -0800 | [diff] [blame] | 1692 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1693 | F: drivers/char/cyclades.c |
| 1694 | F: include/linux/cyclades.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1695 | |
| 1696 | CYCLADES PC300 DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1697 | W: http://www.cyclades.com/ |
Jiri Slaby | d459883 | 2007-02-12 00:51:53 -0800 | [diff] [blame] | 1698 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1699 | F: drivers/net/wan/pc300* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1700 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1701 | DAMA SLAVE for AX.25 |
| 1702 | P: Joerg Reuter |
| 1703 | M: jreuter@yaina.de |
| 1704 | W: http://yaina.de/jreuter/ |
| 1705 | W: http://www.qsl.net/dl1bke/ |
| 1706 | L: linux-hams@vger.kernel.org |
| 1707 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1708 | F: net/ax25/af_ax25.c |
| 1709 | F: net/ax25/ax25_dev.c |
| 1710 | F: net/ax25/ax25_ds_* |
| 1711 | F: net/ax25/ax25_in.c |
| 1712 | F: net/ax25/ax25_out.c |
| 1713 | F: net/ax25/ax25_timer.c |
| 1714 | F: net/ax25/sysctl_net_ax25.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1715 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1716 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
| 1717 | P: Tobias Ringstrom |
| 1718 | M: tori@unhappy.mine.nu |
| 1719 | L: netdev@vger.kernel.org |
| 1720 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1721 | F: Documentation/networking/dmfe.txt |
| 1722 | F: drivers/net/tulip/dmfe.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1723 | |
| 1724 | DC390/AM53C974 SCSI driver |
| 1725 | P: Kurt Garloff |
| 1726 | M: garloff@suse.de |
| 1727 | W: http://www.garloff.de/kurt/linux/dc390/ |
| 1728 | P: Guennadi Liakhovetski |
| 1729 | M: g.liakhovetski@gmx.de |
| 1730 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1731 | F: drivers/scsi/tmscsim.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1732 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1733 | DC395x SCSI driver |
| 1734 | P: Oliver Neukum |
| 1735 | M: oliver@neukum.name |
| 1736 | P: Ali Akcaagac |
| 1737 | M: aliakc@web.de |
| 1738 | P: Jamie Lenehan |
| 1739 | M: lenehan@twibble.org |
| 1740 | W: http://twibble.org/dist/dc395x/ |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 1741 | L: dc395x@twibble.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1742 | L: http://lists.twibble.org/mailman/listinfo/dc395x/ |
| 1743 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1744 | F: Documentation/scsi/dc395x.txt |
| 1745 | F: drivers/scsi/dc395x.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1746 | |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1747 | DCCP PROTOCOL |
| 1748 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 1749 | M: acme@ghostprotocols.net |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1750 | L: dccp@vger.kernel.org |
Ian McDonald | f3b84ec | 2005-11-10 13:05:01 -0800 | [diff] [blame] | 1751 | W: http://linux-net.osdl.org/index.php/DCCP |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1752 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1753 | F: include/linux/dccp.h |
| 1754 | F: include/linux/tfrc.h |
| 1755 | F: net/dccp/ |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1756 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1757 | DECnet NETWORK LAYER |
Christine Caulfield | 8943f26 | 2008-02-14 19:31:31 -0800 | [diff] [blame] | 1758 | P: Christine Caulfield |
| 1759 | M: christine.caulfield@googlemail.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1760 | W: http://linux-decnet.sourceforge.net |
| 1761 | L: linux-decnet-user@lists.sourceforge.net |
| 1762 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1763 | F: Documentation/networking/decnet.txt |
| 1764 | F: net/decnet/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1765 | |
| 1766 | DEFXX FDDI NETWORK DRIVER |
| 1767 | P: Maciej W. Rozycki |
| 1768 | M: macro@linux-mips.org |
| 1769 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1770 | F: drivers/net/defxx.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1771 | |
Matthew Garrett | ad8f07c | 2009-01-07 18:08:56 -0800 | [diff] [blame] | 1772 | DELL LAPTOP DRIVER |
| 1773 | P: Matthew Garrett |
| 1774 | M: mjg59@srcf.ucam.org |
| 1775 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1776 | F: drivers/platform/x86/dell-laptop.c |
Matthew Garrett | ad8f07c | 2009-01-07 18:08:56 -0800 | [diff] [blame] | 1777 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1778 | DELL LAPTOP SMM DRIVER |
| 1779 | P: Massimo Dal Zotto |
| 1780 | M: dz@debian.org |
| 1781 | W: http://www.debian.org/~dz/i8k/ |
| 1782 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1783 | F: drivers/char/i8k.c |
| 1784 | F: include/linux/i8k.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1785 | |
Doug Warzecha | 90563ec | 2005-09-06 15:17:15 -0700 | [diff] [blame] | 1786 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
| 1787 | P: Doug Warzecha |
| 1788 | M: Douglas_Warzecha@dell.com |
| 1789 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1790 | F: Documentation/dcdbas.txt |
| 1791 | F: drivers/firmware/dcdbas.* |
Doug Warzecha | 90563ec | 2005-09-06 15:17:15 -0700 | [diff] [blame] | 1792 | |
Matthew Garrett | 0b3f610 | 2009-01-09 20:17:11 +0000 | [diff] [blame] | 1793 | DELL WMI EXTRAS DRIVER |
| 1794 | P: Matthew Garrett |
| 1795 | M: mjg59@srcf.ucam.org |
| 1796 | S: Maintained |
| 1797 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1798 | DEVICE NUMBER REGISTRY |
| 1799 | P: Torben Mathiasen |
| 1800 | M: device@lanana.org |
| 1801 | W: http://lanana.org/docs/device-list/index.html |
| 1802 | L: linux-kernel@vger.kernel.org |
| 1803 | S: Maintained |
| 1804 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1805 | DEVICE-MAPPER (LVM) |
| 1806 | P: Alasdair Kergon |
| 1807 | L: dm-devel@redhat.com |
| 1808 | W: http://sources.redhat.com/dm |
| 1809 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1810 | F: Documentation/device-mapper/ |
| 1811 | F: drivers/md/dm* |
| 1812 | F: include/linux/device-mapper.h |
| 1813 | F: include/linux/dm-*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1814 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1815 | DIGI INTL. EPCA DRIVER |
| 1816 | P: Digi International, Inc |
| 1817 | M: Eng.Linux@digi.com |
| 1818 | L: Eng.Linux@digi.com |
| 1819 | W: http://www.digi.com |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 1820 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1821 | F: Documentation/serial/digiepca.txt |
| 1822 | F: drivers/char/epca* |
| 1823 | F: drivers/char/digi* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 1825 | DIRECTORY NOTIFICATION (DNOTIFY) |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 1826 | P: Eric Paris |
| 1827 | M: eparis@parisplace.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1828 | L: linux-kernel@vger.kernel.org |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 1829 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1830 | F: Documentation/filesystems/dnotify.txt |
| 1831 | F: fs/notify/dnotify/ |
| 1832 | F: include/linux/dnotify.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1833 | |
| 1834 | DISK GEOMETRY AND PARTITION HANDLING |
| 1835 | P: Andries Brouwer |
| 1836 | M: aeb@cwi.nl |
| 1837 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
| 1838 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html |
| 1839 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html |
| 1840 | S: Maintained |
| 1841 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 1842 | DISKQUOTA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1843 | P: Jan Kara |
| 1844 | M: jack@suse.cz |
| 1845 | L: linux-kernel@vger.kernel.org |
| 1846 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1847 | F: Documentation/filesystems/quota.txt |
| 1848 | F: fs/quota/ |
| 1849 | F: include/linux/quota*.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1850 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 1851 | DISTRIBUTED LOCK MANAGER (DLM) |
Christine Caulfield | 8943f26 | 2008-02-14 19:31:31 -0800 | [diff] [blame] | 1852 | P: Christine Caulfield |
| 1853 | M: ccaulfie@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1854 | P: David Teigland |
| 1855 | M: teigland@redhat.com |
David Teigland | a464418 | 2006-06-22 15:29:57 -0400 | [diff] [blame] | 1856 | L: cluster-devel@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1857 | W: http://sources.redhat.com/cluster/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1858 | 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] | 1859 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1860 | F: fs/dlm/ |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1861 | |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1862 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 1863 | P: Maciej Sosnowski |
| 1864 | M: maciej.sosnowski@intel.com |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1865 | P: Dan Williams |
| 1866 | M: dan.j.williams@intel.com |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 1867 | L: linux-kernel@vger.kernel.org |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1868 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1869 | F: drivers/dma/ |
| 1870 | F: include/linux/dma* |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 1871 | |
Juerg Haefliger | b825037 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 1872 | DME1737 HARDWARE MONITOR DRIVER |
| 1873 | P: Juerg Haefliger |
| 1874 | M: juergh@gmail.com |
| 1875 | L: lm-sensors@lm-sensors.org |
| 1876 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1877 | F: Documentation/hwmon/dme1737 |
| 1878 | F: drivers/hwmon/dme1737.c |
Juerg Haefliger | b825037 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 1879 | |
Martin Waitz | ba483d5 | 2005-06-17 13:20:59 -0700 | [diff] [blame] | 1880 | DOCBOOK FOR DOCUMENTATION |
Randy Dunlap | 0f40efb | 2006-07-03 00:24:15 -0700 | [diff] [blame] | 1881 | P: Randy Dunlap |
| 1882 | M: rdunlap@xenotime.net |
Martin Waitz | ba483d5 | 2005-06-17 13:20:59 -0700 | [diff] [blame] | 1883 | S: Maintained |
| 1884 | |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 1885 | DOCKING STATION DRIVER |
Len Brown | c5d191b | 2008-09-24 02:53:25 -0400 | [diff] [blame] | 1886 | P: Shaohua Li |
| 1887 | M: shaohua.li@intel.com |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 1888 | L: linux-acpi@vger.kernel.org |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 1889 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1890 | F: drivers/acpi/dock.c |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 1891 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1892 | DOCUMENTATION |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 1893 | P: Randy Dunlap |
| 1894 | M: rdunlap@xenotime.net |
| 1895 | L: linux-doc@vger.kernel.org |
| 1896 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1897 | F: Documentation/ |
Randy Dunlap | abbaeff | 2008-07-04 09:59:57 -0700 | [diff] [blame] | 1898 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1899 | DOUBLETALK DRIVER |
| 1900 | P: James R. Van Zandt |
| 1901 | M: jrv@vanzandt.mv.com |
| 1902 | L: blinux-list@redhat.com |
| 1903 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1904 | F: drivers/char/dtlk.c |
| 1905 | F: include/linux/dtlk.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1906 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1907 | DPT_I2O SCSI RAID DRIVER |
| 1908 | P: Adaptec OEM Raid Solutions |
| 1909 | M: aacraid@adaptec.com |
| 1910 | L: linux-scsi@vger.kernel.org |
| 1911 | W: http://www.adaptec.com/ |
| 1912 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1913 | F: drivers/scsi/dpt* |
| 1914 | F: drivers/scsi/dpt/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1915 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 | DRIVER CORE, KOBJECTS, AND SYSFS |
| 1917 | P: Greg Kroah-Hartman |
| 1918 | M: gregkh@suse.de |
| 1919 | L: linux-kernel@vger.kernel.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 1920 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1921 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1922 | F: Documentation/kobject.txt |
Joe Perches | 7cfc51b | 2009-04-08 10:04:18 -0700 | [diff] [blame] | 1923 | F: drivers/base/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1924 | F: fs/sysfs/ |
| 1925 | F: include/linux/kobj* |
| 1926 | F: lib/kobj* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1927 | |
| 1928 | DRM DRIVERS |
| 1929 | P: David Airlie |
| 1930 | M: airlied@linux.ie |
| 1931 | L: dri-devel@lists.sourceforge.net |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1932 | 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] | 1933 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1934 | F: drivers/gpu/drm/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1935 | |
| 1936 | DSCC4 DRIVER |
Francois Romieu | 01f2073 | 2007-01-26 00:57:17 -0800 | [diff] [blame] | 1937 | P: Francois Romieu |
| 1938 | M: romieu@fr.zoreil.com |
| 1939 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1940 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1941 | F: drivers/net/wan/dscc4.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1942 | |
Maciej W. Rozycki | 789c704 | 2008-02-07 00:15:13 -0800 | [diff] [blame] | 1943 | DZ DECSTATION DZ11 SERIAL DRIVER |
| 1944 | P: Maciej W. Rozycki |
| 1945 | M: macro@linux-mips.org |
| 1946 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1947 | F: drivers/serial/dz.* |
Maciej W. Rozycki | 789c704 | 2008-02-07 00:15:13 -0800 | [diff] [blame] | 1948 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1949 | EATA-DMA SCSI DRIVER |
| 1950 | P: Michael Neuffer |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1951 | M: mike@i-Connect.Net |
| 1952 | L: linux-eata@i-connect.net |
| 1953 | L: linux-scsi@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1954 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1955 | F: drivers/scsi/eata* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1956 | |
| 1957 | EATA ISA/EISA/PCI SCSI DRIVER |
| 1958 | P: Dario Ballabio |
| 1959 | M: ballabio_dario@emc.com |
| 1960 | L: linux-scsi@vger.kernel.org |
| 1961 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1962 | F: drivers/scsi/eata.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1963 | |
| 1964 | EATA-PIO SCSI DRIVER |
| 1965 | P: Michael Neuffer |
| 1966 | M: mike@i-Connect.Net |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1967 | L: linux-eata@i-connect.net |
| 1968 | L: linux-scsi@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1969 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1970 | F: drivers/scsi/eata_pio.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1971 | |
| 1972 | EBTABLES |
| 1973 | P: Bart De Schuymer |
| 1974 | M: bart.de.schuymer@pandora.be |
| 1975 | L: ebtables-user@lists.sourceforge.net |
| 1976 | L: ebtables-devel@lists.sourceforge.net |
| 1977 | W: http://ebtables.sourceforge.net/ |
| 1978 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1979 | F: include/linux/netfilter_bridge/ebt_*.h |
| 1980 | F: net/bridge/netfilter/ebt*.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1981 | |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 1982 | ECRYPT FILE SYSTEM |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1983 | P: Tyler Hicks |
| 1984 | M: tyhicks@linux.vnet.ibm.com |
| 1985 | M: Dustin Kirkland |
| 1986 | P: kirkland@canonical.com |
Michael Halcrow | 6dc7516 | 2008-12-15 13:54:17 -0800 | [diff] [blame] | 1987 | L: ecryptfs-devel@lists.launchpad.net |
| 1988 | W: https://launchpad.net/ecryptfs |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 1989 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1990 | F: Documentation/filesystems/ecryptfs.txt |
| 1991 | F: fs/ecryptfs/ |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 1992 | |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 1993 | EDAC-CORE |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1994 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 1995 | M: dougthompson@xmission.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 1996 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1997 | W: bluesmoke.sourceforge.net |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 1998 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1999 | F: Documentation/edac.txt |
| 2000 | F: drivers/edac/edac_* |
| 2001 | F: include/linux/edac.h |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2002 | |
Borislav Petkov | c476c23 | 2009-05-20 20:31:58 +0200 | [diff] [blame] | 2003 | EDAC-AMD64 |
| 2004 | P: Doug Thompson |
| 2005 | M: dougthompson@xmission.com |
| 2006 | P: Borislav Petkov |
| 2007 | M: borislav.petkov@amd.com |
| 2008 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 2009 | W: bluesmoke.sourceforge.net |
| 2010 | S: Supported |
| 2011 | F: drivers/edac/amd64_edac* |
| 2012 | |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2013 | EDAC-E752X |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 2014 | P: Mark Gross |
| 2015 | M: mark.gross@intel.com |
Joe Perches | 681a1b4 | 2009-05-28 14:34:18 -0700 | [diff] [blame] | 2016 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2017 | M: dougthompson@xmission.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2018 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2019 | W: bluesmoke.sourceforge.net |
| 2020 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2021 | F: drivers/edac/e752x_edac.c |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2022 | |
| 2023 | EDAC-E7XXX |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 2024 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2025 | M: dougthompson@xmission.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2026 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2027 | W: bluesmoke.sourceforge.net |
| 2028 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2029 | F: drivers/edac/e7xxx_edac.c |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2030 | |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2031 | EDAC-I82443BXGX |
| 2032 | P: Tim Small |
| 2033 | M: tim@buttersideup.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2034 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2035 | W: bluesmoke.sourceforge.net |
| 2036 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2037 | F: drivers/edac/i82443bxgx_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2038 | |
| 2039 | EDAC-I3000 |
| 2040 | P: Jason Uhlenkott |
| 2041 | M: juhlenko@akamai.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2042 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2043 | W: bluesmoke.sourceforge.net |
| 2044 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2045 | F: drivers/edac/i3000_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2046 | |
| 2047 | EDAC-I5000 |
| 2048 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2049 | M: dougthompson@xmission.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2050 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2051 | W: bluesmoke.sourceforge.net |
| 2052 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2053 | F: drivers/edac/i5000_edac.c |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2054 | |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 2055 | EDAC-I5400 |
| 2056 | P: Mauro Carvalho Chehab |
| 2057 | M: mchehab@redhat.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2058 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 2059 | W: bluesmoke.sourceforge.net |
| 2060 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2061 | F: drivers/edac/i5400_edac.c |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 2062 | |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2063 | EDAC-I82975X |
| 2064 | P: Ranganathan Desikan |
| 2065 | P: Arvind R. |
| 2066 | M: rdesikan@jetzbroadband.com |
| 2067 | M: arvind@acarlab.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2068 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2069 | W: bluesmoke.sourceforge.net |
| 2070 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2071 | F: drivers/edac/i82975x_edac.c |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2072 | |
| 2073 | EDAC-PASEMI |
| 2074 | P: Egor Martovetsky |
| 2075 | M: egor@pasemi.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2076 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2077 | W: bluesmoke.sourceforge.net |
| 2078 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2079 | F: drivers/edac/pasemi_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2080 | |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2081 | EDAC-R82600 |
| 2082 | P: Tim Small |
| 2083 | M: tim@buttersideup.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2084 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2085 | W: bluesmoke.sourceforge.net |
| 2086 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2087 | F: drivers/edac/r82600_edac.c |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 2088 | |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 2089 | EEEPC LAPTOP EXTRAS DRIVER |
| 2090 | P: Corentin Chary |
| 2091 | M: corentincj@iksaif.net |
| 2092 | L: acpi4asus-user@lists.sourceforge.net |
| 2093 | W: http://sourceforge.net/projects/acpi4asus |
| 2094 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2095 | F: drivers/platform/x86/eeepc-laptop.c |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 2096 | |
Josh Triplett | 0bee8d2 | 2006-07-30 03:03:58 -0700 | [diff] [blame] | 2097 | EFS FILESYSTEM |
| 2098 | W: http://aeschi.ch.eu.org/efs/ |
| 2099 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2100 | F: fs/efs/ |
Josh Triplett | 0bee8d2 | 2006-07-30 03:03:58 -0700 | [diff] [blame] | 2101 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 2102 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 2103 | P: Hoang-Nam Nguyen |
| 2104 | M: hnguyen@de.ibm.com |
| 2105 | P: Christoph Raisch |
| 2106 | M: raisch@de.ibm.com |
Roland Dreier | 7852682 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 2107 | L: general@lists.openfabrics.org |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 2108 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2109 | F: drivers/infiniband/hw/ehca/ |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 2110 | |
David Woodhouse | 3e3a7d6 | 2008-05-01 04:34:46 -0700 | [diff] [blame] | 2111 | EMBEDDED LINUX |
| 2112 | P: Paul Gortmaker |
| 2113 | M: paul.gortmaker@windriver.com |
Matt Mackall | 0f24922 | 2009-04-21 12:24:47 -0700 | [diff] [blame] | 2114 | P: Matt Mackall |
| 2115 | M: mpm@selenic.com |
Uwe Kleine-König | a46add7 | 2008-09-09 00:11:39 +0200 | [diff] [blame] | 2116 | P: David Woodhouse |
David Woodhouse | 3e3a7d6 | 2008-05-01 04:34:46 -0700 | [diff] [blame] | 2117 | M: dwmw2@infradead.org |
| 2118 | L: linux-embedded@vger.kernel.org |
| 2119 | S: Maintained |
| 2120 | |
James.Smart@Emulex.Com | 3a1c1d4 | 2005-08-11 13:42:35 -0400 | [diff] [blame] | 2121 | EMULEX LPFC FC SCSI DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2122 | P: James Smart |
| 2123 | M: james.smart@emulex.com |
| 2124 | L: linux-scsi@vger.kernel.org |
| 2125 | W: http://sourceforge.net/projects/lpfcxxxx |
| 2126 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2127 | F: drivers/scsi/lpfc/ |
James.Smart@Emulex.Com | 3a1c1d4 | 2005-08-11 13:42:35 -0400 | [diff] [blame] | 2128 | |
Michał Mirosław | 5f5bac8 | 2009-05-22 20:33:59 +0200 | [diff] [blame] | 2129 | ENE CB710 FLASH CARD READER DRIVER |
| 2130 | P: Michał Mirosław |
| 2131 | M: mirq-linux@rere.qmqm.pl |
| 2132 | L: linux-kernel@vger.kernel.org |
| 2133 | S: Maintained |
| 2134 | F: drivers/misc/cb710/ |
| 2135 | F: drivers/mmc/host/cb710-mmc.* |
| 2136 | F: include/linux/cb710.h |
| 2137 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2138 | EPSON 1355 FRAMEBUFFER DRIVER |
| 2139 | P: Christopher Hoover |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2140 | M: ch@murgatroid.com |
| 2141 | P: Christopher Hoover |
| 2142 | M: ch@hpl.hp.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2143 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2144 | F: drivers/video/epson1355fb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2145 | |
Kristoffer Ericson | d5ca900 | 2008-10-15 22:03:54 -0700 | [diff] [blame] | 2146 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
| 2147 | P: Kristoffer Ericson |
| 2148 | M: kristoffer.ericson@gmail.com |
| 2149 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2150 | F: drivers/video/s1d13xxxfb.c |
| 2151 | F: include/video/s1d13xxxfb.h |
Kristoffer Ericson | d5ca900 | 2008-10-15 22:03:54 -0700 | [diff] [blame] | 2152 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2153 | ETHEREXPRESS-16 NETWORK DRIVER |
| 2154 | P: Philip Blundell |
| 2155 | M: philb@gnu.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 2156 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2157 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2158 | F: drivers/net/eexpress.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2159 | |
| 2160 | ETHERNET BRIDGE |
| 2161 | P: Stephen Hemminger |
Stephen Hemminger | 65ebe63 | 2007-01-23 11:38:57 -0800 | [diff] [blame] | 2162 | M: shemminger@linux-foundation.org |
David Brownell | f318a63 | 2007-04-23 14:41:06 -0700 | [diff] [blame] | 2163 | L: bridge@lists.linux-foundation.org |
Adrian Bunk | 57c511d | 2008-06-03 16:00:01 -0700 | [diff] [blame] | 2164 | W: http://www.linux-foundation.org/en/Net:Bridge |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2165 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2166 | F: include/linux/netfilter_bridge/ |
| 2167 | F: net/bridge/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2168 | |
| 2169 | ETHERTEAM 16I DRIVER |
| 2170 | P: Mika Kuoppala |
| 2171 | M: miku@iki.fi |
| 2172 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2173 | F: drivers/net/eth16i.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2174 | |
| 2175 | EXT2 FILE SYSTEM |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2176 | L: linux-ext4@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2178 | F: Documentation/filesystems/ext2.txt |
| 2179 | F: fs/ext2/ |
| 2180 | F: include/linux/ext2* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2181 | |
| 2182 | EXT3 FILE SYSTEM |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2183 | P: Stephen Tweedie |
| 2184 | M: sct@redhat.com |
| 2185 | P: Andrew Morton |
| 2186 | M: akpm@linux-foundation.org |
| 2187 | P: Andreas Dilger |
| 2188 | M: adilger@sun.com |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2189 | L: linux-ext4@vger.kernel.org |
| 2190 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2191 | F: Documentation/filesystems/ext3.txt |
| 2192 | F: fs/ext3/ |
| 2193 | F: include/linux/ext3* |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2194 | |
| 2195 | EXT4 FILE SYSTEM |
Theodore Ts'o | 08a225f | 2008-10-06 20:58:09 -0400 | [diff] [blame] | 2196 | P: Theodore Ts'o |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2197 | M: tytso@mit.edu |
| 2198 | P: Andreas Dilger |
| 2199 | M: adilger@sun.com |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2200 | L: linux-ext4@vger.kernel.org |
Theodore Ts'o | 08a225f | 2008-10-06 20:58:09 -0400 | [diff] [blame] | 2201 | W: http://ext4.wiki.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2202 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2203 | F: Documentation/filesystems/ext4.txt |
| 2204 | F: fs/ext4/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2205 | |
Jean Delvare | e53004e | 2006-01-09 23:26:14 +0100 | [diff] [blame] | 2206 | F71805F HARDWARE MONITORING DRIVER |
| 2207 | P: Jean Delvare |
| 2208 | M: khali@linux-fr.org |
| 2209 | L: lm-sensors@lm-sensors.org |
| 2210 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2211 | F: Documentation/hwmon/f71805f |
| 2212 | F: drivers/hwmon/f71805f.c |
Jean Delvare | e53004e | 2006-01-09 23:26:14 +0100 | [diff] [blame] | 2213 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2214 | FARSYNC SYNCHRONOUS DRIVER |
| 2215 | P: Kevin Curtis |
| 2216 | M: kevin.curtis@farsite.co.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2217 | W: http://www.farsite.co.uk/ |
| 2218 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2219 | F: drivers/net/wan/farsync.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2220 | |
Akinobu Mita | c5408b8 | 2007-04-23 14:41:20 -0700 | [diff] [blame] | 2221 | FAULT INJECTION SUPPORT |
| 2222 | P: Akinobu Mita |
| 2223 | M: akinobu.mita@gmail.com |
| 2224 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2225 | F: Documentation/fault-injection/ |
| 2226 | F: lib/fault-inject.c |
Akinobu Mita | c5408b8 | 2007-04-23 14:41:20 -0700 | [diff] [blame] | 2227 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2228 | FILE LOCKING (flock() and fcntl()/lockf()) |
| 2229 | P: Matthew Wilcox |
| 2230 | M: matthew@wil.cx |
| 2231 | L: linux-fsdevel@vger.kernel.org |
| 2232 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2233 | F: include/linux/fcntl.h |
| 2234 | F: include/linux/fs.h |
| 2235 | F: fs/fcntl.c |
| 2236 | F: fs/locks.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2237 | |
| 2238 | FILESYSTEMS (VFS and infrastructure) |
| 2239 | P: Alexander Viro |
| 2240 | M: viro@zeniv.linux.org.uk |
| 2241 | L: linux-fsdevel@vger.kernel.org |
| 2242 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2243 | F: fs/* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2244 | |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 2245 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
| 2246 | P: Riku Voipio |
| 2247 | M: riku.vipio@iki.fi |
| 2248 | L: lm-sensors@lm-sensors.org |
| 2249 | S: Maintained |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 2250 | F: drivers/hwmon/f75375s.c |
| 2251 | F: include/linux/f75375s.h |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 2252 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2253 | FIREWIRE SUBSYSTEM |
| 2254 | P: Kristian Hoegsberg |
| 2255 | M: krh@redhat.com |
| 2256 | P: Stefan Richter |
| 2257 | M: stefanr@s5r6.in-berlin.de |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2258 | L: linux1394-devel@lists.sourceforge.net |
| 2259 | W: http://www.linux1394.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2260 | 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] | 2261 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2262 | F: drivers/firewire/ |
| 2263 | F: include/linux/firewire*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2264 | |
| 2265 | FIRMWARE LOADER (request_firmware) |
| 2266 | L: linux-kernel@vger.kernel.org |
| 2267 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2268 | F: Documentation/firmware_class/ |
| 2269 | F: drivers/base/firmware*.c |
| 2270 | F: include/linux/firmware.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2271 | |
| 2272 | FPU EMULATOR |
| 2273 | P: Bill Metzenthen |
Joe Perches | e769980 | 2009-04-07 21:12:18 -0700 | [diff] [blame] | 2274 | M: billm@melbpc.org.au |
| 2275 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2276 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2277 | F: arch/x86/math-emu/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2278 | |
| 2279 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) |
| 2280 | P: Mike McLagan |
| 2281 | M: mike.mclagan@linux.org |
| 2282 | L: netdev@vger.kernel.org |
| 2283 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2284 | F: drivers/net/wan/dlci.c |
| 2285 | F: drivers/net/wan/sdla.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2286 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2287 | FRAMEBUFFER LAYER |
| 2288 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 2289 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2290 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2291 | W: http://linux-fbdev.sourceforge.net/ |
| 2292 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2293 | F: Documentation/fb/ |
| 2294 | F: drivers/video/fb* |
| 2295 | F: include/linux/fb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2296 | |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 2297 | FREESCALE DMA DRIVER |
Zhang Wei | 76b0c78 | 2008-05-13 14:44:59 -0700 | [diff] [blame] | 2298 | P: Li Yang |
| 2299 | M: leoli@freescale.com |
| 2300 | P: Zhang Wei |
| 2301 | M: zw@zh-kernel.org |
Li Yang | 0899d63 | 2009-05-22 16:39:59 +0800 | [diff] [blame] | 2302 | L: linuxppc-dev@ozlabs.org |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 2303 | L: linux-kernel@vger.kernel.org |
| 2304 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2305 | F: drivers/dma/fsldma.* |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 2306 | |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 2307 | FREESCALE I2C CPM DRIVER |
| 2308 | P: Jochen Friedrich |
| 2309 | M: jochen@scram.de |
| 2310 | L: linuxppc-dev@ozlabs.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 2311 | L: linux-i2c@vger.kernel.org |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 2312 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2313 | F: drivers/i2c/busses/i2c-cpm.c |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 2314 | |
Sascha Hauer | 60e8c5a | 2008-12-16 11:44:06 +0100 | [diff] [blame] | 2315 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
| 2316 | P: Sascha Hauer |
| 2317 | M: kernel@pengutronix.de |
| 2318 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 2319 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 2320 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2321 | F: arch/arm/plat-mxc/include/mach/imxfb.h |
| 2322 | F: drivers/video/imxfb.c |
Sascha Hauer | 60e8c5a | 2008-12-16 11:44:06 +0100 | [diff] [blame] | 2323 | |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 2324 | FREESCALE SOC FS_ENET DRIVER |
| 2325 | P: Pantelis Antoniou |
| 2326 | M: pantelis.antoniou@gmail.com |
| 2327 | P: Vitaly Bordug |
| 2328 | M: vbordug@ru.mvista.com |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2329 | L: linuxppc-dev@ozlabs.org |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 2330 | L: netdev@vger.kernel.org |
| 2331 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2332 | F: drivers/net/fs_enet/ |
| 2333 | F: include/linux/fs_enet_pd.h |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 2334 | |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2335 | FREESCALE QUICC ENGINE LIBRARY |
| 2336 | P: Timur Tabi |
| 2337 | M: timur@freescale.com |
| 2338 | L: linuxppc-dev@ozlabs.org |
| 2339 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2340 | F: arch/powerpc/sysdev/qe_lib/ |
| 2341 | F: arch/powerpc/include/asm/*qe.h |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2342 | |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 2343 | FREESCALE HIGHSPEED USB DEVICE DRIVER |
| 2344 | P: Li Yang |
| 2345 | M: leoli@freescale.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 2346 | L: linux-usb@vger.kernel.org |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2347 | L: linuxppc-dev@ozlabs.org |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 2348 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2349 | F: drivers/usb/gadget/fsl_usb2_udc.c |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 2350 | |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 2351 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
| 2352 | P: Li Yang |
| 2353 | M: leoli@freescale.com |
| 2354 | L: netdev@vger.kernel.org |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2355 | L: linuxppc-dev@ozlabs.org |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 2356 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2357 | F: drivers/net/ucc_geth* |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 2358 | |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2359 | FREESCALE QUICC ENGINE UCC UART DRIVER |
| 2360 | P: Timur Tabi |
| 2361 | M: timur@freescale.com |
| 2362 | L: linuxppc-dev@ozlabs.org |
| 2363 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2364 | F: drivers/serial/ucc_uart.c |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2365 | |
| 2366 | FREESCALE SOC SOUND DRIVERS |
| 2367 | P: Timur Tabi |
| 2368 | M: timur@freescale.com |
| 2369 | L: alsa-devel@alsa-project.org |
| 2370 | L: linuxppc-dev@ozlabs.org |
| 2371 | S: Supported |
Joe Perches | 69aefce | 2009-04-09 10:39:22 -0700 | [diff] [blame] | 2372 | F: sound/soc/fsl/fsl* |
| 2373 | F: sound/soc/fsl/mpc8610_hpcd.c |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2374 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2375 | FREEVXFS FILESYSTEM |
| 2376 | P: Christoph Hellwig |
| 2377 | M: hch@infradead.org |
| 2378 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
| 2379 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2380 | F: fs/freevxfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2381 | |
Pavel Machek | 71038f5 | 2009-01-15 13:51:02 -0800 | [diff] [blame] | 2382 | FREEZER |
| 2383 | P: Pavel Machek |
Pavel Machek | b6e731d | 2009-05-30 00:58:41 +0200 | [diff] [blame] | 2384 | M: pavel@ucw.cz |
Pavel Machek | 71038f5 | 2009-01-15 13:51:02 -0800 | [diff] [blame] | 2385 | P: Rafael J. Wysocki |
| 2386 | M: rjw@sisk.pl |
| 2387 | L: linux-pm@lists.linux-foundation.org |
| 2388 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2389 | F: Documentation/power/freezing-of-tasks.txt |
| 2390 | F: include/linux/freezer.h |
| 2391 | F: kernel/freezer.c |
Pavel Machek | 71038f5 | 2009-01-15 13:51:02 -0800 | [diff] [blame] | 2392 | |
David Howells | a5432f5 | 2009-04-20 15:46:45 +0100 | [diff] [blame] | 2393 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
| 2394 | P: David Howells |
| 2395 | M: dhowells@redhat.com |
| 2396 | L: linux-cachefs@redhat.com |
| 2397 | S: Supported |
| 2398 | F: Documentation/filesystems/caching/ |
| 2399 | F: fs/fscache/ |
| 2400 | F: include/linux/fscache*.h |
| 2401 | |
Steven Rostedt | de3b69d | 2008-07-15 13:28:14 -0400 | [diff] [blame] | 2402 | FTRACE |
| 2403 | P: Steven Rostedt |
Steven Rostedt | 8e324c1 | 2008-11-19 15:36:43 -0800 | [diff] [blame] | 2404 | M: rostedt@goodmis.org |
Steven Rostedt | de3b69d | 2008-07-15 13:28:14 -0400 | [diff] [blame] | 2405 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2406 | F: Documentation/ftrace.txt |
| 2407 | F: arch/*/*/*/ftrace.h |
| 2408 | F: arch/*/kernel/ftrace.c |
| 2409 | F: include/*/ftrace.h |
| 2410 | F: kernel/trace/ |
Steven Rostedt | de3b69d | 2008-07-15 13:28:14 -0400 | [diff] [blame] | 2411 | |
David Howells | 5ab7ffe | 2007-04-10 15:10:45 +0100 | [diff] [blame] | 2412 | FUJITSU FR-V (FRV) PORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2413 | P: David Howells |
| 2414 | M: dhowells@redhat.com |
| 2415 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2416 | F: arch/frv/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2417 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 2418 | FUJITSU LAPTOP EXTRAS |
| 2419 | P: Jonathan Woithe |
| 2420 | M: jwoithe@physics.adelaide.edu.au |
| 2421 | L: linux-acpi@vger.kernel.org |
| 2422 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2423 | F: drivers/platform/x86/fujitsu-laptop.c |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 2424 | |
Miklos Szeredi | 04578f1 | 2005-09-09 13:10:22 -0700 | [diff] [blame] | 2425 | FUSE: FILESYSTEM IN USERSPACE |
| 2426 | P: Miklos Szeredi |
| 2427 | M: miklos@szeredi.hu |
| 2428 | L: fuse-devel@lists.sourceforge.net |
| 2429 | W: http://fuse.sourceforge.net/ |
| 2430 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2431 | F: fs/fuse/ |
| 2432 | F: include/linux/fuse.h |
Miklos Szeredi | 04578f1 | 2005-09-09 13:10:22 -0700 | [diff] [blame] | 2433 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2434 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
| 2435 | P: Rik Faith |
| 2436 | M: faith@cs.unc.edu |
| 2437 | L: linux-scsi@vger.kernel.org |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 2438 | S: Odd Fixes (e.g., new signatures) |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2439 | F: drivers/scsi/fdomain.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2440 | |
| 2441 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
| 2442 | P: Achim Leubner |
| 2443 | M: achim_leubner@adaptec.com |
| 2444 | L: linux-scsi@vger.kernel.org |
| 2445 | W: http://www.icp-vortex.com/ |
| 2446 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2447 | F: drivers/scsi/gdt* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2448 | |
Haavard Skinnemoen | 1c23af9 | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 2449 | GENERIC GPIO I2C DRIVER |
| 2450 | P: Haavard Skinnemoen |
| 2451 | M: hskinnemoen@atmel.com |
| 2452 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2453 | F: drivers/i2c/busses/i2c-gpio.c |
| 2454 | F: include/linux/i2c-gpio.h |
Haavard Skinnemoen | 1c23af9 | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 2455 | |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 2456 | GENERIC HDLC (WAN) DRIVERS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2457 | P: Krzysztof Halasa |
| 2458 | M: khc@pm.waw.pl |
| 2459 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
| 2460 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2461 | F: drivers/net/wan/c101.c |
| 2462 | F: drivers/net/wan/hd6457* |
| 2463 | F: drivers/net/wan/hdlc* |
| 2464 | F: drivers/net/wan/n2.c |
| 2465 | F: drivers/net/wan/pc300too.c |
| 2466 | F: drivers/net/wan/pci200syn.c |
| 2467 | F: drivers/net/wan/wanxl* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2468 | |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 2469 | GFS2 FILE SYSTEM |
| 2470 | P: Steven Whitehouse |
| 2471 | M: swhiteho@redhat.com |
David Teigland | a464418 | 2006-06-22 15:29:57 -0400 | [diff] [blame] | 2472 | L: cluster-devel@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 2473 | W: http://sources.redhat.com/cluster/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2474 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git |
| 2475 | 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] | 2476 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2477 | F: Documentation/filesystems/gfs2*.txt |
| 2478 | F: fs/gfs2/ |
| 2479 | F: include/linux/gfs2_ondisk.h |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 2480 | |
Hansjoerg Lipp | 0a34eb8 | 2006-03-26 01:38:28 -0800 | [diff] [blame] | 2481 | GIGASET ISDN DRIVERS |
| 2482 | P: Hansjoerg Lipp |
| 2483 | M: hjlipp@web.de |
| 2484 | P: Tilman Schmidt |
| 2485 | M: tilman@imap.cc |
| 2486 | L: gigaset307x-common@lists.sourceforge.net |
| 2487 | W: http://gigaset307x.sourceforge.net/ |
| 2488 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2489 | F: Documentation/isdn/README.gigaset |
| 2490 | F: drivers/isdn/gigaset/ |
| 2491 | F: include/linux/gigaset_dev.h |
Hansjoerg Lipp | 0a34eb8 | 2006-03-26 01:38:28 -0800 | [diff] [blame] | 2492 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2493 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
Frank Seidel | 211e3e0 | 2009-02-17 19:59:54 +0100 | [diff] [blame] | 2494 | P: Frank Seidel |
| 2495 | M: frank@f-seidel.de |
| 2496 | L: lm-sensors@lm-sensors.org |
| 2497 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2498 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2499 | F: drivers/hwmon/hdaps.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2500 | |
Michael Ellerman | c90bfeb | 2009-04-02 16:56:43 -0700 | [diff] [blame] | 2501 | HYPERVISOR VIRTUAL CONSOLE DRIVER |
| 2502 | L: linuxppc-dev@ozlabs.org |
| 2503 | L: linux-kernel@vger.kernel.org |
| 2504 | S: Odd Fixes |
| 2505 | F: drivers/char/hvc_* |
| 2506 | |
Jean-Francois Moine | e8deeae | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2507 | GSPCA FINEPIX SUBDRIVER |
| 2508 | P: Frank Zago |
| 2509 | M: frank@zago.net |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2510 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2511 | 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] | 2512 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2513 | F: drivers/media/video/gspca/finepix.c |
Jean-Francois Moine | e8deeae | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2514 | |
| 2515 | GSPCA M5602 SUBDRIVER |
| 2516 | P: Erik Andren |
| 2517 | M: erik.andren@gmail.com |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2518 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2519 | 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] | 2520 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2521 | F: drivers/media/video/gspca/m5602/ |
Jean-Francois Moine | e8deeae | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2522 | |
| 2523 | GSPCA PAC207 SONIXB SUBDRIVER |
| 2524 | P: Hans de Goede |
| 2525 | M: hdegoede@redhat.com |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2526 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2527 | 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] | 2528 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2529 | F: drivers/media/video/gspca/pac207.c |
Jean-Francois Moine | e8deeae | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2530 | |
| 2531 | GSPCA T613 SUBDRIVER |
| 2532 | P: Leandro Costantino |
| 2533 | M: lcostantino@gmail.com |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2534 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2535 | 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] | 2536 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2537 | F: drivers/media/video/gspca/t613.c |
Jean-Francois Moine | e8deeae | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2538 | |
| 2539 | GSPCA USB WEBCAM DRIVER |
| 2540 | P: Jean-Francois Moine |
| 2541 | M: moinejf@free.fr |
| 2542 | W: http://moinejf.free.fr |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2543 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2544 | 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] | 2545 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2546 | F: drivers/media/video/gspca/ |
Jean-Francois Moine | e8deeae | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2547 | |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 2548 | HARDWARE MONITORING |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 2549 | L: lm-sensors@lm-sensors.org |
Jean Delvare | 595142e | 2006-12-06 20:39:36 -0800 | [diff] [blame] | 2550 | W: http://www.lm-sensors.org/ |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 2551 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2552 | F: drivers/hwmon/ |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 2553 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 2554 | HARDWARE RANDOM NUMBER GENERATOR CORE |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 2555 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2556 | F: Documentation/hw_random.txt |
| 2557 | F: drivers/char/hw_random/ |
| 2558 | F: include/linux/hw_random.h |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 2559 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2560 | HARMONY SOUND DRIVER |
| 2561 | P: Kyle McMartin |
Kyle McMartin | 42a5a8a | 2008-06-06 17:16:17 -0400 | [diff] [blame] | 2562 | M: kyle@mcmartin.ca |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 2563 | L: linux-parisc@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2564 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2565 | F: sound/parisc/harmony.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2566 | |
| 2567 | HAYES ESP SERIAL DRIVER |
| 2568 | P: Andrew J. Robinson |
| 2569 | M: arobinso@nyx.net |
| 2570 | L: linux-kernel@vger.kernel.org |
| 2571 | W: http://www.nyx.net/~arobinso |
| 2572 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2573 | F: Documentation/serial/hayes-esp.txt |
| 2574 | F: drivers/char/esp.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2575 | |
| 2576 | HEWLETT-PACKARD SMART2 RAID DRIVER |
| 2577 | P: Chirag Kantharia |
| 2578 | M: chirag.kantharia@hp.com |
| 2579 | L: iss_storagedev@hp.com |
| 2580 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2581 | F: Documentation/blockdev/cpqarray.txt |
| 2582 | F: drivers/block/cpqarray.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2583 | |
| 2584 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
| 2585 | P: Mike Miller |
| 2586 | M: mike.miller@hp.com |
| 2587 | L: iss_storagedev@hp.com |
| 2588 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2589 | F: Documentation/blockdev/cciss.txt |
| 2590 | F: drivers/block/cciss* |
| 2591 | F: include/linux/cciss_ioctl.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2592 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2593 | HFS FILESYSTEM |
| 2594 | P: Roman Zippel |
| 2595 | M: zippel@linux-m68k.org |
| 2596 | L: linux-kernel@vger.kernel.org |
| 2597 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2598 | F: Documentation/filesystems/hfs.txt |
| 2599 | F: fs/hfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2600 | |
| 2601 | HGA FRAMEBUFFER DRIVER |
| 2602 | P: Ferenc Bakonyi |
| 2603 | M: fero@drama.obuda.kando.hu |
| 2604 | L: linux-nvidia@lists.surfsouth.com |
| 2605 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml |
| 2606 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2607 | F: drivers/video/hgafb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2608 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 2609 | HIBERNATION (aka Software Suspend, aka swsusp) |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2610 | P: Pavel Machek |
Pavel Machek | ef35ce2 | 2009-02-18 14:48:16 -0800 | [diff] [blame] | 2611 | M: pavel@ucw.cz |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2612 | P: Rafael J. Wysocki |
| 2613 | M: rjw@sisk.pl |
| 2614 | L: linux-pm@lists.linux-foundation.org |
| 2615 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2616 | F: arch/x86/power/ |
| 2617 | F: drivers/base/power/ |
| 2618 | F: kernel/power/ |
| 2619 | F: include/linux/suspend.h |
| 2620 | F: include/linux/freezer.h |
| 2621 | F: include/linux/pm.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2622 | F: arch/*/include/asm/suspend*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2623 | |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 2624 | HID CORE LAYER |
| 2625 | P: Jiri Kosina |
| 2626 | M: jkosina@suse.cz |
Dmitry Torokhov | eb76c5c | 2007-11-02 09:07:33 -0400 | [diff] [blame] | 2627 | L: linux-input@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2628 | 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] | 2629 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2630 | F: drivers/hid/ |
| 2631 | F: include/linux/hid* |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 2632 | |
Ingo Molnar | 38bed54 | 2007-02-22 09:09:34 +0100 | [diff] [blame] | 2633 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
| 2634 | P: Thomas Gleixner |
| 2635 | M: tglx@linutronix.de |
| 2636 | L: linux-kernel@vger.kernel.org |
| 2637 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2638 | F: Documentation/timers/ |
| 2639 | F: kernel/hrtimer.c |
| 2640 | F: include/linux/hrtimer.h |
Ingo Molnar | 38bed54 | 2007-02-22 09:09:34 +0100 | [diff] [blame] | 2641 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2642 | HIGH-SPEED SCC DRIVER FOR AX.25 |
| 2643 | P: Klaus Kudielka |
| 2644 | M: klaus.kudielka@ieee.org |
| 2645 | L: linux-hams@vger.kernel.org |
| 2646 | W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/ |
| 2647 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2648 | F: drivers/net/hamradio/dmascc.c |
| 2649 | F: drivers/net/hamradio/scc.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2650 | |
HighPoint Linux Team | ede1e6f | 2006-05-16 14:38:09 +0800 | [diff] [blame] | 2651 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
| 2652 | P: HighPoint Linux Team |
| 2653 | M: linux@highpoint-tech.com |
| 2654 | W: http://www.highpoint-tech.com |
| 2655 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2656 | F: Documentation/scsi/hptiop.txt |
| 2657 | F: drivers/scsi/hptiop.c |
HighPoint Linux Team | ede1e6f | 2006-05-16 14:38:09 +0800 | [diff] [blame] | 2658 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2659 | HIPPI |
| 2660 | P: Jes Sorensen |
| 2661 | M: jes@trained-monkey.org |
| 2662 | L: linux-hippi@sunsite.dk |
| 2663 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2664 | F: include/linux/hippidevice.h |
| 2665 | F: include/linux/if_hippi.h |
| 2666 | F: net/802/hippi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2667 | |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 2668 | HOST AP DRIVER |
| 2669 | P: Jouni Malinen |
Jouni Malinen | 85d32e7 | 2007-03-24 17:15:30 -0700 | [diff] [blame] | 2670 | M: j@w1.fi |
| 2671 | L: hostap@shmoo.com (subscribers-only) |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 2672 | L: linux-wireless@vger.kernel.org |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 2673 | W: http://hostap.epitest.fi/ |
| 2674 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2675 | F: drivers/net/wireless/hostap/ |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 2676 | |
Carlos Corbacho | dd8cd77 | 2008-02-05 02:17:15 +0000 | [diff] [blame] | 2677 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
| 2678 | P: Carlos Corbacho |
| 2679 | M: carlos@strangeworlds.co.uk |
| 2680 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2681 | F: drivers/platform/x86/tc1100-wmi.c |
Carlos Corbacho | dd8cd77 | 2008-02-05 02:17:15 +0000 | [diff] [blame] | 2682 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2683 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
| 2684 | P: Jaroslav Kysela |
| 2685 | M: perex@perex.cz |
| 2686 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2687 | F: drivers/net/hp100.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2688 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2689 | HPET: High Precision Event Timers driver |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2690 | P: Clemens Ladisch |
| 2691 | M: clemens@ladisch.de |
| 2692 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2693 | F: Documentation/timers/hpet.txt |
| 2694 | F: drivers/char/hpet.c |
| 2695 | F: include/linux/hpet.h |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2696 | |
| 2697 | HPET: i386 |
| 2698 | P: Venkatesh Pallipadi (Venki) |
| 2699 | M: venkatesh.pallipadi@intel.com |
| 2700 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2701 | F: arch/x86/kernel/hpet.c |
| 2702 | F: arch/x86/include/asm/hpet.h |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2703 | |
| 2704 | HPET: x86_64 |
Andi Kleen | 8bd0983 | 2007-10-13 01:01:08 +0200 | [diff] [blame] | 2705 | P: Vojtech Pavlik |
| 2706 | M: vojtech@suse.cz |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2707 | S: Maintained |
| 2708 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2709 | HPET: ACPI |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2710 | P: Bob Picco |
| 2711 | M: bob.picco@hp.com |
| 2712 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2713 | F: drivers/char/hpet.c |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2714 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2715 | HPFS FILESYSTEM |
| 2716 | P: Mikulas Patocka |
| 2717 | M: mikulas@artax.karlin.mff.cuni.cz |
| 2718 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
| 2719 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2720 | F: fs/hpfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2721 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2722 | HSO 3G MODEM DRIVER |
Jan Dumon | 510f32b | 2009-04-13 14:39:34 -0700 | [diff] [blame] | 2723 | P: Jan Dumon |
| 2724 | M: j.dumon@option.com |
Denis Joseph Barrow | 11cd29b | 2009-01-02 13:50:36 +0000 | [diff] [blame] | 2725 | W: http://www.pharscape.org |
| 2726 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2727 | F: drivers/net/usb/hso.c |
Denis Joseph Barrow | 11cd29b | 2009-01-02 13:50:36 +0000 | [diff] [blame] | 2728 | |
Pau Oliva Fora | 5a18c34 | 2008-06-02 00:38:35 -0400 | [diff] [blame] | 2729 | HTCPEN TOUCHSCREEN DRIVER |
| 2730 | P: Pau Oliva Fora |
| 2731 | M: pof@eslack.org |
| 2732 | L: linux-input@vger.kernel.org |
| 2733 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2734 | F: drivers/input/touchscreen/htcpen.c |
Pau Oliva Fora | 5a18c34 | 2008-06-02 00:38:35 -0400 | [diff] [blame] | 2735 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2736 | HUGETLB FILESYSTEM |
| 2737 | P: William Irwin |
| 2738 | M: wli@holomorphy.com |
| 2739 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2740 | F: fs/hugetlbfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2741 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 2742 | I2C/SMBUS STUB DRIVER |
| 2743 | P: Mark M. Hoffman |
| 2744 | M: mhoffman@lightlink.com |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 2745 | L: linux-i2c@vger.kernel.org |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 2746 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2747 | F: drivers/i2c/busses/i2c-stub.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 2748 | |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 2749 | I2C SUBSYSTEM |
Jean Delvare | 710cf7e | 2008-05-18 20:49:40 +0200 | [diff] [blame] | 2750 | P: Jean Delvare (PC drivers, core) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2751 | M: khali@linux-fr.org |
Jean Delvare | 710cf7e | 2008-05-18 20:49:40 +0200 | [diff] [blame] | 2752 | P: Ben Dooks (embedded platforms) |
| 2753 | M: ben-linux@fluff.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 2754 | L: linux-i2c@vger.kernel.org |
Jean Delvare | a01064a | 2009-01-26 21:19:53 +0100 | [diff] [blame] | 2755 | W: http://i2c.wiki.kernel.org/ |
| 2756 | 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] | 2757 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2758 | F: Documentation/i2c/ |
| 2759 | F: drivers/i2c/ |
| 2760 | F: include/linux/i2c.h |
| 2761 | F: include/linux/i2c-dev.h |
| 2762 | F: include/linux/i2c-id.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2763 | |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 2764 | I2C-TINY-USB DRIVER |
| 2765 | P: Till Harbaum |
| 2766 | M: till@harbaum.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 2767 | L: linux-i2c@vger.kernel.org |
Joe Perches | 932d187 | 2009-04-07 21:10:58 -0700 | [diff] [blame] | 2768 | W: http://www.harbaum.org/till/i2c_tiny_usb |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 2769 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2770 | F: drivers/i2c/busses/i2c-tiny-usb.c |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 2771 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2772 | i386 BOOT CODE |
H. Peter Anvin | 7f1291f | 2007-07-11 12:18:26 -0700 | [diff] [blame] | 2773 | P: H. Peter Anvin |
| 2774 | M: hpa@zytor.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2775 | L: Linux-Kernel@vger.kernel.org |
| 2776 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2777 | F: arch/x86/boot/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2778 | |
| 2779 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2780 | P: H. Peter Anvin |
| 2781 | M: hpa@zytor.com |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2782 | 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] | 2783 | S: Maintained |
| 2784 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2785 | IA64 (Itanium) PLATFORM |
| 2786 | P: Tony Luck |
| 2787 | M: tony.luck@intel.com |
| 2788 | L: linux-ia64@vger.kernel.org |
| 2789 | W: http://www.ia64-linux.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2790 | 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] | 2791 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2792 | F: arch/ia64/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2793 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2794 | IBM MCA SCSI SUBSYSTEM DRIVER |
| 2795 | P: Michael Lang |
| 2796 | M: langa2@kph.uni-mainz.de |
| 2797 | W: http://www.uni-mainz.de/~langm000/linux.html |
| 2798 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2799 | F: drivers/scsi/ibmmca.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2800 | |
| 2801 | IBM Power Linux RAID adapter |
| 2802 | P: Brian King |
| 2803 | M: brking@us.ibm.com |
| 2804 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2805 | F: drivers/scsi/ipr.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2806 | |
| 2807 | IBM ServeRAID RAID DRIVER |
| 2808 | P: Jack Hammer |
| 2809 | P: Dave Jeffery |
| 2810 | M: ipslinux@adaptec.com |
| 2811 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 2812 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2813 | F: drivers/scsi/ips.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2814 | |
Bartlomiej Zolnierkiewicz | 1e7106f | 2007-01-27 13:46:14 +0100 | [diff] [blame] | 2815 | IDE SUBSYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2816 | P: Bartlomiej Zolnierkiewicz |
Bartlomiej Zolnierkiewicz | 1e7106f | 2007-01-27 13:46:14 +0100 | [diff] [blame] | 2817 | M: bzolnier@gmail.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2818 | L: linux-ide@vger.kernel.org |
Bartlomiej Zolnierkiewicz | b930f96 | 2009-04-23 22:53:45 +0200 | [diff] [blame] | 2819 | 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] | 2820 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2821 | F: Documentation/ide/ |
| 2822 | F: drivers/ide/ |
| 2823 | F: include/linux/ide.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2824 | |
Bartlomiej Zolnierkiewicz | 0f861e8 | 2009-03-31 20:15:31 +0200 | [diff] [blame] | 2825 | IDE/ATAPI DRIVERS |
Borislav Petkov | c404c19 | 2007-12-24 15:23:44 +0100 | [diff] [blame] | 2826 | P: Borislav Petkov |
Borislav Petkov | ef70916 | 2008-02-19 01:41:25 +0100 | [diff] [blame] | 2827 | M: petkovbb@gmail.com |
Jens Axboe | 9c5b0ce | 2007-01-03 18:15:20 +0100 | [diff] [blame] | 2828 | L: linux-ide@vger.kernel.org |
Borislav Petkov | c404c19 | 2007-12-24 15:23:44 +0100 | [diff] [blame] | 2829 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2830 | F: Documentation/cdrom/ide-cd |
| 2831 | F: drivers/ide/ide-cd* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2832 | |
Andy Henroid | 27471fd | 2008-10-09 11:45:22 -0700 | [diff] [blame] | 2833 | IDLE-I7300 |
| 2834 | P: Andy Henroid |
| 2835 | M: andrew.d.henroid@intel.com |
| 2836 | L: linux-pm@lists.linux-foundation.org |
| 2837 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2838 | F: drivers/idle/i7300_idle.c |
Andy Henroid | 27471fd | 2008-10-09 11:45:22 -0700 | [diff] [blame] | 2839 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2840 | IEEE 1394 SUBSYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2841 | P: Ben Collins |
Stefan Richter | f51a5a9 | 2007-04-23 14:41:10 -0700 | [diff] [blame] | 2842 | M: ben.collins@ubuntu.com |
Stefan Richter | 87730d0 | 2006-09-16 12:24:00 +0200 | [diff] [blame] | 2843 | P: Stefan Richter |
| 2844 | M: stefanr@s5r6.in-berlin.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2845 | L: linux1394-devel@lists.sourceforge.net |
| 2846 | W: http://www.linux1394.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2847 | 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] | 2848 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2849 | F: drivers/ieee1394/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2850 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2851 | IEEE 1394 RAW I/O DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2852 | P: Dan Dennedy |
| 2853 | M: dan@dennedy.org |
Stefan Richter | f51a5a9 | 2007-04-23 14:41:10 -0700 | [diff] [blame] | 2854 | P: Stefan Richter |
| 2855 | M: stefanr@s5r6.in-berlin.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2856 | L: linux1394-devel@lists.sourceforge.net |
Jody McIntyre | 105d7b3 | 2005-09-30 11:59:04 -0700 | [diff] [blame] | 2857 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2858 | F: drivers/ieee1394/raw1394* |
Jody McIntyre | 105d7b3 | 2005-09-30 11:59:04 -0700 | [diff] [blame] | 2859 | |
Sergey Lapin | 02cf228 | 2009-06-08 12:18:50 +0000 | [diff] [blame] | 2860 | IEEE 802.15.4 SUBSYSTEM |
| 2861 | P: Dmitry Eremin-Solenikov |
| 2862 | M: dbaryshkov@gmail.com |
| 2863 | P: Sergey Lapin |
| 2864 | M: slapin@ossfans.org |
| 2865 | L: linux-zigbee-devel@lists.sourceforge.net |
| 2866 | W: http://apps.sourceforge.net/trac/linux-zigbee |
| 2867 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lumag/lowpan.git |
| 2868 | S: Maintained |
| 2869 | F: net/ieee802154/ |
| 2870 | F: drivers/ieee801254/ |
| 2871 | |
Mimi Zohar | aa7168f | 2009-02-04 09:07:03 -0500 | [diff] [blame] | 2872 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
| 2873 | P: Mimi Zohar |
| 2874 | M: zohar@us.ibm.com |
| 2875 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2876 | F: security/integrity/ima/ |
Mimi Zohar | aa7168f | 2009-02-04 09:07:03 -0500 | [diff] [blame] | 2877 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2878 | IMS TWINTURBO FRAMEBUFFER DRIVER |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2879 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Paul Mundt | 843393d | 2007-11-19 13:11:04 +0900 | [diff] [blame] | 2880 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2881 | F: drivers/video/imsttfb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2882 | |
| 2883 | INFINIBAND SUBSYSTEM |
| 2884 | P: Roland Dreier |
Roland Dreier | 21c121c | 2005-06-27 14:36:47 -0700 | [diff] [blame] | 2885 | M: rolandd@cisco.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2886 | P: Sean Hefty |
Sean Hefty | ed96f2470 | 2008-01-02 12:00:24 -0800 | [diff] [blame] | 2887 | M: sean.hefty@intel.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2888 | P: Hal Rosenstock |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 2889 | M: hal.rosenstock@gmail.com |
Randy Dunlap | 40b0bb1 | 2009-02-04 15:12:13 -0800 | [diff] [blame] | 2890 | L: general@lists.openfabrics.org (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2891 | W: http://www.openib.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2892 | 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] | 2893 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2894 | F: Documentation/infiniband/ |
| 2895 | F: drivers/infiniband/ |
| 2896 | F: include/linux/if_infiniband.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2897 | |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 2898 | INOTIFY |
Cal Peake | 18b36c7 | 2006-12-12 20:18:16 +0100 | [diff] [blame] | 2899 | P: John McCutchan |
John McCutchan | 52af894 | 2008-12-17 17:43:02 -0800 | [diff] [blame] | 2900 | M: john@johnmccutchan.com |
Cal Peake | 18b36c7 | 2006-12-12 20:18:16 +0100 | [diff] [blame] | 2901 | P: Robert Love |
John McCutchan | 52af894 | 2008-12-17 17:43:02 -0800 | [diff] [blame] | 2902 | M: rlove@rlove.org |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 2903 | P: Eric Paris |
| 2904 | M: eparis@parisplace.org |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 2905 | L: linux-kernel@vger.kernel.org |
| 2906 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2907 | F: Documentation/filesystems/inotify.txt |
| 2908 | F: fs/notify/inotify/ |
| 2909 | F: include/linux/inotify.h |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 2910 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2911 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
| 2912 | P: Dmitry Torokhov |
| 2913 | M: dmitry.torokhov@gmail.com |
| 2914 | M: dtor@mail.ru |
| 2915 | L: linux-input@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2916 | 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] | 2917 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2918 | F: drivers/input/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2919 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 2920 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2921 | P: Sylvain Meyer |
| 2922 | M: sylvain.meyer@worldonline.fr |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2923 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2924 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2925 | F: Documentation/fb/intelfb.txt |
| 2926 | F: drivers/video/intelfb/ |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 2927 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2928 | INTEL 810/815 FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2929 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 2930 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2931 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2932 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2933 | F: drivers/video/i810/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2934 | |
Thomas, Sujith | f4a9bc4 | 2008-11-05 16:15:31 +0530 | [diff] [blame] | 2935 | INTEL MENLOW THERMAL DRIVER |
| 2936 | P: Sujith Thomas |
| 2937 | M: sujith.thomas@intel.com |
| 2938 | L: linux-acpi@vger.kernel.org |
| 2939 | W: http://www.lesswatts.org/projects/acpi/ |
| 2940 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2941 | F: drivers/platform/x86/intel_menlow.c |
Thomas, Sujith | f4a9bc4 | 2008-11-05 16:15:31 +0530 | [diff] [blame] | 2942 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2943 | INTEL IA32 MICROCODE UPDATE SUPPORT |
| 2944 | P: Tigran Aivazian |
Tigran Aivazian | b5b9df6 | 2006-11-08 17:44:46 -0800 | [diff] [blame] | 2945 | M: tigran@aivazian.fsnet.co.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2946 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2947 | F: arch/x86/kernel/microcode_core.c |
| 2948 | F: arch/x86/kernel/microcode_intel.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2949 | |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 2950 | INTEL I/OAT DMA DRIVER |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 2951 | P: Maciej Sosnowski |
| 2952 | M: maciej.sosnowski@intel.com |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 2953 | L: linux-kernel@vger.kernel.org |
| 2954 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2955 | F: drivers/dma/ioat* |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 2956 | |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 2957 | INTEL IOMMU (VT-d) |
| 2958 | P: David Woodhouse |
| 2959 | M: dwmw2@infradead.org |
| 2960 | L: iommu@lists.linux-foundation.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2961 | T: git git://git.infradead.org/iommu-2.6.git |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 2962 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2963 | F: drivers/pci/intel-iommu.c |
| 2964 | F: include/linux/intel-iommu.h |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 2965 | |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 2966 | INTEL IOP-ADMA DMA DRIVER |
| 2967 | P: Dan Williams |
| 2968 | M: dan.j.williams@intel.com |
| 2969 | L: linux-kernel@vger.kernel.org |
| 2970 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2971 | F: drivers/dma/iop-adma.c |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 2972 | |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 2973 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
| 2974 | P: Krzysztof Halasa |
| 2975 | M: khc@pm.waw.pl |
| 2976 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2977 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
| 2978 | F: arch/arm/mach-ixp4xx/include/mach/npe.h |
| 2979 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c |
| 2980 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c |
| 2981 | F: drivers/net/arm/ixp4xx_eth.c |
| 2982 | F: drivers/net/wan/ixp4xx_hss.c |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 2983 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 2984 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
| 2985 | P: Deepak Saxena |
| 2986 | M: dsaxena@plexity.net |
| 2987 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2988 | F: drivers/char/hw_random/ixp4xx-rng.c |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 2989 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 2990 | INTEL IXP2000 ETHERNET DRIVER |
| 2991 | P: Lennert Buytenhek |
| 2992 | M: kernel@wantstofly.org |
| 2993 | L: netdev@vger.kernel.org |
| 2994 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2995 | F: drivers/net/ixp2000/ |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 2996 | |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 2997 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe) |
Jesse Brandeburg | add1878 | 2006-03-14 14:52:13 -0800 | [diff] [blame] | 2998 | P: Jeff Kirsher |
| 2999 | M: jeffrey.t.kirsher@intel.com |
Auke Kok | e0164af | 2008-05-07 13:42:33 -0700 | [diff] [blame] | 3000 | P: Jesse Brandeburg |
| 3001 | M: jesse.brandeburg@intel.com |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 3002 | P: Bruce Allan |
| 3003 | M: bruce.w.allan@intel.com |
Jeff Kirsher | ae7b648 | 2008-06-11 15:15:53 -0700 | [diff] [blame] | 3004 | P: PJ Waskiewicz |
| 3005 | M: peter.p.waskiewicz.jr@intel.com |
Auke Kok | 2042465 | 2008-01-07 21:47:25 -0800 | [diff] [blame] | 3006 | P: John Ronciak |
| 3007 | M: john.ronciak@intel.com |
Auke Kok | dcd01fa | 2007-03-06 08:58:06 -0800 | [diff] [blame] | 3008 | L: e1000-devel@lists.sourceforge.net |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 3009 | W: http://e1000.sourceforge.net/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3010 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3011 | F: drivers/net/e100.c |
| 3012 | F: drivers/net/e1000/ |
| 3013 | F: drivers/net/e1000e/ |
| 3014 | F: drivers/net/igb/ |
| 3015 | F: drivers/net/ixgb/ |
| 3016 | F: drivers/net/ixgbe/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3017 | |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3018 | INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 3019 | P: Zhu Yi |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3020 | M: yi.zhu@intel.com |
| 3021 | P: James Ketrenos |
| 3022 | M: jketreno@linux.intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 3023 | P: Reinette Chatre |
| 3024 | M: reinette.chatre@intel.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 3025 | L: linux-wireless@vger.kernel.org |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 3026 | L: ipw2100-devel@lists.sourceforge.net |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 3027 | W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3028 | W: http://ipw2100.sourceforge.net |
| 3029 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3030 | F: Documentation/networking/README.ipw2100 |
| 3031 | F: drivers/net/wireless/ipw2x00/ipw2100.* |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3032 | |
| 3033 | INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 3034 | P: Zhu Yi |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3035 | M: yi.zhu@intel.com |
| 3036 | P: James Ketrenos |
| 3037 | M: jketreno@linux.intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 3038 | P: Reinette Chatre |
| 3039 | M: reinette.chatre@intel.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 3040 | L: linux-wireless@vger.kernel.org |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 3041 | L: ipw2100-devel@lists.sourceforge.net |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 3042 | W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3043 | W: http://ipw2200.sourceforge.net |
| 3044 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3045 | F: Documentation/networking/README.ipw2200 |
| 3046 | F: drivers/net/wireless/ipw2x00/ipw2200.* |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3047 | |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 3048 | INTEL WIRELESS WIMAX CONNECTION 2400 |
| 3049 | P: Inaky Perez-Gonzalez |
| 3050 | M: inaky.perez-gonzalez@intel.com |
| 3051 | M: linux-wimax@intel.com |
| 3052 | L: wimax@linuxwimax.org |
| 3053 | S: Supported |
| 3054 | W: http://linuxwimax.org |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3055 | F: Documentation/wimax/README.i2400m |
| 3056 | F: drivers/net/wimax/i2400m/ |
| 3057 | F: include/linux/wimax/i2400m.h |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 3058 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3059 | INTEL WIRELESS WIFI LINK (iwlwifi) |
| 3060 | P: Zhu Yi |
| 3061 | M: yi.zhu@intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 3062 | P: Reinette Chatre |
| 3063 | M: reinette.chatre@intel.com |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3064 | L: linux-wireless@vger.kernel.org |
| 3065 | L: ipw3945-devel@lists.sourceforge.net |
| 3066 | W: http://intellinuxwireless.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3067 | 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] | 3068 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3069 | F: drivers/net/wireless/iwlwifi/ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3070 | |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 3071 | IOC3 ETHERNET DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3072 | P: Ralf Baechle |
| 3073 | M: ralf@linux-mips.org |
| 3074 | L: linux-mips@linux-mips.org |
| 3075 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3076 | F: drivers/net/ioc3-eth.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3077 | |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 3078 | IOC3 SERIAL DRIVER |
| 3079 | P: Pat Gefre |
| 3080 | M: pfg@sgi.com |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 3081 | L: linux-mips@linux-mips.org |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 3082 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3083 | F: drivers/serial/ioc3_serial.c |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 3084 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 3085 | IP MASQUERADING |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3086 | P: Juanjo Ciarlante |
| 3087 | M: jjciarla@raiz.uncu.edu.ar |
| 3088 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3089 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3090 | |
Francois Romieu | 1202d6f | 2007-09-17 17:13:55 -0700 | [diff] [blame] | 3091 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
| 3092 | P: Francois Romieu |
| 3093 | M: romieu@fr.zoreil.com |
| 3094 | P: Sorbica Shieh |
| 3095 | M: sorbica@icplus.com.tw |
| 3096 | P: Jesse Huang |
| 3097 | M: jesse@icplus.com.tw |
| 3098 | L: netdev@vger.kernel.org |
| 3099 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3100 | F: drivers/net/ipg.c |
Francois Romieu | 1202d6f | 2007-09-17 17:13:55 -0700 | [diff] [blame] | 3101 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 3102 | IPATH DRIVER |
Arthur Jones | 18b8c8f | 2008-02-29 10:13:37 -0800 | [diff] [blame] | 3103 | P: Ralph Campbell |
Arthur Jones | f42b647 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 3104 | M: infinipath@qlogic.com |
| 3105 | L: general@lists.openfabrics.org |
| 3106 | T: git git://git.qlogic.com/ipath-linux-2.6 |
Bryan O'Sullivan | 77d8798 | 2006-03-29 15:23:39 -0800 | [diff] [blame] | 3107 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3108 | F: drivers/infiniband/hw/ipath/ |
Bryan O'Sullivan | 77d8798 | 2006-03-29 15:23:39 -0800 | [diff] [blame] | 3109 | |
Corey Minyard | 4409ebe | 2006-04-20 02:43:12 -0700 | [diff] [blame] | 3110 | IPMI SUBSYSTEM |
| 3111 | P: Corey Minyard |
| 3112 | M: minyard@acm.org |
| 3113 | L: openipmi-developer@lists.sourceforge.net |
| 3114 | W: http://openipmi.sourceforge.net/ |
| 3115 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3116 | F: Documentation/IPMI.txt |
| 3117 | F: drivers/char/ipmi/ |
| 3118 | F: include/linux/ipmi* |
Corey Minyard | 4409ebe | 2006-04-20 02:43:12 -0700 | [diff] [blame] | 3119 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3120 | IPS SCSI RAID DRIVER |
| 3121 | P: Adaptec OEM Raid Solutions |
| 3122 | M: aacraid@adaptec.com |
| 3123 | L: linux-scsi@vger.kernel.org |
| 3124 | W: http://www.adaptec.com/ |
| 3125 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3126 | F: drivers/scsi/ips* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3127 | |
| 3128 | IPVS |
| 3129 | P: Wensong Zhang |
| 3130 | M: wensong@linux-vs.org |
| 3131 | P: Simon Horman |
| 3132 | M: horms@verge.net.au |
| 3133 | P: Julian Anastasov |
| 3134 | M: ja@ssi.bg |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 3135 | L: netdev@vger.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3136 | L: lvs-devel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3137 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3138 | F: Documentation/networking/ipvs-sysctl.txt |
| 3139 | F: net/netfilter/ipvs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3140 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 3141 | IPWIRELESS DRIVER |
David Sterba | 099dc4f | 2008-02-07 10:57:12 +0100 | [diff] [blame] | 3142 | P: Jiri Kosina |
| 3143 | M: jkosina@suse.cz |
| 3144 | P: David Sterba |
| 3145 | M: dsterba@suse.cz |
| 3146 | S: Maintained |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3147 | 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] | 3148 | F: drivers/char/pcmcia/ipwireless/ |
David Sterba | 099dc4f | 2008-02-07 10:57:12 +0100 | [diff] [blame] | 3149 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3150 | IPX NETWORK LAYER |
| 3151 | P: Arnaldo Carvalho de Melo |
| 3152 | M: acme@ghostprotocols.net |
| 3153 | L: netdev@vger.kernel.org |
| 3154 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3155 | F: include/linux/ipx.h |
| 3156 | F: include/net/ipx.h |
| 3157 | F: net/ipx/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3158 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3159 | IRDA SUBSYSTEM |
Samuel Ortiz | f353976 | 2006-05-09 15:24:49 -0700 | [diff] [blame] | 3160 | P: Samuel Ortiz |
| 3161 | M: samuel@sortiz.org |
Olaf Hering | a2ac953 | 2005-07-12 13:58:35 -0700 | [diff] [blame] | 3162 | L: irda-users@lists.sourceforge.net (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3163 | W: http://irda.sourceforge.net/ |
Samuel Ortiz | f353976 | 2006-05-09 15:24:49 -0700 | [diff] [blame] | 3164 | S: Maintained |
Samuel Ortiz | e005797 | 2009-06-05 16:12:00 +0200 | [diff] [blame] | 3165 | 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] | 3166 | F: Documentation/networking/irda.txt |
| 3167 | F: drivers/net/irda/ |
| 3168 | F: include/net/irda/ |
| 3169 | F: net/irda/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3170 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3171 | ISAPNP |
| 3172 | P: Jaroslav Kysela |
| 3173 | M: perex@perex.cz |
| 3174 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3175 | F: Documentation/isapnp.txt |
| 3176 | F: drivers/pnp/isapnp/ |
| 3177 | F: include/linux/isapnp.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3178 | |
Mike Christie | 14816b1 | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 3179 | ISCSI |
| 3180 | P: Mike Christie |
| 3181 | M: michaelc@cs.wisc.edu |
| 3182 | L: open-iscsi@googlegroups.com |
| 3183 | W: www.open-iscsi.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3184 | 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] | 3185 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3186 | F: drivers/scsi/*iscsi* |
| 3187 | F: include/scsi/*iscsi* |
Mike Christie | 14816b1 | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 3188 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3189 | ISDN SUBSYSTEM |
| 3190 | P: Karsten Keil |
Karsten Keil | fbfd8b5 | 2009-03-01 18:04:53 +0100 | [diff] [blame] | 3191 | M: isdn@linux-pingi.de |
Paul Bolle | d5d5227 | 2008-04-15 00:40:48 -0700 | [diff] [blame] | 3192 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3193 | W: http://www.isdn4linux.de |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3194 | 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] | 3195 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3196 | F: Documentation/isdn/ |
| 3197 | F: drivers/isdn/ |
| 3198 | F: include/linux/isdn.h |
| 3199 | F: include/linux/isdn/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3200 | |
| 3201 | ISDN SUBSYSTEM (Eicon active card driver) |
| 3202 | P: Armin Schindler |
| 3203 | M: mac@melware.de |
Paul Bolle | d5d5227 | 2008-04-15 00:40:48 -0700 | [diff] [blame] | 3204 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3205 | W: http://www.melware.de |
| 3206 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3207 | F: drivers/isdn/hardware/eicon/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3208 | |
Hans Verkuil | 91821ff | 2007-12-02 09:35:33 -0300 | [diff] [blame] | 3209 | IVTV VIDEO4LINUX DRIVER |
| 3210 | P: Hans Verkuil |
| 3211 | M: hverkuil@xs4all.nl |
| 3212 | L: ivtv-devel@ivtvdriver.org |
| 3213 | L: ivtv-users@ivtvdriver.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 3214 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3215 | 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] | 3216 | W: http://www.ivtvdriver.org |
| 3217 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3218 | F: Documentation/video4linux/*.ivtv |
| 3219 | F: drivers/media/video/ivtv/ |
| 3220 | F: include/linux/ivtv* |
Hans Verkuil | 91821ff | 2007-12-02 09:35:33 -0300 | [diff] [blame] | 3221 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3222 | JFS FILESYSTEM |
| 3223 | P: Dave Kleikamp |
| 3224 | M: shaggy@austin.ibm.com |
| 3225 | L: jfs-discussion@lists.sourceforge.net |
| 3226 | W: http://jfs.sourceforge.net/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3227 | 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] | 3228 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3229 | F: Documentation/filesystems/jfs.txt |
| 3230 | F: fs/jfs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3231 | |
Guo-Fu Tseng | 9525223 | 2008-09-16 01:00:11 +0800 | [diff] [blame] | 3232 | JME NETWORK DRIVER |
| 3233 | P: Guo-Fu Tseng |
| 3234 | M: cooldavid@cooldavid.org |
| 3235 | L: netdev@vger.kernel.org |
| 3236 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3237 | F: drivers/net/jme.* |
Guo-Fu Tseng | 9525223 | 2008-09-16 01:00:11 +0800 | [diff] [blame] | 3238 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3239 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
| 3240 | P: David Woodhouse |
| 3241 | M: dwmw2@infradead.org |
David Woodhouse | 6d85d06 | 2007-10-27 10:39:48 -0400 | [diff] [blame] | 3242 | L: linux-mtd@lists.infradead.org |
| 3243 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3244 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3245 | F: fs/jffs2/ |
| 3246 | F: include/linux/jffs2.h |
| 3247 | F: include/mtd/jffs2-user.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3248 | |
Josh Triplett | de456d3 | 2006-07-30 03:04:00 -0700 | [diff] [blame] | 3249 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 3250 | P: Stephen Tweedie |
| 3251 | M: sct@redhat.com |
| 3252 | P: Andrew Morton |
| 3253 | M: akpm@linux-foundation.org |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 3254 | L: linux-ext4@vger.kernel.org |
Theodore Tso | ae0718f | 2006-05-20 15:00:13 -0700 | [diff] [blame] | 3255 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3256 | F: fs/jbd*/ |
| 3257 | F: include/linux/ext*jbd*.h |
| 3258 | F: include/linux/jbd*.h |
Theodore Tso | ae0718f | 2006-05-20 15:00:13 -0700 | [diff] [blame] | 3259 | |
Rudolf Marek | 4660cb3 | 2006-10-08 22:01:26 +0200 | [diff] [blame] | 3260 | K8TEMP HARDWARE MONITORING DRIVER |
| 3261 | P: Rudolf Marek |
| 3262 | M: r.marek@assembler.cz |
| 3263 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3264 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3265 | F: Documentation/hwmon/k8temp |
| 3266 | F: drivers/hwmon/k8temp.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3267 | |
| 3268 | KCONFIG |
| 3269 | P: Roman Zippel |
| 3270 | M: zippel@linux-m68k.org |
Sam Ravnborg | 347d12d | 2007-10-18 13:23:33 +0200 | [diff] [blame] | 3271 | L: linux-kbuild@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3272 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3273 | F: Documentation/kbuild/kconfig-language.txt |
| 3274 | F: scripts/kconfig/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3275 | |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 3276 | KDUMP |
| 3277 | P: Vivek Goyal |
Vivek Goyal | 4200b66 | 2007-12-01 12:16:30 -0800 | [diff] [blame] | 3278 | M: vgoyal@redhat.com |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 3279 | P: Haren Myneni |
| 3280 | M: hbabu@us.ibm.com |
Simon Horman | 3463399 | 2007-05-08 00:31:40 -0700 | [diff] [blame] | 3281 | L: kexec@lists.infradead.org |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 3282 | L: linux-kernel@vger.kernel.org |
| 3283 | W: http://lse.sourceforge.net/kdump/ |
| 3284 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 3285 | F: Documentation/kdump/ |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 3286 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3287 | KERNEL AUTOMOUNTER (AUTOFS) |
| 3288 | P: H. Peter Anvin |
| 3289 | M: hpa@zytor.com |
| 3290 | L: autofs@linux.kernel.org |
| 3291 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3292 | F: fs/autofs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3293 | |
| 3294 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
| 3295 | P: Ian Kent |
| 3296 | M: raven@themaw.net |
| 3297 | L: autofs@linux.kernel.org |
| 3298 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3299 | F: fs/autofs4/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3300 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 3301 | KERNEL BUILD |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3302 | P: Sam Ravnborg |
| 3303 | M: sam@ravnborg.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3304 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git |
| 3305 | 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] | 3306 | L: linux-kbuild@vger.kernel.org |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 3307 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3308 | F: Documentation/kbuild/ |
| 3309 | F: Makefile |
| 3310 | F: scripts/Makefile.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3311 | |
| 3312 | KERNEL JANITORS |
| 3313 | P: Several |
maximilian attems | c3000e0 | 2007-07-06 11:17:32 -0700 | [diff] [blame] | 3314 | L: kernel-janitors@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3315 | W: http://www.kerneljanitors.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3316 | S: Maintained |
| 3317 | |
J. Bruce Fields | e8b4355 | 2008-07-23 08:49:50 -0400 | [diff] [blame] | 3318 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
Neil Brown | a512cd5 | 2007-07-31 00:37:27 -0700 | [diff] [blame] | 3319 | P: J. Bruce Fields |
| 3320 | M: bfields@fieldses.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3321 | P: Neil Brown |
NeilBrown | 98fac23 | 2007-01-26 00:56:57 -0800 | [diff] [blame] | 3322 | M: neilb@suse.de |
Neil Brown | 16141c0 | 2007-12-11 16:16:12 -0800 | [diff] [blame] | 3323 | L: linux-nfs@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3324 | W: http://nfs.sourceforge.net/ |
NeilBrown | 98fac23 | 2007-01-26 00:56:57 -0800 | [diff] [blame] | 3325 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3326 | F: fs/nfsd/ |
| 3327 | F: include/linux/nfsd/ |
| 3328 | F: fs/lockd/ |
| 3329 | F: fs/nfs_common/ |
| 3330 | F: net/sunrpc/ |
| 3331 | F: include/linux/lockd/ |
| 3332 | F: include/linux/sunrpc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3333 | |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 3334 | KERNEL VIRTUAL MACHINE (KVM) |
| 3335 | P: Avi Kivity |
Avi Kivity | 9ea1de4 | 2008-09-19 19:25:30 -0700 | [diff] [blame] | 3336 | M: avi@redhat.com |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 3337 | L: kvm@vger.kernel.org |
| 3338 | W: http://kvm.qumranet.com |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 3339 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3340 | F: Documentation/*/kvm.txt |
| 3341 | F: arch/*/kvm/ |
| 3342 | F: arch/*/include/asm/kvm* |
| 3343 | F: include/linux/kvm* |
| 3344 | F: virt/kvm/ |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 3345 | |
Joerg Roedel | ad8003d | 2008-09-10 20:01:07 +0200 | [diff] [blame] | 3346 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
| 3347 | P: Joerg Roedel |
| 3348 | M: joerg.roedel@amd.com |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3349 | L: kvm@vger.kernel.org |
| 3350 | W: http://kvm.qumranet.com |
| 3351 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3352 | F: arch/x86/include/asm/svm.h |
| 3353 | F: arch/x86/kvm/kvm_svm.h |
| 3354 | F: arch/x86/kvm/svm.c |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3355 | |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 3356 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
| 3357 | P: Hollis Blanchard |
| 3358 | M: hollisb@us.ibm.com |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 3359 | L: kvm-ppc@vger.kernel.org |
| 3360 | W: http://kvm.qumranet.com |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 3361 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3362 | F: arch/powerpc/include/asm/kvm* |
| 3363 | F: arch/powerpc/kvm/ |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 3364 | |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 3365 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
Zhang Xiantao | 920ed9f | 2008-01-31 12:03:39 +0800 | [diff] [blame] | 3366 | P: Xiantao Zhang |
| 3367 | M: xiantao.zhang@intel.com |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 3368 | L: kvm-ia64@vger.kernel.org |
| 3369 | W: http://kvm.qumranet.com |
Zhang Xiantao | 920ed9f | 2008-01-31 12:03:39 +0800 | [diff] [blame] | 3370 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3371 | F: Documentation/ia64/kvm.txt |
| 3372 | F: arch/ia64/include/asm/kvm* |
| 3373 | F: arch/ia64/kvm/ |
Zhang Xiantao | 920ed9f | 2008-01-31 12:03:39 +0800 | [diff] [blame] | 3374 | |
Christian Borntraeger | 85f8fff | 2008-03-25 18:47:41 +0100 | [diff] [blame] | 3375 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
| 3376 | P: Carsten Otte |
| 3377 | M: cotte@de.ibm.com |
| 3378 | P: Christian Borntraeger |
| 3379 | M: borntraeger@de.ibm.com |
| 3380 | M: linux390@de.ibm.com |
| 3381 | L: linux-s390@vger.kernel.org |
| 3382 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 3383 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3384 | F: Documentation/s390/kvm.txt |
| 3385 | F: arch/s390/include/asm/kvm* |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 3386 | F: arch/s390/kvm/ |
Christian Borntraeger | 85f8fff | 2008-03-25 18:47:41 +0100 | [diff] [blame] | 3387 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3388 | KEXEC |
| 3389 | P: Eric Biederman |
| 3390 | M: ebiederm@xmission.com |
Signed-off-by@vergenet.net":Simon | b7c698f | 2007-10-18 03:04:33 -0700 | [diff] [blame] | 3391 | 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] | 3392 | L: linux-kernel@vger.kernel.org |
Simon Horman | 3463399 | 2007-05-08 00:31:40 -0700 | [diff] [blame] | 3393 | L: kexec@lists.infradead.org |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3394 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3395 | F: include/linux/kexec.h |
| 3396 | F: kernel/kexec.c |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3397 | |
Jason Wessel | e3e2aaf | 2008-03-20 13:43:45 -0500 | [diff] [blame] | 3398 | KGDB |
| 3399 | P: Jason Wessel |
| 3400 | M: jason.wessel@windriver.com |
| 3401 | L: kgdb-bugreport@lists.sourceforge.net |
| 3402 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3403 | F: Documentation/DocBook/kgdb.tmpl |
| 3404 | F: drivers/misc/kgdbts.c |
| 3405 | F: drivers/serial/kgdboc.c |
| 3406 | F: include/linux/kgdb.h |
| 3407 | F: kernel/kgdb.c |
Jason Wessel | e3e2aaf | 2008-03-20 13:43:45 -0500 | [diff] [blame] | 3408 | |
Catalin Marinas | c3bb4d2 | 2009-06-12 09:35:22 +0100 | [diff] [blame] | 3409 | KMEMLEAK |
| 3410 | P: Catalin Marinas |
| 3411 | M: catalin.marinas@arm.com |
| 3412 | L: linux-kernel@vger.kernel.org |
| 3413 | S: Maintained |
| 3414 | F: Documentation/kmemleak.txt |
| 3415 | F: include/linux/kmemleak.h |
| 3416 | F: mm/kmemleak.c |
| 3417 | F: mm/kmemleak-test.c |
| 3418 | |
Eduard - Gabriel Munteanu | b9ce08c | 2008-08-10 20:14:03 +0300 | [diff] [blame] | 3419 | KMEMTRACE |
| 3420 | P: Eduard - Gabriel Munteanu |
| 3421 | M: eduard.munteanu@linux360.ro |
| 3422 | L: linux-kernel@vger.kernel.org |
| 3423 | S: Maintained |
Joe Perches | dc8c7f8 | 2009-04-21 12:24:45 -0700 | [diff] [blame] | 3424 | F: Documentation/trace/kmemtrace.txt |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3425 | F: include/trace/kmemtrace.h |
| 3426 | F: kernel/trace/kmemtrace.c |
Eduard - Gabriel Munteanu | b9ce08c | 2008-08-10 20:14:03 +0300 | [diff] [blame] | 3427 | |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 3428 | KPROBES |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 3429 | P: Ananth N Mavinakayanahalli |
| 3430 | M: ananth@in.ibm.com |
| 3431 | P: Anil S Keshavamurthy |
| 3432 | M: anil.s.keshavamurthy@intel.com |
| 3433 | P: David S. Miller |
| 3434 | M: davem@davemloft.net |
Masami Hiramatsu | 6edef97 | 2008-03-26 15:53:19 -0400 | [diff] [blame] | 3435 | P: Masami Hiramatsu |
| 3436 | M: mhiramat@redhat.com |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 3437 | L: linux-kernel@vger.kernel.org |
| 3438 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3439 | F: Documentation/kprobes.txt |
| 3440 | F: include/linux/kprobes.h |
| 3441 | F: kernel/kprobes.c |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 3442 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3443 | KS0108 LCD CONTROLLER DRIVER |
| 3444 | P: Miguel Ojeda Sandonis |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 3445 | M: miguel.ojeda.sandonis@gmail.com |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3446 | L: linux-kernel@vger.kernel.org |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 3447 | W: http://miguelojeda.es/auxdisplay.htm |
| 3448 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3449 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3450 | F: Documentation/auxdisplay/ks0108 |
| 3451 | F: drivers/auxdisplay/ks0108.c |
| 3452 | F: include/linux/ks0108.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3453 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3454 | LAPB module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3455 | L: linux-x25@vger.kernel.org |
David S. Miller | bf9915c | 2006-07-21 14:55:17 -0700 | [diff] [blame] | 3456 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3457 | F: Documentation/networking/lapb-module.txt |
| 3458 | F: include/*/lapb.h |
| 3459 | F: net/lapb/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3460 | |
| 3461 | LASI 53c700 driver for PARISC |
| 3462 | P: James E.J. Bottomley |
| 3463 | M: James.Bottomley@HansenPartnership.com |
| 3464 | L: linux-scsi@vger.kernel.org |
| 3465 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3466 | F: Documentation/scsi/53c700.txt |
| 3467 | F: drivers/scsi/53c700* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3468 | |
Richard Purdie | 263de9b | 2006-05-15 09:44:16 -0700 | [diff] [blame] | 3469 | LED SUBSYSTEM |
| 3470 | P: Richard Purdie |
| 3471 | M: rpurdie@rpsys.net |
| 3472 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3473 | F: drivers/leds/ |
| 3474 | F: include/linux/leds.h |
Richard Purdie | 263de9b | 2006-05-15 09:44:16 -0700 | [diff] [blame] | 3475 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3476 | LEGO USB Tower driver |
| 3477 | P: Juergen Stuber |
| 3478 | M: starblue@users.sourceforge.net |
| 3479 | L: legousb-devel@lists.sourceforge.net |
| 3480 | W: http://legousb.sourceforge.net/ |
| 3481 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3482 | F: drivers/usb/misc/legousbtower.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3483 | |
Rusty Russell | 568a17f | 2007-10-25 14:12:24 +1000 | [diff] [blame] | 3484 | LGUEST |
| 3485 | P: Rusty Russell |
| 3486 | M: rusty@rustcorp.com.au |
| 3487 | L: lguest@ozlabs.org |
| 3488 | W: http://lguest.ozlabs.org/ |
| 3489 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3490 | F: Documentation/lguest/ |
| 3491 | F: arch/x86/lguest/ |
| 3492 | F: drivers/lguest/ |
| 3493 | F: include/linux/lguest*.h |
| 3494 | F: arch/x86/include/asm/lguest*.h |
Rusty Russell | 568a17f | 2007-10-25 14:12:24 +1000 | [diff] [blame] | 3495 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3496 | LINUX FOR IBM pSERIES (RS/6000) |
| 3497 | P: Paul Mackerras |
| 3498 | M: paulus@au.ibm.com |
| 3499 | W: http://www.ibm.com/linux/ltc/projects/ppc |
| 3500 | S: Supported |
| 3501 | |
Paul Mackerras | 852bb9f | 2008-07-04 21:04:42 +1000 | [diff] [blame] | 3502 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
Paul Mackerras | 852bb9f | 2008-07-04 21:04:42 +1000 | [diff] [blame] | 3503 | P: Benjamin Herrenschmidt |
| 3504 | M: benh@kernel.crashing.org |
Paul Mackerras | 92cde4d | 2009-01-02 15:40:55 +1100 | [diff] [blame] | 3505 | P: Paul Mackerras |
| 3506 | M: paulus@samba.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3507 | W: http://www.penguinppc.org/ |
| 3508 | L: linuxppc-dev@ozlabs.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3509 | 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] | 3510 | S: Supported |
| 3511 | |
| 3512 | LINUX FOR POWER MACINTOSH |
| 3513 | P: Benjamin Herrenschmidt |
| 3514 | M: benh@kernel.crashing.org |
| 3515 | W: http://www.penguinppc.org/ |
| 3516 | L: linuxppc-dev@ozlabs.org |
| 3517 | S: Maintained |
| 3518 | |
Grant Likely | 77a7636 | 2008-07-12 12:11:43 -0600 | [diff] [blame] | 3519 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
Grant Likely | e1eea9f | 2007-10-09 14:45:26 -0600 | [diff] [blame] | 3520 | P: Grant Likely |
| 3521 | M: grant.likely@secretlab.ca |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3522 | L: linuxppc-dev@ozlabs.org |
Grant Likely | 9d37a90 | 2009-04-28 06:50:15 +0000 | [diff] [blame] | 3523 | T: git git://git.secretlab.ca/git/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3524 | S: Maintained |
| 3525 | |
| 3526 | LINUX FOR POWERPC EMBEDDED PPC4XX |
Josh Boyer | 9a474ff | 2007-09-19 21:19:07 -0500 | [diff] [blame] | 3527 | P: Josh Boyer |
| 3528 | M: jwboyer@linux.vnet.ibm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3529 | P: Matt Porter |
| 3530 | M: mporter@kernel.crashing.org |
| 3531 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 3532 | L: linuxppc-dev@ozlabs.org |
Josh Boyer | 9ae2ccf | 2009-04-24 08:57:47 -0400 | [diff] [blame] | 3533 | 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] | 3534 | S: Maintained |
| 3535 | |
Grant Likely | 260c02a | 2007-10-02 12:15:34 +1000 | [diff] [blame] | 3536 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
| 3537 | P: Grant Likely |
| 3538 | M: grant.likely@secretlab.ca |
Grant Likely | f210d43 | 2007-10-03 23:24:52 -0600 | [diff] [blame] | 3539 | W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex |
Grant Likely | 260c02a | 2007-10-02 12:15:34 +1000 | [diff] [blame] | 3540 | L: linuxppc-dev@ozlabs.org |
Grant Likely | 9d37a90 | 2009-04-28 06:50:15 +0000 | [diff] [blame] | 3541 | T: git git://git.secretlab.ca/git/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3542 | S: Maintained |
| 3543 | |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 3544 | LINUX FOR POWERPC EMBEDDED PPC8XX |
Marcelo Tosatti | dba5baf | 2007-09-10 18:46:01 -0400 | [diff] [blame] | 3545 | P: Vitaly Bordug |
| 3546 | M: vitb@kernel.crashing.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 3547 | P: Marcelo Tosatti |
Marcelo Tosatti | 2e367a8 | 2006-05-15 09:44:08 -0700 | [diff] [blame] | 3548 | M: marcelo@kvack.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 3549 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 3550 | L: linuxppc-dev@ozlabs.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 3551 | S: Maintained |
| 3552 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3553 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3554 | P: Kumar Gala |
| 3555 | M: galak@kernel.crashing.org |
| 3556 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 3557 | L: linuxppc-dev@ozlabs.org |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3558 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3559 | |
Olof Johansson | ab06ff3 | 2006-09-06 14:44:54 -0500 | [diff] [blame] | 3560 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
| 3561 | P: Olof Johansson |
| 3562 | M: olof@lixom.net |
| 3563 | W: http://www.pasemi.com/ |
| 3564 | L: linuxppc-dev@ozlabs.org |
| 3565 | S: Supported |
| 3566 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3567 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
| 3568 | P: Chris Wright |
Chris Wright | 692a206 | 2006-03-11 03:27:19 -0800 | [diff] [blame] | 3569 | M: chrisw@sous-sol.org |
Chris Wright | 1a4520b | 2006-03-11 03:27:20 -0800 | [diff] [blame] | 3570 | L: linux-security-module@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3571 | 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] | 3572 | S: Supported |
| 3573 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3574 | LLC (802.2) |
| 3575 | P: Arnaldo Carvalho de Melo |
| 3576 | M: acme@ghostprotocols.net |
| 3577 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3578 | F: include/linux/llc.h |
| 3579 | F: include/net/llc* |
| 3580 | F: net/llc/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3581 | |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 3582 | LIS3LV02D ACCELEROMETER DRIVER |
| 3583 | P: Eric Piel |
| 3584 | M: eric.piel@tremplin-utc.net |
| 3585 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3586 | F: Documentation/hwmon/lis3lv02d |
| 3587 | F: drivers/hwmon/lis3lv02d.* |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 3588 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3589 | LM83 HARDWARE MONITOR DRIVER |
| 3590 | P: Jean Delvare |
| 3591 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 3592 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3593 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3594 | F: Documentation/hwmon/lm83 |
| 3595 | F: drivers/hwmon/lm83.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3596 | |
| 3597 | LM90 HARDWARE MONITOR DRIVER |
| 3598 | P: Jean Delvare |
| 3599 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 3600 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3601 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3602 | F: Documentation/hwmon/lm90 |
| 3603 | F: drivers/hwmon/lm90.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3604 | |
Peter Zijlstra | 512e67f | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 3605 | LOCKDEP AND LOCKSTAT |
| 3606 | P: Peter Zijlstra |
| 3607 | M: peterz@infradead.org |
| 3608 | P: Ingo Molnar |
| 3609 | M: mingo@redhat.com |
| 3610 | L: linux-kernel@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3611 | 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] | 3612 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3613 | F: Documentation/lockdep*.txt |
| 3614 | F: Documentation/lockstat.txt |
| 3615 | F: include/linux/lockdep.h |
| 3616 | F: kernel/lockdep* |
Peter Zijlstra | 512e67f | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 3617 | |
Anton Altaparmakov | dde3334 | 2007-05-21 09:37:42 +0100 | [diff] [blame] | 3618 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3619 | P: Richard Russon (FlatCap) |
| 3620 | M: ldm@flatcap.org |
Anton Altaparmakov | dde3334 | 2007-05-21 09:37:42 +0100 | [diff] [blame] | 3621 | L: linux-ntfs-dev@lists.sourceforge.net |
| 3622 | W: http://www.linux-ntfs.org/content/view/19/37/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3623 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3624 | F: Documentation/ldm.txt |
| 3625 | F: fs/partitions/ldm.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3626 | |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 3627 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
| 3628 | P: Eric Moore |
Eric Moore | d8a82d7 | 2006-12-29 16:47:43 -0800 | [diff] [blame] | 3629 | M: Eric.Moore@lsi.com |
| 3630 | M: support@lsi.com |
Eric Moore | cec744f | 2007-09-14 19:08:08 -0600 | [diff] [blame] | 3631 | L: DL-MPTFusionLinux@lsi.com |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 3632 | L: linux-scsi@vger.kernel.org |
| 3633 | W: http://www.lsilogic.com/support |
| 3634 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3635 | F: drivers/message/fusion/ |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 3636 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3637 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
| 3638 | P: Matthew Wilcox |
| 3639 | M: matthew@wil.cx |
| 3640 | L: linux-scsi@vger.kernel.org |
| 3641 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3642 | F: drivers/scsi/sym53c8xx_2/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3643 | |
Mike Frysinger | 81365c3 | 2008-10-29 14:01:12 -0700 | [diff] [blame] | 3644 | LTP (Linux Test Project) |
| 3645 | P: Subrata Modak |
| 3646 | M: subrata@linux.vnet.ibm.com |
| 3647 | P: Mike Frysinger |
| 3648 | M: vapier@gentoo.org |
| 3649 | L: ltp-list@lists.sourceforge.net (subscribers-only) |
| 3650 | W: http://ltp.sourceforge.net/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3651 | 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] | 3652 | S: Maintained |
| 3653 | |
Hirokazu Takata | c12a54b | 2007-07-15 23:38:45 -0700 | [diff] [blame] | 3654 | M32R ARCHITECTURE |
| 3655 | P: Hirokazu Takata |
| 3656 | M: takata@linux-m32r.org |
| 3657 | L: linux-m32r@ml.linux-m32r.org |
| 3658 | L: linux-m32r-ja@ml.linux-m32r.org (in Japanese) |
| 3659 | W: http://www.linux-m32r.org/ |
| 3660 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3661 | F: arch/m32r/ |
| 3662 | F: include/asm-m32r/ |
Hirokazu Takata | c12a54b | 2007-07-15 23:38:45 -0700 | [diff] [blame] | 3663 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3664 | M68K ARCHITECTURE |
| 3665 | P: Geert Uytterhoeven |
| 3666 | M: geert@linux-m68k.org |
| 3667 | P: Roman Zippel |
| 3668 | M: zippel@linux-m68k.org |
| 3669 | L: linux-m68k@lists.linux-m68k.org |
| 3670 | W: http://www.linux-m68k.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3671 | 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] | 3672 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3673 | F: arch/m68k/ |
Joe Perches | 9db3518 | 2009-04-08 08:39:56 -0700 | [diff] [blame] | 3674 | F: drivers/zorro/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3675 | |
| 3676 | M68K ON APPLE MACINTOSH |
| 3677 | P: Joshua Thompson |
| 3678 | M: funaho@jurai.org |
| 3679 | W: http://www.mac.linux-m68k.org/ |
Finn Thain | 9bb9f22 | 2007-11-18 11:10:05 +0100 | [diff] [blame] | 3680 | L: linux-m68k@lists.linux-m68k.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3681 | S: Maintained |
Joe Perches | 9db3518 | 2009-04-08 08:39:56 -0700 | [diff] [blame] | 3682 | F: arch/m68k/mac/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3683 | |
| 3684 | M68K ON HP9000/300 |
| 3685 | P: Philip Blundell |
| 3686 | M: philb@gnu.org |
| 3687 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
| 3688 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3689 | F: arch/m68k/hp300/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3690 | |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 3691 | MAC80211 |
Johannes Berg | 31c7cec | 2007-10-23 17:05:25 +0200 | [diff] [blame] | 3692 | P: Johannes Berg |
| 3693 | M: johannes@sipsolutions.net |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 3694 | L: linux-wireless@vger.kernel.org |
| 3695 | W: http://linuxwireless.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3696 | 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] | 3697 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3698 | F: Documentation/networking/mac80211-injection.txt |
| 3699 | F: include/net/mac80211.h |
| 3700 | F: net/mac80211/ |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 3701 | |
Stefano Brivio | 1036d86 | 2007-12-23 04:46:27 +0100 | [diff] [blame] | 3702 | MAC80211 PID RATE CONTROL |
| 3703 | P: Stefano Brivio |
| 3704 | M: stefano.brivio@polimi.it |
| 3705 | P: Mattias Nissler |
| 3706 | M: mattias.nissler@gmx.de |
| 3707 | L: linux-wireless@vger.kernel.org |
| 3708 | W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3709 | 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] | 3710 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3711 | F: net/mac80211/rc80211_pid* |
Stefano Brivio | 1036d86 | 2007-12-23 04:46:27 +0100 | [diff] [blame] | 3712 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 3713 | MACVLAN DRIVER |
| 3714 | P: Patrick McHardy |
| 3715 | M: kaber@trash.net |
| 3716 | L: netdev@vger.kernel.org |
| 3717 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3718 | F: drivers/net/macvlan.c |
| 3719 | F: include/linux/if_macvlan.h |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 3720 | |
Michael Kerrisk | faf1668 | 2005-07-31 22:34:47 -0700 | [diff] [blame] | 3721 | 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] | 3722 | P: Michael Kerrisk |
Michael Kerrisk | 1d7f502 | 2007-10-16 23:30:31 -0700 | [diff] [blame] | 3723 | M: mtk.manpages@gmail.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 3724 | W: http://www.kernel.org/doc/man-pages |
Michael Kerrisk | bd7ebec | 2008-10-03 15:23:44 -0700 | [diff] [blame] | 3725 | L: linux-man@vger.kernel.org |
Michael Kerrisk | 1b53dc7 | 2009-03-12 14:31:32 -0700 | [diff] [blame] | 3726 | S: Maintained |
Michael Kerrisk | faf1668 | 2005-07-31 22:34:47 -0700 | [diff] [blame] | 3727 | |
Stefano Brivio | 74cda16 | 2007-11-19 20:27:46 +0100 | [diff] [blame] | 3728 | MARVELL LIBERTAS WIRELESS DRIVER |
| 3729 | P: Dan Williams |
| 3730 | M: dcbw@redhat.com |
| 3731 | L: libertas-dev@lists.infradead.org |
| 3732 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3733 | F: drivers/net/wireless/libertas/ |
Stefano Brivio | 74cda16 | 2007-11-19 20:27:46 +0100 | [diff] [blame] | 3734 | |
Dale Farnsworth | b60d697 | 2006-01-16 16:45:45 -0700 | [diff] [blame] | 3735 | MARVELL MV643XX ETHERNET DRIVER |
Dale Farnsworth | 85ba9d9 | 2008-06-05 06:10:51 -0700 | [diff] [blame] | 3736 | P: Lennert Buytenhek |
| 3737 | M: buytenh@marvell.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 3738 | L: netdev@vger.kernel.org |
Dale Farnsworth | 85ba9d9 | 2008-06-05 06:10:51 -0700 | [diff] [blame] | 3739 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3740 | F: drivers/net/mv643xx_eth.* |
| 3741 | F: include/linux/mv643xx.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3742 | |
Pierre Ossman | 2a69567 | 2009-03-16 19:52:26 +0100 | [diff] [blame] | 3743 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
| 3744 | P: Nicolas Pitre |
| 3745 | M: nico@cam.org |
| 3746 | L: linux-kernel@vger.kernel.org |
| 3747 | S: Maintained |
| 3748 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3749 | MARVELL YUKON / SYSKONNECT DRIVER |
| 3750 | P: Mirko Lindner |
| 3751 | M: mlindner@syskonnect.de |
| 3752 | P: Ralph Roesler |
| 3753 | M: rroesler@syskonnect.de |
| 3754 | W: http://www.syskonnect.com |
| 3755 | S: Supported |
| 3756 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3757 | MATROX FRAMEBUFFER DRIVER |
| 3758 | P: Petr Vandrovec |
| 3759 | M: vandrove@vc.cvut.cz |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 3760 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3761 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3762 | F: drivers/video/matrox/matroxfb_* |
| 3763 | F: include/linux/matroxfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3764 | |
Hans-Juergen Koch | d20620d | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 3765 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
| 3766 | P: Hans J. Koch |
| 3767 | M: hjk@linutronix.de |
| 3768 | L: lm-sensors@lm-sensors.org |
| 3769 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3770 | F: Documentation/hwmon/max6650 |
| 3771 | F: drivers/hwmon/max6650.c |
Hans-Juergen Koch | d20620d | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 3772 | |
Joe Perches | 127c49a | 2009-04-08 08:34:04 -0700 | [diff] [blame] | 3773 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
| 3774 | P: Mauro Carvalho Chehab |
| 3775 | M: mchehab@infradead.org |
| 3776 | P: LinuxTV.org Project |
| 3777 | L: linux-media@vger.kernel.org |
| 3778 | W: http://linuxtv.org |
| 3779 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
| 3780 | S: Maintained |
| 3781 | F: Documentation/dvb/ |
| 3782 | F: Documentation/video4linux/ |
| 3783 | F: drivers/media/ |
| 3784 | F: include/media/ |
| 3785 | F: include/linux/dvb/ |
| 3786 | F: include/linux/videodev*.h |
Steven Rostedt | 70ea91f | 2006-07-30 03:03:53 -0700 | [diff] [blame] | 3787 | |
| 3788 | MEGARAID SCSI DRIVERS |
David Woodhouse | f4e9ce66c | 2006-04-11 19:29:07 -0400 | [diff] [blame] | 3789 | P: Neela Syam Kolli |
Sumant Patro | bdd0d75 | 2007-05-10 07:22:35 -0700 | [diff] [blame] | 3790 | M: megaraidlinux@lsi.com |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 3791 | L: linux-scsi@vger.kernel.org |
Kolli, Neela Syam | 757e010 | 2005-10-14 15:59:13 -0700 | [diff] [blame] | 3792 | W: http://megaraid.lsilogic.com |
| 3793 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3794 | F: Documentation/scsi/megaraid.txt |
| 3795 | F: drivers/scsi/megaraid.* |
| 3796 | F: drivers/scsi/megaraid/ |
Kolli, Neela Syam | 757e010 | 2005-10-14 15:59:13 -0700 | [diff] [blame] | 3797 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3798 | MEMORY MANAGEMENT |
| 3799 | L: linux-mm@kvack.org |
| 3800 | L: linux-kernel@vger.kernel.org |
| 3801 | W: http://www.linux-mm.org |
| 3802 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3803 | F: include/linux/mm.h |
| 3804 | F: mm/ |
David Woodhouse | f4e9ce66c | 2006-04-11 19:29:07 -0400 | [diff] [blame] | 3805 | |
akpm@linux-foundation.org | 938a920 | 2008-03-04 14:28:29 -0800 | [diff] [blame] | 3806 | MEMORY RESOURCE CONTROLLER |
| 3807 | P: Balbir Singh |
| 3808 | M: balbir@linux.vnet.ibm.com |
| 3809 | P: Pavel Emelyanov |
| 3810 | M: xemul@openvz.org |
| 3811 | P: KAMEZAWA Hiroyuki |
| 3812 | M: kamezawa.hiroyu@jp.fujitsu.com |
| 3813 | L: linux-mm@kvack.org |
| 3814 | L: linux-kernel@vger.kernel.org |
| 3815 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3816 | F: mm/memcontrol.c |
akpm@linux-foundation.org | 938a920 | 2008-03-04 14:28:29 -0800 | [diff] [blame] | 3817 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3818 | MEMORY TECHNOLOGY DEVICES (MTD) |
| 3819 | P: David Woodhouse |
| 3820 | M: dwmw2@infradead.org |
| 3821 | W: http://www.linux-mtd.infradead.org/ |
| 3822 | L: linux-mtd@lists.infradead.org |
Josh Boyer | 2c560ac | 2005-11-23 15:43:57 -0800 | [diff] [blame] | 3823 | T: git git://git.infradead.org/mtd-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3824 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3825 | F: drivers/mtd/ |
| 3826 | F: include/linux/mtd/ |
| 3827 | F: include/mtd/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3828 | |
Michal Simek | c6375b0 | 2009-03-27 14:25:52 +0100 | [diff] [blame] | 3829 | MICROBLAZE ARCHITECTURE |
| 3830 | P: Michal Simek |
| 3831 | M: monstr@monstr.eu |
| 3832 | L: microblaze-uclinux@itee.uq.edu.au |
| 3833 | W: http://www.monstr.eu/fdt/ |
| 3834 | T: git git://git.monstr.eu/linux-2.6-microblaze.git |
| 3835 | S: Supported |
Michal Simek | 0a8c791 | 2009-04-14 11:38:57 +0200 | [diff] [blame] | 3836 | F: arch/microblaze/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3837 | |
| 3838 | MICROTEK X6 SCANNER |
| 3839 | P: Oliver Neukum |
| 3840 | M: oliver@neukum.name |
| 3841 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3842 | F: drivers/usb/image/microtek.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3843 | |
| 3844 | MIPS |
| 3845 | P: Ralf Baechle |
| 3846 | M: ralf@linux-mips.org |
Ralf Baechle | d50f7ec | 2005-10-04 13:30:10 +0100 | [diff] [blame] | 3847 | W: http://www.linux-mips.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3848 | L: linux-mips@linux-mips.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3849 | T: git git://git.linux-mips.org/pub/scm/linux.git |
Ralf Baechle | 7425b34 | 2006-03-10 13:47:21 +0000 | [diff] [blame] | 3850 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3851 | F: Documentation/mips/ |
| 3852 | F: arch/mips/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3853 | |
| 3854 | MISCELLANEOUS MCA-SUPPORT |
| 3855 | P: James Bottomley |
James Bottomley | c4e1608 | 2007-11-03 08:40:30 -0500 | [diff] [blame] | 3856 | M: James.Bottomley@HansenPartnership.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3857 | L: linux-kernel@vger.kernel.org |
| 3858 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3859 | F: Documentation/ia64/mca.txt |
| 3860 | F: Documentation/mca.txt |
| 3861 | F: drivers/mca/ |
| 3862 | F: include/linux/mca* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3863 | |
| 3864 | MODULE SUPPORT |
| 3865 | P: Rusty Russell |
| 3866 | M: rusty@rustcorp.com.au |
| 3867 | L: linux-kernel@vger.kernel.org |
| 3868 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3869 | F: include/linux/module.h |
| 3870 | F: kernel/module.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3871 | |
| 3872 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER |
| 3873 | P: Stelian Pop |
| 3874 | M: stelian@popies.net |
| 3875 | W: http://popies.net/meye/ |
| 3876 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3877 | F: Documentation/video4linux/meye.txt |
| 3878 | F: drivers/media/video/meye.* |
| 3879 | F: include/linux/meye.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3880 | |
Pavel Pisa | c58ff04 | 2007-05-16 01:10:41 +0200 | [diff] [blame] | 3881 | MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER |
| 3882 | P: Pavel Pisa |
| 3883 | M: ppisa@pikron.com |
| 3884 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Pavel Pisa | c58ff04 | 2007-05-16 01:10:41 +0200 | [diff] [blame] | 3885 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3886 | F: drivers/mmc/host/imxmmc.* |
Pavel Pisa | c58ff04 | 2007-05-16 01:10:41 +0200 | [diff] [blame] | 3887 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3888 | MOUSE AND MISC DEVICES [GENERAL] |
| 3889 | P: Alessandro Rubini |
| 3890 | M: rubini@ipvvis.unipv.it |
| 3891 | L: linux-kernel@vger.kernel.org |
| 3892 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3893 | F: drivers/input/mouse/ |
| 3894 | F: include/linux/gpio_mouse.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3895 | |
Jiri Slaby | b9705b6 | 2008-04-30 00:53:48 -0700 | [diff] [blame] | 3896 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3897 | P: Jiri Slaby |
| 3898 | M: jirislaby@gmail.com |
| 3899 | L: linux-kernel@vger.kernel.org |
| 3900 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3901 | F: Documentation/serial/moxa-smartio |
| 3902 | F: drivers/char/mxser.* |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3903 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 3904 | MSI LAPTOP SUPPORT |
| 3905 | P: Lennart Poettering |
| 3906 | M: mzxreary@0pointer.de |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 3907 | W: https://tango.0pointer.de/mailman/listinfo/s270-linux |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 3908 | W: http://0pointer.de/lennart/tchibo.html |
| 3909 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3910 | F: drivers/platform/x86/msi-laptop.c |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 3911 | |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 3912 | MULTIFUNCTION DEVICES (MFD) |
| 3913 | P: Samuel Ortiz |
Samuel Ortiz | 895d9f0 | 2009-03-23 00:46:18 +0100 | [diff] [blame] | 3914 | M: sameo@linux.intel.com |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 3915 | L: linux-kernel@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3916 | 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] | 3917 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3918 | F: drivers/mfd/ |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 3919 | |
Pierre Ossman | 5c4e6f1 | 2007-05-21 20:23:20 +0200 | [diff] [blame] | 3920 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
Pierre Ossman | b9f5d80 | 2006-10-17 00:09:30 -0700 | [diff] [blame] | 3921 | P: Pierre Ossman |
Pierre Ossman | 32710e8 | 2009-04-08 20:14:54 +0200 | [diff] [blame] | 3922 | M: pierre@ossman.eu |
Pierre Ossman | b9f5d80 | 2006-10-17 00:09:30 -0700 | [diff] [blame] | 3923 | L: linux-kernel@vger.kernel.org |
| 3924 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3925 | F: drivers/mmc/ |
| 3926 | F: include/linux/mmc/ |
Russell King | baca2da | 2006-06-04 17:36:31 +0100 | [diff] [blame] | 3927 | |
David Brownell | 15a0580 | 2007-08-08 09:12:54 -0700 | [diff] [blame] | 3928 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
| 3929 | P: David Brownell |
| 3930 | M: dbrownell@users.sourceforge.net |
| 3931 | L: linux-kernel@vger.kernel.org |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 3932 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3933 | F: drivers/mmc/host/mmc_spi.c |
| 3934 | F: include/linux/spi/mmc_spi.h |
David Brownell | 15a0580 | 2007-08-08 09:12:54 -0700 | [diff] [blame] | 3935 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3936 | MULTISOUND SOUND DRIVER |
| 3937 | P: Andrew Veliath |
| 3938 | M: andrewtv@usa.net |
| 3939 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3940 | F: Documentation/sound/oss/MultiSound |
| 3941 | F: sound/oss/msnd* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3942 | |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3943 | MULTITECH MULTIPORT CARD (ISICOM) |
| 3944 | P: Jiri Slaby |
| 3945 | M: jirislaby@gmail.com |
| 3946 | L: linux-kernel@vger.kernel.org |
| 3947 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3948 | F: drivers/char/isicom.c |
| 3949 | F: include/linux/isicom.h |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3950 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 3951 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 3952 | P: Felipe Balbi |
| 3953 | M: felipe.balbi@nokia.com |
| 3954 | L: linux-usb@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3955 | T: git git://gitorious.org/musb/mainline.git |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 3956 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3957 | F: drivers/usb/musb/ |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 3958 | |
Brice Goglin | 2d3cf58 | 2008-05-17 12:45:36 +0200 | [diff] [blame] | 3959 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
| 3960 | P: Andrew Gallatin |
| 3961 | M: gallatin@myri.com |
| 3962 | P: Brice Goglin |
| 3963 | M: brice@myri.com |
| 3964 | L: netdev@vger.kernel.org |
| 3965 | W: http://www.myri.com/scs/download-Myri10GE.html |
| 3966 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3967 | F: drivers/net/myri10ge/ |
Brice Goglin | 2d3cf58 | 2008-05-17 12:45:36 +0200 | [diff] [blame] | 3968 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3969 | NATSEMI ETHERNET DRIVER (DP8381x) |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 3970 | P: Tim Hockin |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3971 | M: thockin@hockin.org |
| 3972 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3973 | F: drivers/net/natsemi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3974 | |
| 3975 | NCP FILESYSTEM |
| 3976 | P: Petr Vandrovec |
| 3977 | M: vandrove@vc.cvut.cz |
| 3978 | L: linware@sh.cvut.cz |
| 3979 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3980 | F: fs/ncpfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3981 | |
| 3982 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
| 3983 | P: James E.J. Bottomley |
| 3984 | M: James.Bottomley@HansenPartnership.com |
| 3985 | L: linux-scsi@vger.kernel.org |
| 3986 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3987 | F: drivers/scsi/NCR_D700.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3988 | |
Glenn Streiff | 3c2d774 | 2008-02-04 20:20:45 -0800 | [diff] [blame] | 3989 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
| 3990 | P: Faisal Latif |
Roland Dreier | 7b49d95 | 2008-10-16 15:39:14 -0700 | [diff] [blame] | 3991 | M: faisal.latif@intel.com |
Chien Tung | 5f62560 | 2008-05-26 15:23:32 -0700 | [diff] [blame] | 3992 | P: Chien Tung |
Roland Dreier | 7b49d95 | 2008-10-16 15:39:14 -0700 | [diff] [blame] | 3993 | M: chien.tin.tung@intel.com |
Glenn Streiff | 3c2d774 | 2008-02-04 20:20:45 -0800 | [diff] [blame] | 3994 | L: general@lists.openfabrics.org |
| 3995 | W: http://www.neteffect.com |
| 3996 | S: Supported |
| 3997 | F: drivers/infiniband/hw/nes/ |
| 3998 | |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 3999 | NETEM NETWORK EMULATOR |
| 4000 | P: Stephen Hemminger |
Stephen Hemminger | 65ebe63 | 2007-01-23 11:38:57 -0800 | [diff] [blame] | 4001 | M: shemminger@linux-foundation.org |
David Brownell | f318a63 | 2007-04-23 14:41:06 -0700 | [diff] [blame] | 4002 | L: netem@lists.linux-foundation.org |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 4003 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4004 | F: net/sched/sch_netem.c |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 4005 | |
Ramkrishna Vepa | b136d1c | 2009-04-01 18:14:25 +0000 | [diff] [blame] | 4006 | NETERION (S2IO) 10GbE DRIVER (xframe/vxge) |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 4007 | P: Ramkrishna Vepa |
| 4008 | M: ram.vepa@neterion.com |
| 4009 | P: Rastapur Santosh |
| 4010 | M: santosh.rastapur@neterion.com |
| 4011 | P: Sivakumar Subramani |
| 4012 | M: sivakumar.subramani@neterion.com |
| 4013 | P: Sreenivasa Honnur |
| 4014 | M: sreenivasa.honnur@neterion.com |
Ramkrishna Vepa | b136d1c | 2009-04-01 18:14:25 +0000 | [diff] [blame] | 4015 | P: Anil Murthy |
| 4016 | M: anil.murthy@neterion.com |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 4017 | L: netdev@vger.kernel.org |
Ramkrishna Vepa | b136d1c | 2009-04-01 18:14:25 +0000 | [diff] [blame] | 4018 | W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous |
| 4019 | W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 4020 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4021 | F: Documentation/networking/s2io.txt |
| 4022 | F: drivers/net/s2io* |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 4023 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4024 | NETFILTER/IPTABLES/IPCHAINS |
| 4025 | P: Rusty Russell |
| 4026 | P: Marc Boucher |
| 4027 | P: James Morris |
| 4028 | P: Harald Welte |
| 4029 | P: Jozsef Kadlecsik |
Patrick McHardy | 82b9854 | 2006-10-12 14:08:55 -0700 | [diff] [blame] | 4030 | P: Patrick McHardy |
| 4031 | M: kaber@trash.net |
Patrick McHardy | 1a03b81 | 2007-09-18 13:19:26 -0700 | [diff] [blame] | 4032 | L: netfilter-devel@vger.kernel.org |
| 4033 | L: netfilter@vger.kernel.org |
Patrick McHardy | 82b9854 | 2006-10-12 14:08:55 -0700 | [diff] [blame] | 4034 | L: coreteam@netfilter.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4035 | W: http://www.netfilter.org/ |
| 4036 | W: http://www.iptables.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4037 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4038 | F: include/linux/netfilter* |
| 4039 | F: include/linux/netfilter/ |
| 4040 | F: include/net/netfilter/ |
| 4041 | F: net/*/netfilter.c |
| 4042 | F: net/*/netfilter/ |
| 4043 | F: net/netfilter/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4044 | |
Paul Moore | 4cc6773 | 2006-09-25 15:57:13 -0700 | [diff] [blame] | 4045 | NETLABEL |
| 4046 | P: Paul Moore |
| 4047 | M: paul.moore@hp.com |
| 4048 | W: http://netlabel.sf.net |
| 4049 | L: netdev@vger.kernel.org |
| 4050 | S: Supported |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 4051 | F: Documentation/netlabel/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4052 | F: include/net/netlabel.h |
| 4053 | F: net/netlabel/ |
Paul Moore | 4cc6773 | 2006-09-25 15:57:13 -0700 | [diff] [blame] | 4054 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4055 | NETROM NETWORK LAYER |
| 4056 | P: Ralf Baechle |
| 4057 | M: ralf@linux-mips.org |
| 4058 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 4059 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4060 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4061 | F: include/linux/netrom.h |
| 4062 | F: include/net/netrom.h |
| 4063 | F: net/netrom/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4064 | |
Pavel Machek | 5ddb88c | 2006-09-29 02:01:29 -0700 | [diff] [blame] | 4065 | NETWORK BLOCK DEVICE (NBD) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4066 | P: Paul Clements |
| 4067 | M: Paul.Clements@steeleye.com |
| 4068 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4069 | F: Documentation/blockdev/nbd.txt |
| 4070 | F: drivers/block/nbd.c |
| 4071 | F: include/linux/nbd.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4072 | |
| 4073 | NETWORKING [GENERAL] |
Ben Hutchings | 48f6e89 | 2009-04-09 05:47:41 +0000 | [diff] [blame] | 4074 | P: David S. Miller |
| 4075 | M: davem@davemloft.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 4076 | L: netdev@vger.kernel.org |
Joe Perches | b1e8fd5 | 2009-04-16 09:38:46 +0000 | [diff] [blame] | 4077 | W: http://www.linuxfoundation.org/en/Net |
| 4078 | 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] | 4079 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4080 | F: net/ |
| 4081 | F: include/net/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4082 | |
| 4083 | NETWORKING [IPv4/IPv6] |
| 4084 | P: David S. Miller |
| 4085 | M: davem@davemloft.net |
| 4086 | P: Alexey Kuznetsov |
| 4087 | M: kuznet@ms2.inr.ac.ru |
| 4088 | P: Pekka Savola (ipv6) |
| 4089 | M: pekkas@netcore.fi |
| 4090 | P: James Morris |
James Morris | 48de5be | 2005-08-08 10:29:08 -0400 | [diff] [blame] | 4091 | M: jmorris@namei.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4092 | P: Hideaki YOSHIFUJI |
| 4093 | M: yoshfuji@linux-ipv6.org |
| 4094 | P: Patrick McHardy |
Patrick McHardy | 1a03b81 | 2007-09-18 13:19:26 -0700 | [diff] [blame] | 4095 | M: kaber@trash.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 4096 | L: netdev@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4097 | 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] | 4098 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4099 | F: net/ipv4/ |
| 4100 | F: net/ipv6/ |
| 4101 | F: include/net/ip* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4102 | |
James Morris | 10e2ff1 | 2007-08-25 14:41:28 -0700 | [diff] [blame] | 4103 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
| 4104 | P: Paul Moore |
| 4105 | M: paul.moore@hp.com |
| 4106 | L: netdev@vger.kernel.org |
| 4107 | S: Maintained |
| 4108 | |
John W. Linville | 29f8f63 | 2006-01-18 14:52:48 -0800 | [diff] [blame] | 4109 | NETWORKING [WIRELESS] |
| 4110 | P: John W. Linville |
| 4111 | M: linville@tuxdriver.com |
Randy Dunlap | 2cb4abd | 2007-02-07 15:52:36 -0800 | [diff] [blame] | 4112 | L: linux-wireless@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4113 | 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] | 4114 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4115 | F: net/wireless/ |
| 4116 | F: include/net/ieee80211* |
| 4117 | F: include/net/wireless.h |
John W. Linville | 29f8f63 | 2006-01-18 14:52:48 -0800 | [diff] [blame] | 4118 | |
Joe Perches | 788873a | 2009-04-16 09:38:45 +0000 | [diff] [blame] | 4119 | NETWORKING DRIVERS |
| 4120 | L: netdev@vger.kernel.org |
| 4121 | W: http://www.linuxfoundation.org/en/Net |
| 4122 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git |
| 4123 | S: Odd Fixes |
| 4124 | F: drivers/net/ |
| 4125 | |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 4126 | NETXEN (1/10) GbE SUPPORT |
dhananjay@netxen.com | d230ce3 | 2007-12-26 10:23:53 -0800 | [diff] [blame] | 4127 | P: Dhananjay Phadke |
| 4128 | M: dhananjay@netxen.com |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 4129 | L: netdev@vger.kernel.org |
| 4130 | W: http://www.netxen.com |
| 4131 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4132 | F: drivers/net/netxen/ |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 4133 | |
J. Bruce Fields | e8b4355 | 2008-07-23 08:49:50 -0400 | [diff] [blame] | 4134 | NFS, SUNRPC, AND LOCKD CLIENTS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4135 | P: Trond Myklebust |
Trond Myklebust | 78f5815 | 2007-12-12 20:16:06 -0500 | [diff] [blame] | 4136 | M: Trond.Myklebust@netapp.com |
| 4137 | L: linux-nfs@vger.kernel.org |
| 4138 | W: http://client.linux-nfs.org |
| 4139 | 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] | 4140 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4141 | F: fs/lockd/ |
| 4142 | F: fs/nfs/ |
| 4143 | F: fs/nfs_common/ |
| 4144 | F: net/sunrpc/ |
| 4145 | F: include/linux/lockd/ |
| 4146 | F: include/linux/nfs* |
| 4147 | F: include/linux/sunrpc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4148 | |
| 4149 | NI5010 NETWORK DRIVER |
Andreas Mohr | 5b552b1 | 2006-06-30 02:25:07 -0700 | [diff] [blame] | 4150 | P: Jan-Pascal van Best |
| 4151 | M: janpascal@vanbest.org |
| 4152 | P: Andreas Mohr |
| 4153 | M: andi@lisas.de |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 4154 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4155 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4156 | F: drivers/net/ni5010.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4157 | |
Ryusuke Konishi | 85ef9ce | 2009-04-06 19:01:46 -0700 | [diff] [blame] | 4158 | NILFS2 FILESYSTEM |
| 4159 | P: KONISHI Ryusuke |
| 4160 | M: konishi.ryusuke@lab.ntt.co.jp |
| 4161 | L: users@nilfs.org |
| 4162 | W: http://www.nilfs.org/en/ |
| 4163 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4164 | F: Documentation/filesystems/nilfs2.txt |
| 4165 | F: fs/nilfs2/ |
| 4166 | F: include/linux/nilfs2_fs.h |
Ryusuke Konishi | 85ef9ce | 2009-04-06 19:01:46 -0700 | [diff] [blame] | 4167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4168 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
| 4169 | P: YOKOTA Hiroshi |
| 4170 | M: yokota@netlab.is.tsukuba.ac.jp |
| 4171 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
| 4172 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4173 | F: Documentation/scsi/NinjaSCSI.txt |
| 4174 | F: drivers/scsi/pcmcia/nsp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4175 | |
| 4176 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER |
| 4177 | P: GOTO Masanori |
| 4178 | M: gotom@debian.or.jp |
| 4179 | P: YOKOTA Hiroshi |
| 4180 | M: yokota@netlab.is.tsukuba.ac.jp |
| 4181 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
| 4182 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4183 | F: Documentation/scsi/NinjaSCSI.txt |
| 4184 | F: drivers/scsi/nsp32* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4185 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4186 | NTFS FILESYSTEM |
| 4187 | P: Anton Altaparmakov |
| 4188 | M: aia21@cantab.net |
| 4189 | L: linux-ntfs-dev@lists.sourceforge.net |
| 4190 | L: linux-kernel@vger.kernel.org |
Adrian Bunk | 169ccbd | 2008-09-02 14:35:37 -0700 | [diff] [blame] | 4191 | W: http://www.linux-ntfs.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4192 | 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] | 4193 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4194 | F: Documentation/filesystems/ntfs.txt |
| 4195 | F: fs/ntfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4196 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 4197 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4198 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 4199 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 4200 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4201 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4202 | F: drivers/video/riva/ |
| 4203 | F: drivers/video/nvidia/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4204 | |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 4205 | OMAP SUPPORT |
| 4206 | P: Tony Lindgren <tony@atomide.com> |
| 4207 | M: tony@atomide.com |
| 4208 | L: linux-omap@vger.kernel.org |
| 4209 | W: http://www.muru.com/linux/omap/ |
| 4210 | W: http://linux.omap.com/ |
| 4211 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git |
| 4212 | S: Maintained |
| 4213 | F: arch/arm/*omap* |
| 4214 | |
| 4215 | OMAP CLOCK FRAMEWORK SUPPORT |
| 4216 | P: Paul Walmsley |
| 4217 | M: paul@pwsan.com |
| 4218 | L: linux-omap@vger.kernel.org |
| 4219 | S: Maintained |
| 4220 | F: arch/arm/*omap*/*clock* |
| 4221 | |
| 4222 | OMAP POWER MANAGEMENT SUPPORT |
| 4223 | P: Kevin Hilman |
| 4224 | M: khilman@deeprootsystems.com |
| 4225 | L: linux-omap@vger.kernel.org |
| 4226 | S: Maintained |
| 4227 | F: arch/arm/*omap*/*pm* |
| 4228 | |
| 4229 | OMAP AUDIO SUPPORT |
| 4230 | P: Jarkko Nikula |
| 4231 | M: jhnikula@gmail.com |
| 4232 | L: alsa-devel@alsa-project.org (subscribers-only) |
| 4233 | L: linux-omap@vger.kernel.org |
| 4234 | S: Maintained |
| 4235 | F: sound/soc/omap/ |
| 4236 | |
| 4237 | OMAP FRAMEBUFFER SUPPORT |
| 4238 | P: Imre Deak |
| 4239 | M: imre.deak@nokia.com |
| 4240 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 4241 | L: linux-omap@vger.kernel.org |
| 4242 | S: Maintained |
| 4243 | F: drivers/video/omap/ |
| 4244 | |
| 4245 | OMAP MMC SUPPORT |
| 4246 | P: Jarkko Lavinen |
| 4247 | M: jarkko.lavinen@nokia.com |
| 4248 | L: linux-kernel@vger.kernel.org |
| 4249 | L: linux-omap@vger.kernel.org |
| 4250 | S: Maintained |
| 4251 | F: drivers/mmc/host/*omap* |
| 4252 | |
| 4253 | OMAP RANDOM NUMBER GENERATOR SUPPORT |
| 4254 | P: Deepak Saxena |
| 4255 | M: dsaxena@plexity.net |
| 4256 | S: Maintained |
| 4257 | F: drivers/char/hw_random/omap-rng.c |
| 4258 | |
| 4259 | OMAP USB SUPPORT |
| 4260 | P: Felipe Balbi |
| 4261 | M: felipe.balbi@nokia.com |
| 4262 | P: David Brownell |
| 4263 | M: dbrownell@users.sourceforge.net |
| 4264 | L: linux-usb@vger.kernel.org |
| 4265 | L: linux-omap@vger.kernel.org |
| 4266 | S: Maintained |
| 4267 | |
Bob Copeland | 0ad122d | 2008-07-25 19:45:18 -0700 | [diff] [blame] | 4268 | OMFS FILESYSTEM |
| 4269 | P: Bob Copeland |
| 4270 | M: me@bobcopeland.com |
| 4271 | L: linux-karma-devel@lists.sourceforge.net |
| 4272 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4273 | F: Documentation/filesystems/omfs.txt |
| 4274 | F: fs/omfs/ |
Bob Copeland | 0ad122d | 2008-07-25 19:45:18 -0700 | [diff] [blame] | 4275 | |
Harald Welte | c1986ee | 2005-11-13 16:06:29 -0800 | [diff] [blame] | 4276 | OMNIKEY CARDMAN 4000 DRIVER |
| 4277 | P: Harald Welte |
| 4278 | M: laforge@gnumonks.org |
| 4279 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4280 | F: drivers/char/pcmcia/cm4000_cs.c |
| 4281 | F: include/linux/cm4000_cs.h |
Harald Welte | c1986ee | 2005-11-13 16:06:29 -0800 | [diff] [blame] | 4282 | |
Harald Welte | 77c44ab | 2005-11-13 16:06:26 -0800 | [diff] [blame] | 4283 | OMNIKEY CARDMAN 4040 DRIVER |
| 4284 | P: Harald Welte |
| 4285 | M: laforge@gnumonks.org |
| 4286 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4287 | F: drivers/char/pcmcia/cm4040_cs.* |
Harald Welte | 77c44ab | 2005-11-13 16:06:26 -0800 | [diff] [blame] | 4288 | |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 4289 | OMNIVISION OV7670 SENSOR DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 4290 | P: Jonathan Corbet |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 4291 | M: corbet@lwn.net |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 4292 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4293 | 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] | 4294 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4295 | F: drivers/media/video/ov7670.c |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 4296 | |
Thomas Gleixner | 431bca7 | 2007-05-02 09:31:35 +0200 | [diff] [blame] | 4297 | ONENAND FLASH DRIVER |
| 4298 | P: Kyungmin Park |
| 4299 | M: kyungmin.park@samsung.com |
| 4300 | L: linux-mtd@lists.infradead.org |
| 4301 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4302 | F: drivers/mtd/onenand/ |
| 4303 | F: include/linux/mtd/onenand*.h |
Thomas Gleixner | 431bca7 | 2007-05-02 09:31:35 +0200 | [diff] [blame] | 4304 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4305 | ONSTREAM SCSI TAPE DRIVER |
| 4306 | P: Willem Riede |
| 4307 | M: osst@riede.org |
| 4308 | L: osst-users@lists.sourceforge.net |
| 4309 | L: linux-scsi@vger.kernel.org |
| 4310 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4311 | F: drivers/scsi/osst* |
| 4312 | F: drivers/scsi/st* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4313 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4314 | OPENCORES I2C BUS DRIVER |
| 4315 | P: Peter Korsgaard |
| 4316 | M: jacmet@sunsite.dk |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 4317 | L: linux-i2c@vger.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4318 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4319 | F: Documentation/i2c/busses/i2c-ocores |
| 4320 | F: drivers/i2c/busses/i2c-ocores.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4321 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4322 | OPROFILE |
Robert Richter | d1a5d19 | 2008-07-12 13:47:57 -0700 | [diff] [blame] | 4323 | P: Robert Richter |
| 4324 | M: robert.richter@amd.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4325 | L: oprofile-list@lists.sf.net |
| 4326 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4327 | F: arch/*/oprofile/ |
| 4328 | F: drivers/oprofile/ |
| 4329 | F: include/linux/oprofile.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4330 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4331 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
| 4332 | P: Mark Fasheh |
| 4333 | M: mfasheh@suse.com |
| 4334 | P: Joel Becker |
| 4335 | M: joel.becker@oracle.com |
| 4336 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
| 4337 | W: http://oss.oracle.com/projects/ocfs2/ |
Joel Becker | 2191aeb | 2009-04-17 15:58:50 -0700 | [diff] [blame] | 4338 | 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] | 4339 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4340 | F: Documentation/filesystems/ocfs2.txt |
| 4341 | F: Documentation/filesystems/dlmfs.txt |
| 4342 | F: fs/ocfs2/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4343 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4344 | ORINOCO DRIVER |
| 4345 | P: Pavel Roskin |
| 4346 | M: proski@gnu.org |
| 4347 | P: David Gibson |
| 4348 | M: hermes@gibson.dropbear.id.au |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 4349 | L: linux-wireless@vger.kernel.org |
Pavel Roskin | ecffdde | 2005-05-05 16:16:01 -0700 | [diff] [blame] | 4350 | L: orinoco-users@lists.sourceforge.net |
| 4351 | L: orinoco-devel@lists.sourceforge.net |
| 4352 | W: http://www.nongnu.org/orinoco/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4353 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4354 | F: drivers/net/wireless/orinoco/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4355 | |
Boaz Harrosh | 6827479 | 2009-01-25 17:24:14 +0200 | [diff] [blame] | 4356 | OSD LIBRARY |
| 4357 | P: Boaz Harrosh |
| 4358 | M: bharrosh@panasas.com |
| 4359 | P: Benny Halevy |
| 4360 | M: bhalevy@panasas.com |
| 4361 | L: osd-dev@open-osd.org |
| 4362 | W: http://open-osd.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4363 | T: git git://git.open-osd.org/open-osd.git |
Boaz Harrosh | 6827479 | 2009-01-25 17:24:14 +0200 | [diff] [blame] | 4364 | S: Maintained |
| 4365 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4366 | P54 WIRELESS DRIVER |
| 4367 | P: Michael Wu |
| 4368 | M: flamingice@sourmilk.net |
| 4369 | L: linux-wireless@vger.kernel.org |
| 4370 | W: http://prism54.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4371 | 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] | 4372 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4373 | F: drivers/net/wireless/p54/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4374 | |
Olof Johansson | f5cd787 | 2007-01-31 21:43:54 -0600 | [diff] [blame] | 4375 | PA SEMI ETHERNET DRIVER |
| 4376 | P: Olof Johansson |
| 4377 | M: olof@lixom.net |
| 4378 | L: netdev@vger.kernel.org |
| 4379 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4380 | F: drivers/net/pasemi_mac.* |
Olof Johansson | f5cd787 | 2007-01-31 21:43:54 -0600 | [diff] [blame] | 4381 | |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 4382 | PA SEMI SMBUS DRIVER |
| 4383 | P: Olof Johansson |
| 4384 | M: olof@lixom.net |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 4385 | L: linux-i2c@vger.kernel.org |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 4386 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4387 | F: drivers/i2c/busses/i2c-pasemi.c |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 4388 | |
Harald Welte | 709ee53 | 2008-09-23 17:46:57 +0200 | [diff] [blame] | 4389 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
| 4390 | P: Harald Welte |
| 4391 | M: laforge@gnumonks.org |
| 4392 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4393 | F: drivers/platform/x86/panasonic-laptop.c |
Harald Welte | 709ee53 | 2008-09-23 17:46:57 +0200 | [diff] [blame] | 4394 | |
David Howells | 4fa9718 | 2008-10-13 10:42:44 +0100 | [diff] [blame] | 4395 | PANASONIC MN10300/AM33 PORT |
| 4396 | P: David Howells |
| 4397 | M: dhowells@redhat.com |
| 4398 | P: Koichi Yasutake |
| 4399 | M: yasutake.koichi@jp.panasonic.com |
| 4400 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
| 4401 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ |
| 4402 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4403 | F: Documentation/mn10300/ |
| 4404 | F: arch/mn10300/ |
David Howells | 4fa9718 | 2008-10-13 10:42:44 +0100 | [diff] [blame] | 4405 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4406 | PARALLEL PORT SUPPORT |
Randy Dunlap | 3dd1a32 | 2007-05-16 22:11:12 -0700 | [diff] [blame] | 4407 | L: linux-parport@lists.infradead.org (subscribers-only) |
David Brownell | 5fdc2ab | 2007-03-05 00:30:13 -0800 | [diff] [blame] | 4408 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4409 | F: drivers/parport/ |
| 4410 | F: include/linux/parport*.h |
| 4411 | F: drivers/char/ppdev.c |
| 4412 | F: include/linux/ppdev.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4413 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4414 | PARAVIRT_OPS INTERFACE |
| 4415 | P: Jeremy Fitzhardinge |
| 4416 | M: jeremy@xensource.com |
| 4417 | P: Chris Wright |
| 4418 | M: chrisw@sous-sol.org |
Zachary Amsden | 8cbb5bc | 2009-02-20 11:27:46 -0800 | [diff] [blame] | 4419 | P: Alok Kataria |
| 4420 | M: akataria@vmware.com |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4421 | P: Rusty Russell |
| 4422 | M: rusty@rustcorp.com.au |
| 4423 | L: virtualization@lists.osdl.org |
| 4424 | L: linux-kernel@vger.kernel.org |
| 4425 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4426 | F: Documentation/ia64/paravirt_ops.txt |
| 4427 | F: arch/*/kernel/paravirt* |
| 4428 | F: arch/*/include/asm/paravirt.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4429 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4430 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
| 4431 | P: Tim Waugh |
| 4432 | M: tim@cyberelk.net |
Randy Dunlap | 3dd1a32 | 2007-05-16 22:11:12 -0700 | [diff] [blame] | 4433 | L: linux-parport@lists.infradead.org (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4434 | W: http://www.torque.net/linux-pp.html |
| 4435 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4436 | F: Documentation/blockdev/paride.txt |
| 4437 | F: drivers/block/paride/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4438 | |
| 4439 | PARISC ARCHITECTURE |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 4440 | P: Kyle McMartin |
Kyle McMartin | 42a5a8a | 2008-06-06 17:16:17 -0400 | [diff] [blame] | 4441 | M: kyle@mcmartin.ca |
Grant Grundler | 76346119 | 2008-12-01 00:21:35 -0700 | [diff] [blame] | 4442 | P: Helge Deller |
| 4443 | M: deller@gmx.de |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 4444 | L: linux-parisc@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4445 | W: http://www.parisc-linux.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4446 | 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] | 4447 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4448 | F: arch/parisc/ |
| 4449 | F: drivers/parisc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4450 | |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 4451 | PC87360 HARDWARE MONITORING DRIVER |
| 4452 | P: Jim Cromie |
| 4453 | M: jim.cromie@gmail.com |
| 4454 | L: lm-sensors@lm-sensors.org |
| 4455 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4456 | F: Documentation/hwmon/pc87360 |
| 4457 | F: drivers/hwmon/pc87360.c |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 4458 | |
| 4459 | PC8736x GPIO DRIVER |
| 4460 | P: Jim Cromie |
| 4461 | M: jim.cromie@gmail.com |
| 4462 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4463 | F: drivers/char/pc8736x_gpio.c |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 4464 | |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 4465 | PCA9532 LED DRIVER |
| 4466 | P: Riku Voipio |
| 4467 | M: riku.voipio@iki.fi |
| 4468 | S: Maintained |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 4469 | F: drivers/leds/leds-pca9532.c |
| 4470 | F: include/linux/leds-pca9532.h |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 4471 | |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 4472 | PCI ERROR RECOVERY |
| 4473 | P: Linas Vepstas |
| 4474 | M: linas@austin.ibm.com |
| 4475 | L: linux-kernel@vger.kernel.org |
Jesse Barnes | c1f69db | 2008-05-19 15:28:16 -0700 | [diff] [blame] | 4476 | L: linux-pci@vger.kernel.org |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 4477 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4478 | F: Documentation/PCI/pci-error-recovery.txt |
| 4479 | F: Documentation/powerpc/eeh-pci-error-recovery.txt |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 4480 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4481 | PCI SUBSYSTEM |
Greg Kroah-Hartman | af40b48 | 2008-04-17 10:22:27 -0700 | [diff] [blame] | 4482 | P: Jesse Barnes |
| 4483 | M: jbarnes@virtuousgeek.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4484 | L: linux-kernel@vger.kernel.org |
Jesse Barnes | 2905474 | 2008-05-03 08:35:49 -0700 | [diff] [blame] | 4485 | L: linux-pci@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4486 | 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] | 4487 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4488 | F: Documentation/PCI/ |
| 4489 | F: drivers/pci/ |
| 4490 | F: include/linux/pci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4491 | |
Kristen Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 4492 | PCIE HOTPLUG DRIVER |
| 4493 | P: Kristen Carlson Accardi |
| 4494 | M: kristen.c.accardi@intel.com |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 4495 | L: linux-pci@vger.kernel.org |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 4496 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4497 | F: drivers/pci/pcie/ |
Kristen Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 4498 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4499 | PCMCIA SUBSYSTEM |
Dominik Brodowski | 4230dfc | 2005-07-07 17:59:06 -0700 | [diff] [blame] | 4500 | P: Linux PCMCIA Team |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 4501 | L: linux-pcmcia@lists.infradead.org |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 4502 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4503 | 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] | 4504 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4505 | F: Documentation/pcmcia/ |
| 4506 | F: drivers/pcmcia/ |
| 4507 | F: include/pcmcia/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4508 | |
| 4509 | PCNET32 NETWORK DRIVER |
pcnet32@verizon.net | 04ce094 | 2007-02-16 10:07:12 -0600 | [diff] [blame] | 4510 | P: Don Fry |
| 4511 | M: pcnet32@verizon.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 4512 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4513 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4514 | F: drivers/net/pcnet32.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4515 | |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 4516 | PER-TASK DELAY ACCOUNTING |
Balbir Singh | abc5f23 | 2008-07-04 09:59:42 -0700 | [diff] [blame] | 4517 | P: Balbir Singh |
| 4518 | M: balbir@linux.vnet.ibm.com |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 4519 | L: linux-kernel@vger.kernel.org |
| 4520 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4521 | F: include/linux/delayacct.h |
| 4522 | F: kernel/delayacct.c |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 4523 | |
Paul Mackerras | 6c0b324 | 2009-04-09 09:27:37 +1000 | [diff] [blame] | 4524 | PERFORMANCE COUNTER SUBSYSTEM |
| 4525 | P: Peter Zijlstra |
| 4526 | M: a.p.zijlstra@chello.nl |
| 4527 | P: Paul Mackerras |
| 4528 | M: paulus@samba.org |
| 4529 | P: Ingo Molnar |
| 4530 | M: mingo@elte.hu |
| 4531 | L: linux-kernel@vger.kernel.org |
| 4532 | S: Supported |
| 4533 | |
Jim Cromie | dd49d0f | 2006-03-24 18:08:17 +0100 | [diff] [blame] | 4534 | PERSONALITY HANDLING |
| 4535 | P: Christoph Hellwig |
| 4536 | M: hch@infradead.org |
| 4537 | L: linux-abi-devel@lists.sourceforge.net |
| 4538 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4539 | F: include/linux/personality.h |
Jim Cromie | dd49d0f | 2006-03-24 18:08:17 +0100 | [diff] [blame] | 4540 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4541 | PHRAM MTD DRIVER |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 4542 | P: Joern Engel |
| 4543 | M: joern@lazybastard.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4544 | L: linux-mtd@lists.infradead.org |
| 4545 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4546 | F: drivers/mtd/devices/phram.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4547 | |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 4548 | PKTCDVD DRIVER |
| 4549 | P: Peter Osterlund |
| 4550 | M: petero2@telia.com |
| 4551 | L: linux-kernel@vger.kernel.org |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 4552 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4553 | F: drivers/block/pktcdvd.c |
| 4554 | F: include/linux/pktcdvd.h |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 4555 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4556 | POSIX CLOCKS and TIMERS |
Ingo Molnar | aa781ae | 2007-07-19 01:48:32 -0700 | [diff] [blame] | 4557 | P: Thomas Gleixner |
| 4558 | M: tglx@linutronix.de |
Horms | f1c3ddf | 2006-01-15 02:18:28 +0100 | [diff] [blame] | 4559 | L: linux-kernel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4560 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4561 | F: fs/timerfd.c |
| 4562 | F: include/linux/timer* |
| 4563 | F: kernel/*timer* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4564 | |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 4565 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
| 4566 | P: Anton Vorontsov |
| 4567 | M: cbou@mail.ru |
| 4568 | P: David Woodhouse |
| 4569 | M: dwmw2@infradead.org |
| 4570 | L: linux-kernel@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4571 | T: git git://git.infradead.org/battery-2.6.git |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 4572 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4573 | F: include/linux/power_supply.h |
| 4574 | F: drivers/power/power_supply* |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 4575 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4576 | PNP SUPPORT |
| 4577 | P: Adam Belay |
Bjorn Helgaas | 2d59f6a | 2008-08-01 10:01:12 -0600 | [diff] [blame] | 4578 | M: abelay@mit.edu |
| 4579 | P: Bjorn Helgaas |
| 4580 | M: bjorn.helgaas@hp.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4581 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4582 | F: drivers/pnp/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4583 | |
Vitaly Wool | 999445d | 2007-01-04 13:07:03 +0100 | [diff] [blame] | 4584 | PNXxxxx I2C DRIVER |
| 4585 | P: Vitaly Wool |
| 4586 | M: vitalywool@gmail.com |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 4587 | L: linux-i2c@vger.kernel.org |
Vitaly Wool | 999445d | 2007-01-04 13:07:03 +0100 | [diff] [blame] | 4588 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4589 | F: drivers/i2c/busses/i2c-pnx.c |
Vitaly Wool | 999445d | 2007-01-04 13:07:03 +0100 | [diff] [blame] | 4590 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4591 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
| 4592 | P: Paul Mackerras |
| 4593 | M: paulus@samba.org |
| 4594 | L: linux-ppp@vger.kernel.org |
| 4595 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4596 | F: drivers/net/ppp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4597 | |
| 4598 | PPP OVER ATM (RFC 2364) |
| 4599 | P: Mitchell Blank Jr |
| 4600 | M: mitch@sfgoth.com |
| 4601 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4602 | F: net/atm/pppoatm.c |
| 4603 | F: include/linux/atmppp.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4604 | |
| 4605 | PPP OVER ETHERNET |
| 4606 | P: Michal Ostrowski |
Chris Wright | 5e70b7f | 2008-06-09 16:07:28 -0700 | [diff] [blame] | 4607 | M: mostrows@earthlink.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4608 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4609 | F: drivers/net/pppoe.c |
| 4610 | F: drivers/net/pppox.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4611 | |
James Chapman | a6d2370 | 2007-06-27 15:53:17 -0700 | [diff] [blame] | 4612 | PPP OVER L2TP |
| 4613 | P: James Chapman |
| 4614 | M: jchapman@katalix.com |
| 4615 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4616 | F: drivers/net/pppol2tp.c |
| 4617 | F: include/linux/if_pppol2tp.h |
James Chapman | a6d2370 | 2007-06-27 15:53:17 -0700 | [diff] [blame] | 4618 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4619 | PREEMPTIBLE KERNEL |
| 4620 | P: Robert Love |
| 4621 | M: rml@tech9.net |
| 4622 | L: linux-kernel@vger.kernel.org |
| 4623 | L: kpreempt-tech@lists.sourceforge.net |
| 4624 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel |
| 4625 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4626 | F: Documentation/preempt-locking.txt |
| 4627 | F: include/linux/preempt.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4628 | |
| 4629 | PRISM54 WIRELESS DRIVER |
Luis R. Rodriguez | e88b34b | 2007-06-01 00:46:57 -0700 | [diff] [blame] | 4630 | P: Luis R. Rodriguez |
| 4631 | M: mcgrof@gmail.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 4632 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4633 | W: http://prism54.org |
| 4634 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4635 | F: drivers/net/wireless/prism54/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4636 | |
| 4637 | PROMISE DC4030 CACHING DISK CONTROLLER DRIVER |
| 4638 | P: Peter Denison |
| 4639 | M: promise@pnd-pc.demon.co.uk |
| 4640 | W: http://www.pnd-pc.demon.co.uk/promise/ |
| 4641 | S: Maintained |
| 4642 | |
Mikael Pettersson | b3277df | 2007-01-10 09:33:53 +0100 | [diff] [blame] | 4643 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
| 4644 | P: Mikael Pettersson |
| 4645 | M: mikpe@it.uu.se |
| 4646 | L: linux-ide@vger.kernel.org |
| 4647 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4648 | F: drivers/ata/sata_promise.* |
Mikael Pettersson | b3277df | 2007-01-10 09:33:53 +0100 | [diff] [blame] | 4649 | |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 4650 | PS3 NETWORK SUPPORT |
Masakazu Mokuno | ae3d246 | 2009-03-30 11:04:04 -0700 | [diff] [blame] | 4651 | P: Geoff Levand |
| 4652 | M: geoffrey.levand@am.sony.com |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 4653 | L: netdev@vger.kernel.org |
| 4654 | L: cbe-oss-dev@ozlabs.org |
| 4655 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4656 | F: drivers/net/ps3_gelic_net.* |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 4657 | |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 4658 | PS3 PLATFORM SUPPORT |
| 4659 | P: Geoff Levand |
| 4660 | M: geoffrey.levand@am.sony.com |
| 4661 | L: linuxppc-dev@ozlabs.org |
| 4662 | L: cbe-oss-dev@ozlabs.org |
| 4663 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4664 | F: arch/powerpc/boot/ps3* |
| 4665 | F: arch/powerpc/include/asm/lv1call.h |
| 4666 | F: arch/powerpc/include/asm/ps3*.h |
| 4667 | F: arch/powerpc/platforms/ps3/ |
| 4668 | F: drivers/*/ps3* |
| 4669 | F: drivers/ps3/ |
Geoff Levand | fec629b | 2009-04-16 09:05:40 +0000 | [diff] [blame] | 4670 | F: drivers/rtc/rtc-ps3.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4671 | F: drivers/usb/host/*ps3.c |
Geoff Levand | fec629b | 2009-04-16 09:05:40 +0000 | [diff] [blame] | 4672 | F: sound/ppc/snd_ps3* |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 4673 | |
Jim Paris | cffb4add | 2009-01-06 11:32:10 +0000 | [diff] [blame] | 4674 | PS3VRAM DRIVER |
| 4675 | P: Jim Paris |
| 4676 | M: jim@jtan.com |
| 4677 | L: cbe-oss-dev@ozlabs.org |
| 4678 | S: Maintained |
| 4679 | |
Christoph Hellwig | cf94a4d | 2009-04-30 15:08:12 -0700 | [diff] [blame] | 4680 | PTRACE SUPPORT |
| 4681 | P: Roland McGrath |
| 4682 | M: roland@redhat.com |
| 4683 | P: Oleg Nesterov |
| 4684 | M: oleg@redhat.com |
| 4685 | L: linux-kernel@vger.kernel.org |
| 4686 | S: Maintained |
| 4687 | F: include/asm-generic/syscall.h |
| 4688 | F: include/linux/ptrace.h |
| 4689 | F: include/linux/regset.h |
| 4690 | F: include/linux/tracehook.h |
| 4691 | F: kernel/ptrace.c |
| 4692 | |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 4693 | PVRUSB2 VIDEO4LINUX DRIVER |
| 4694 | P: Mike Isely |
| 4695 | M: isely@pobox.com |
Mike Isely | 16e9495 | 2007-01-03 18:08:06 -0300 | [diff] [blame] | 4696 | L: pvrusb2@isely.net (subscribers-only) |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 4697 | L: linux-media@vger.kernel.org |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 4698 | W: http://www.isely.net/pvrusb2/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4699 | 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] | 4700 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4701 | F: Documentation/video4linux/README.pvrusb2 |
| 4702 | F: drivers/media/video/pvrusb2/ |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 4703 | |
Eric Miao | 30ec261 | 2008-06-12 15:21:41 -0700 | [diff] [blame] | 4704 | PXA2xx/PXA3xx SUPPORT |
| 4705 | P: Eric Miao |
Eric Miao | 7517b3f | 2009-06-13 00:10:17 +0800 | [diff] [blame] | 4706 | M: eric.y.miao@gmail.com |
Eric Miao | 30ec261 | 2008-06-12 15:21:41 -0700 | [diff] [blame] | 4707 | P: Russell King |
| 4708 | M: linux@arm.linux.org.uk |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 4709 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4710 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4711 | F: arch/arm/mach-pxa/ |
| 4712 | F: drivers/pcmcia/pxa2xx* |
| 4713 | F: drivers/spi/pxa2xx* |
| 4714 | F: drivers/usb/gadget/pxa2* |
| 4715 | F: include/sound/pxa2xx-lib.h |
Mark Brown | bec4c99 | 2009-05-06 10:36:34 +0100 | [diff] [blame] | 4716 | F: sound/arm/pxa* |
| 4717 | F: sound/soc/pxa |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4718 | |
Eric Miao | a6bb4ba | 2009-02-19 21:13:21 +0800 | [diff] [blame] | 4719 | PXA168 SUPPORT |
| 4720 | P: Eric Miao |
Eric Miao | 7517b3f | 2009-06-13 00:10:17 +0800 | [diff] [blame] | 4721 | M: eric.y.miao@gmail.com |
Eric Miao | a6bb4ba | 2009-02-19 21:13:21 +0800 | [diff] [blame] | 4722 | P: Jason Chagas |
| 4723 | M: jason.chagas@marvell.com |
| 4724 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4725 | 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] | 4726 | S: Maintained |
Eric Miao | a6bb4ba | 2009-02-19 21:13:21 +0800 | [diff] [blame] | 4727 | |
Eric Miao | 5fa82eb | 2009-03-20 12:52:24 +0800 | [diff] [blame] | 4728 | PXA910 SUPPORT |
| 4729 | P: Eric Miao |
Eric Miao | 7517b3f | 2009-06-13 00:10:17 +0800 | [diff] [blame] | 4730 | M: eric.y.miao@gmail.com |
Eric Miao | 5fa82eb | 2009-03-20 12:52:24 +0800 | [diff] [blame] | 4731 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4732 | 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] | 4733 | S: Maintained |
Eric Miao | 5fa82eb | 2009-03-20 12:52:24 +0800 | [diff] [blame] | 4734 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 4735 | PXA MMCI DRIVER |
| 4736 | S: Orphan |
| 4737 | |
Robert Jarzmik | 57f63bc | 2009-02-11 13:04:19 -0800 | [diff] [blame] | 4738 | PXA RTC DRIVER |
| 4739 | P: Robert Jarzmik |
| 4740 | M: robert.jarzmik@free.fr |
| 4741 | L: rtc-linux@googlegroups.com |
| 4742 | S: Maintained |
| 4743 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4744 | QLOGIC QLA2XXX FC-SCSI DRIVER |
| 4745 | P: Andrew Vasquez |
Andrew Vasquez | 95e6a85 | 2006-03-14 14:41:04 -0800 | [diff] [blame] | 4746 | M: linux-driver@qlogic.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4747 | L: linux-scsi@vger.kernel.org |
| 4748 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4749 | F: Documentation/scsi/LICENSE.qla2xxx |
| 4750 | F: drivers/scsi/qla2xxx/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4751 | |
Ron Mercer | 5a4faa8 | 2006-07-25 00:40:21 -0700 | [diff] [blame] | 4752 | QLOGIC QLA3XXX NETWORK DRIVER |
| 4753 | P: Ron Mercer |
| 4754 | M: linux-driver@qlogic.com |
| 4755 | L: netdev@vger.kernel.org |
| 4756 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4757 | F: Documentation/networking/LICENSE.qla3xxx |
| 4758 | F: drivers/net/qla3xxx.* |
Ron Mercer | 5a4faa8 | 2006-07-25 00:40:21 -0700 | [diff] [blame] | 4759 | |
Ron Mercer | c4e84bd | 2008-09-18 11:56:28 -0400 | [diff] [blame] | 4760 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
| 4761 | P: Ron Mercer |
| 4762 | M: linux-driver@qlogic.com |
| 4763 | M: ron.mercer@qlogic.com |
| 4764 | L: netdev@vger.kernel.org |
| 4765 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4766 | F: drivers/net/qlge/ |
Ron Mercer | c4e84bd | 2008-09-18 11:56:28 -0400 | [diff] [blame] | 4767 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4768 | QNX4 FILESYSTEM |
| 4769 | P: Anders Larsen |
| 4770 | M: al@alarsen.net |
| 4771 | L: linux-kernel@vger.kernel.org |
| 4772 | W: http://www.alarsen.net/linux/qnx4fs/ |
| 4773 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 4774 | F: fs/qnx4/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4775 | F: include/linux/qnx4_fs.h |
| 4776 | F: include/linux/qnxtypes.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4777 | |
| 4778 | RADEON FRAMEBUFFER DISPLAY DRIVER |
Benjamin Herrenschmidt | 187a278 | 2005-04-16 15:26:40 -0700 | [diff] [blame] | 4779 | P: Benjamin Herrenschmidt |
| 4780 | M: benh@kernel.crashing.org |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 4781 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4782 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4783 | F: drivers/video/aty/radeon* |
| 4784 | F: include/linux/radeonfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4785 | |
| 4786 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
Benjamin Herrenschmidt | 187a278 | 2005-04-16 15:26:40 -0700 | [diff] [blame] | 4787 | P: Paul Mackerras |
| 4788 | M: paulus@samba.org |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 4789 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4790 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4791 | F: drivers/video/aty/aty128fb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4792 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 4793 | RALINK RT2X00 WIRELESS LAN DRIVER |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 4794 | P: rt2x00 project |
| 4795 | L: linux-wireless@vger.kernel.org |
Ivo van Doorn | 6d5eaaf | 2009-03-17 11:29:19 +0100 | [diff] [blame] | 4796 | L: users@rt2x00.serialmonkey.com |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 4797 | W: http://rt2x00.serialmonkey.com/ |
| 4798 | S: Maintained |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4799 | 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] | 4800 | F: drivers/net/wireless/rt2x00/ |
| 4801 | |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 4802 | RAMDISK RAM BLOCK DEVICE DRIVER |
| 4803 | P: Nick Piggin |
| 4804 | M: npiggin@suse.de |
| 4805 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4806 | F: Documentation/blockdev/ramdisk.txt |
| 4807 | F: drivers/block/brd.c |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 4808 | |
Matt Mackall | 9e95ce2 | 2005-04-16 15:25:56 -0700 | [diff] [blame] | 4809 | RANDOM NUMBER DRIVER |
| 4810 | P: Matt Mackall |
| 4811 | M: mpm@selenic.com |
| 4812 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4813 | F: drivers/char/random.c |
Matt Mackall | 9e95ce2 | 2005-04-16 15:25:56 -0700 | [diff] [blame] | 4814 | |
Matt Porter | 394b701 | 2005-11-07 01:00:15 -0800 | [diff] [blame] | 4815 | RAPIDIO SUBSYSTEM |
| 4816 | P: Matt Porter |
| 4817 | M: mporter@kernel.crashing.org |
| 4818 | L: linux-kernel@vger.kernel.org |
| 4819 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4820 | F: drivers/rapidio/ |
Matt Porter | 394b701 | 2005-11-07 01:00:15 -0800 | [diff] [blame] | 4821 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4822 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
| 4823 | P: Corey Thomas |
| 4824 | M: coreythomas@charter.net |
| 4825 | L: linux-wireless@vger.kernel.org |
| 4826 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4827 | F: drivers/net/wireless/ray* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4828 | |
| 4829 | RCUTORTURE MODULE |
| 4830 | P: Josh Triplett |
| 4831 | M: josh@freedesktop.org |
| 4832 | L: linux-kernel@vger.kernel.org |
| 4833 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4834 | F: Documentation/RCU/torture.txt |
| 4835 | F: kernel/rcutorture.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4836 | |
Florian Fainelli | c1f766b | 2008-02-06 22:39:44 +0100 | [diff] [blame] | 4837 | RDC R-321X SoC |
| 4838 | P: Florian Fainelli |
Florian Fainelli | 1e50cc9 | 2009-04-30 15:08:10 -0700 | [diff] [blame] | 4839 | M: florian@openwrt.org |
Florian Fainelli | c1f766b | 2008-02-06 22:39:44 +0100 | [diff] [blame] | 4840 | L: linux-kernel@vger.kernel.org |
| 4841 | S: Maintained |
| 4842 | |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 4843 | RDC R6040 FAST ETHERNET DRIVER |
| 4844 | P: Florian Fainelli |
Florian Fainelli | 1e50cc9 | 2009-04-30 15:08:10 -0700 | [diff] [blame] | 4845 | M: florian@openwrt.org |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 4846 | L: netdev@vger.kernel.org |
| 4847 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4848 | F: drivers/net/r6040.c |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 4849 | |
Andy Grover | a09ed66 | 2009-02-24 15:30:41 +0000 | [diff] [blame] | 4850 | RDS - RELIABLE DATAGRAM SOCKETS |
| 4851 | P: Andy Grover |
| 4852 | M: andy.grover@oracle.com |
Kyle McMartin | fbb5a55 | 2009-04-09 14:09:47 +0000 | [diff] [blame] | 4853 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
Andy Grover | a09ed66 | 2009-02-24 15:30:41 +0000 | [diff] [blame] | 4854 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4855 | F: net/rds/ |
Andy Grover | a09ed66 | 2009-02-24 15:30:41 +0000 | [diff] [blame] | 4856 | |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 4857 | READ-COPY UPDATE (RCU) |
| 4858 | P: Dipankar Sarma |
| 4859 | M: dipankar@in.ibm.com |
| 4860 | W: http://www.rdrop.com/users/paulmck/rclock/ |
| 4861 | L: linux-kernel@vger.kernel.org |
| 4862 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4863 | F: Documentation/RCU/rcu.txt |
| 4864 | F: Documentation/RCU/rcuref.txt |
| 4865 | F: include/linux/rcupdate.h |
| 4866 | F: include/linux/srcu.h |
| 4867 | F: kernel/rcupdate.c |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 4868 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4869 | REAL TIME CLOCK DRIVER |
| 4870 | P: Paul Gortmaker |
| 4871 | M: p_gortmaker@yahoo.com |
| 4872 | L: linux-kernel@vger.kernel.org |
| 4873 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4874 | F: Documentation/rtc.txt |
| 4875 | F: drivers/rtc/ |
| 4876 | F: include/linux/rtc.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4877 | |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 4878 | REAL TIME CLOCK (RTC) SUBSYSTEM |
| 4879 | P: Alessandro Zummo |
| 4880 | M: a.zummo@towertech.it |
Alessandro Zummo | 7646549 | 2006-12-10 02:19:06 -0800 | [diff] [blame] | 4881 | L: rtc-linux@googlegroups.com |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 4882 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4883 | F: Documentation/rtc.txt |
| 4884 | F: drivers/rtc/ |
| 4885 | F: include/linux/rtc.h |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 4886 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4887 | REISERFS FILE SYSTEM |
Jeff Mahoney | 76c4e5e | 2007-06-08 13:47:02 -0700 | [diff] [blame] | 4888 | L: reiserfs-devel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4889 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4890 | F: fs/reiserfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4891 | |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 4892 | RFKILL |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 4893 | P: Johannes Berg |
| 4894 | M: johannes@sipsolutions.net |
| 4895 | L: linux-wireless@vger.kernel.org |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 4896 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 4897 | F Documentation/rfkill.txt |
| 4898 | F: net/rfkill/ |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 4899 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4900 | RISCOM8 DRIVER |
| 4901 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4902 | F: Documentation/serial/riscom8.txt |
| 4903 | F: drivers/char/riscom8* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4904 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4905 | ROCKETPORT DRIVER |
| 4906 | P: Comtrol Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4907 | W: http://www.comtrol.com |
| 4908 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4909 | F: Documentation/serial/rocket.txt |
| 4910 | F: drivers/char/rocket* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4911 | |
| 4912 | ROSE NETWORK LAYER |
| 4913 | P: Ralf Baechle |
| 4914 | M: ralf@linux-mips.org |
| 4915 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 4916 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4917 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4918 | F: include/linux/rose.h |
| 4919 | F: include/net/rose.h |
| 4920 | F: net/rose/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4921 | |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 4922 | RTL8180 WIRELESS DRIVER |
John W. Linville | 96dd603 | 2008-11-12 14:51:56 -0500 | [diff] [blame] | 4923 | P: John W. Linville |
| 4924 | M: linville@tuxdriver.com |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 4925 | L: linux-wireless@vger.kernel.org |
| 4926 | W: http://linuxwireless.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4927 | 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] | 4928 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4929 | F: drivers/net/wireless/rtl818* |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 4930 | |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 4931 | RTL8187 WIRELESS DRIVER |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 4932 | P: Herton Ronaldo Krzesinski |
| 4933 | M: herton@mandriva.com.br |
| 4934 | P: Hin-Tak Leung |
| 4935 | M: htl10@users.sourceforge.net |
| 4936 | P: Larry Finger |
| 4937 | M: Larry.Finger@lwfinger.net |
| 4938 | L: linux-wireless@vger.kernel.org |
| 4939 | W: http://linuxwireless.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4940 | 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] | 4941 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4942 | F: drivers/net/wireless/rtl818x/rtl8187* |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 4943 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 4944 | S3 SAVAGE FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4945 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 4946 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 4947 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4948 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4949 | F: drivers/video/savage/ |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 4950 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4951 | S390 |
| 4952 | P: Martin Schwidefsky |
| 4953 | M: schwidefsky@de.ibm.com |
Martin Schwidefsky | 8301425 | 2006-09-20 15:58:58 +0200 | [diff] [blame] | 4954 | P: Heiko Carstens |
| 4955 | M: heiko.carstens@de.ibm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4956 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140cc | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 4957 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4958 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 4959 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4960 | F: arch/s390/ |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4961 | |
| 4962 | S390 NETWORK DRIVERS |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 4963 | P: Ursula Braun |
Ursula Braun | 23fcc8d | 2008-07-18 15:24:58 +0200 | [diff] [blame] | 4964 | M: ursula.braun@de.ibm.com |
Ursula Braun | b9192ad | 2007-10-22 16:16:15 +0200 | [diff] [blame] | 4965 | P: Frank Blaschka |
| 4966 | M: blaschka@linux.vnet.ibm.com |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4967 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140cc | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 4968 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4969 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 4970 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4971 | F: drivers/s390/net/ |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4972 | |
Felix Beck | feed9b6 | 2009-03-26 15:24:23 +0100 | [diff] [blame] | 4973 | S390 ZCRYPT DRIVER |
| 4974 | P: Felix Beck |
| 4975 | M: felix.beck@de.ibm.com |
| 4976 | P: Ralph Wuerthner |
| 4977 | M: ralph.wuerthner@de.ibm.com |
| 4978 | M: linux390@de.ibm.com |
| 4979 | L: linux-s390@vger.kernel.org |
| 4980 | S: Supported |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 4981 | F: drivers/s390/crypto/ |
Felix Beck | feed9b6 | 2009-03-26 15:24:23 +0100 | [diff] [blame] | 4982 | |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4983 | S390 ZFCP DRIVER |
Swen Schillig | 0033bb4 | 2007-12-18 11:16:14 +0100 | [diff] [blame] | 4984 | P: Christof Schmitt |
| 4985 | M: christof.schmitt@de.ibm.com |
| 4986 | P: Martin Peschke |
| 4987 | M: mp3@de.ibm.com |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4988 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140cc | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 4989 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4990 | W: http://www.ibm.com/developerworks/linux/linux390/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4991 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4992 | F: Documentation/s390/zfcpdump.txt |
| 4993 | F: drivers/s390/scsi/zfcp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4994 | |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 4995 | S390 IUCV NETWORK LAYER |
| 4996 | P: Ursula Braun |
Ursula Braun | 23fcc8d | 2008-07-18 15:24:58 +0200 | [diff] [blame] | 4997 | M: ursula.braun@de.ibm.com |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 4998 | M: linux390@de.ibm.com |
| 4999 | L: linux-s390@vger.kernel.org |
| 5000 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 5001 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5002 | F: drivers/s390/net/*iucv* |
| 5003 | F: include/net/iucv/ |
| 5004 | F: net/iucv/ |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 5005 | |
Ben Dooks | 4dde7f7 | 2008-06-30 22:40:38 +0100 | [diff] [blame] | 5006 | S3C24XX SD/MMC Driver |
| 5007 | P: Ben Dooks |
| 5008 | M: ben-linux@fluff.org |
| 5009 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 5010 | L: linux-kernel@vger.kernel.org |
| 5011 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5012 | F: drivers/mmc/host/s3cmci.* |
Ben Dooks | 4dde7f7 | 2008-06-30 22:40:38 +0100 | [diff] [blame] | 5013 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5014 | SAA7146 VIDEO4LINUX-2 DRIVER |
| 5015 | P: Michael Hunold |
| 5016 | M: michael@mihu.de |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 5017 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5018 | 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] | 5019 | W: http://www.mihu.de/linux/saa7146 |
| 5020 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5021 | F: drivers/media/common/saa7146* |
| 5022 | F: drivers/media/video/*7146* |
| 5023 | F: include/media/*7146* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5024 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5025 | SC1200 WDT DRIVER |
| 5026 | P: Zwane Mwaikambo |
Zwane Mwaikambo | 3c7bf1e | 2005-08-18 11:24:07 -0700 | [diff] [blame] | 5027 | M: zwane@arm.linux.org.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5028 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5029 | F: drivers/watchdog/sc1200wdt.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5030 | |
| 5031 | SCHEDULER |
| 5032 | P: Ingo Molnar |
| 5033 | M: mingo@elte.hu |
Ingo Molnar | 01fad98 | 2009-04-08 17:27:59 +0200 | [diff] [blame] | 5034 | P: Peter Zijlstra |
| 5035 | M: peterz@infradead.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5036 | L: linux-kernel@vger.kernel.org |
| 5037 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5038 | F: kernel/sched* |
| 5039 | F: include/linux/sched.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5040 | |
| 5041 | SCSI CDROM DRIVER |
| 5042 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 5043 | M: axboe@kernel.dk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5044 | L: linux-scsi@vger.kernel.org |
| 5045 | W: http://www.kernel.dk |
| 5046 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5047 | F: drivers/scsi/sr* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5048 | |
| 5049 | SCSI SG DRIVER |
| 5050 | P: Doug Gilbert |
| 5051 | M: dgilbert@interlog.com |
| 5052 | L: linux-scsi@vger.kernel.org |
| 5053 | W: http://www.torque.net/sg |
| 5054 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5055 | F: drivers/scsi/sg.c |
| 5056 | F: include/scsi/sg.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5057 | |
| 5058 | SCSI SUBSYSTEM |
| 5059 | P: James E.J. Bottomley |
James Bottomley | c4e1608 | 2007-11-03 08:40:30 -0500 | [diff] [blame] | 5060 | M: James.Bottomley@HansenPartnership.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5061 | L: linux-scsi@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5062 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
| 5063 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git |
| 5064 | 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] | 5065 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5066 | F: drivers/scsi/ |
| 5067 | F: include/scsi/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5068 | |
| 5069 | SCSI TAPE DRIVER |
John Anthony Kazos Jr | dd4ef01 | 2007-05-09 08:06:37 +0200 | [diff] [blame] | 5070 | P: Kai Mäkisara |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5071 | M: Kai.Makisara@kolumbus.fi |
| 5072 | L: linux-scsi@vger.kernel.org |
| 5073 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5074 | F: Documentation/scsi/st.txt |
| 5075 | F: drivers/scsi/st* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5076 | |
| 5077 | SCTP PROTOCOL |
Sridhar Samudrala | 5f85813 | 2007-03-23 11:39:51 -0700 | [diff] [blame] | 5078 | P: Vlad Yasevich |
| 5079 | M: vladislav.yasevich@hp.com |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 5080 | P: Sridhar Samudrala |
| 5081 | M: sri@us.ibm.com |
Vlad Yasevich | 1a41879 | 2008-04-12 18:55:42 -0700 | [diff] [blame] | 5082 | L: linux-sctp@vger.kernel.org |
Sridhar Samudrala | 5f85813 | 2007-03-23 11:39:51 -0700 | [diff] [blame] | 5083 | W: http://lksctp.sourceforge.net |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 5084 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5085 | F: Documentation/networking/sctp.txt |
| 5086 | F: include/linux/sctp.h |
| 5087 | F: include/net/sctp/ |
| 5088 | F: net/sctp/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5089 | |
| 5090 | SCx200 CPU SUPPORT |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 5091 | P: Jim Cromie |
| 5092 | M: jim.cromie@gmail.com |
| 5093 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5094 | F: Documentation/i2c/busses/scx200_acb |
| 5095 | F: arch/x86/kernel/scx200_32.c |
| 5096 | F: drivers/watchdog/scx200_wdt.c |
| 5097 | F: drivers/i2c/busses/scx200* |
| 5098 | F: drivers/mtd/maps/scx200_docflash.c |
| 5099 | F: include/linux/scx200.h |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 5100 | |
| 5101 | SCx200 GPIO DRIVER |
| 5102 | P: Jim Cromie |
| 5103 | M: jim.cromie@gmail.com |
| 5104 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5105 | F: drivers/char/scx200_gpio.c |
| 5106 | F: include/linux/scx200_gpio.h |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 5107 | |
| 5108 | SCx200 HRT CLOCKSOURCE DRIVER |
| 5109 | P: Jim Cromie |
| 5110 | M: jim.cromie@gmail.com |
| 5111 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5112 | F: drivers/clocksource/scx200_hrt.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5113 | |
Sascha Sommer | 6a36913 | 2008-07-15 14:21:29 +0200 | [diff] [blame] | 5114 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
| 5115 | P: Sascha Sommer |
| 5116 | M: saschasommer@freenet.de |
| 5117 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
| 5118 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5119 | F: drivers/mmc/host/sdricoh_cs.c |
Sascha Sommer | 6a36913 | 2008-07-15 14:21:29 +0200 | [diff] [blame] | 5120 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 5121 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5122 | P: Pierre Ossman |
Pierre Ossman | 32710e8 | 2009-04-08 20:14:54 +0200 | [diff] [blame] | 5123 | M: pierre@ossman.eu |
Pierre Ossman | b8e2006 | 2009-03-14 21:17:32 +0100 | [diff] [blame] | 5124 | L: sdhci-devel@lists.ossman.eu |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5125 | S: Maintained |
| 5126 | |
Anton Vorontsov | 3085e9c | 2009-03-17 00:14:05 +0300 | [diff] [blame] | 5127 | SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) |
| 5128 | P: Anton Vorontsov |
| 5129 | M: avorontsov@ru.mvista.com |
| 5130 | L: linuxppc-dev@ozlabs.org |
| 5131 | L: sdhci-devel@lists.ossman.eu |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5132 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5133 | F: drivers/mmc/host/sdhci.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5134 | |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 5135 | SECURITY SUBSYSTEM |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 5136 | P: James Morris |
| 5137 | M: jmorris@namei.org |
| 5138 | L: linux-kernel@vger.kernel.org |
| 5139 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5140 | 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] | 5141 | W: http://security.wiki.kernel.org/ |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 5142 | S: Supported |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 5143 | F: security/ |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 5144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5145 | SECURITY CONTACT |
| 5146 | P: Security Officers |
| 5147 | M: security@kernel.org |
| 5148 | S: Supported |
| 5149 | |
| 5150 | SELINUX SECURITY MODULE |
| 5151 | P: Stephen Smalley |
| 5152 | M: sds@tycho.nsa.gov |
| 5153 | P: James Morris |
| 5154 | M: jmorris@namei.org |
Stephen Smalley | 588a315 | 2007-02-23 09:20:09 -0500 | [diff] [blame] | 5155 | P: Eric Paris |
| 5156 | M: eparis@parisplace.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5157 | L: linux-kernel@vger.kernel.org (kernel issues) |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 5158 | L: selinux@tycho.nsa.gov (subscribers-only, general discussion) |
Stephen Smalley | f058925 | 2008-09-11 09:20:26 -0400 | [diff] [blame] | 5159 | W: http://selinuxproject.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5160 | 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] | 5161 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5162 | F: include/linux/selinux* |
| 5163 | F: security/selinux/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5164 | |
Jiri Slaby | cef2cf0 | 2007-05-08 00:31:45 -0700 | [diff] [blame] | 5165 | SENSABLE PHANTOM |
| 5166 | P: Jiri Slaby |
| 5167 | M: jirislaby@gmail.com |
| 5168 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5169 | F: drivers/misc/phantom.c |
| 5170 | F: include/linux/phantom.h |
Jiri Slaby | cef2cf0 | 2007-05-08 00:31:45 -0700 | [diff] [blame] | 5171 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 5172 | SERIAL ATA (SATA) SUBSYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5173 | P: Jeff Garzik |
| 5174 | M: jgarzik@pobox.com |
| 5175 | L: linux-ide@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5176 | 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] | 5177 | S: Supported |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 5178 | F: drivers/ata/ |
| 5179 | F: include/linux/ata.h |
| 5180 | F: include/linux/libata.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5181 | |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 5182 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
| 5183 | P: Sathya Perla |
| 5184 | M: sathyap@serverengines.com |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 5185 | P: Subbu Seetharaman |
| 5186 | M: subbus@serverengines.com |
| 5187 | L: netdev@vger.kernel.org |
| 5188 | W: http://www.serverengines.com |
| 5189 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5190 | F: drivers/net/benet/ |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 5191 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 5192 | SFC NETWORK DRIVER |
| 5193 | P: Steve Hodgson |
| 5194 | P: Ben Hutchings |
| 5195 | P: Robert Stonehouse |
| 5196 | M: linux-net-drivers@solarflare.com |
| 5197 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5198 | F: drivers/net/sfc/ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 5199 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5200 | SGI GRU DRIVER |
| 5201 | P: Jack Steiner |
| 5202 | M: steiner@sgi.com |
| 5203 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5204 | F: drivers/misc/sgi-gru/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5205 | |
| 5206 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER |
| 5207 | P: Pat Gefre |
| 5208 | M: pfg@sgi.com |
| 5209 | L: linux-ia64@vger.kernel.org |
| 5210 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5211 | F: Documentation/ia64/serial.txt |
| 5212 | F: drivers/serial/ioc?_serial.c |
| 5213 | F: include/linux/ioc?.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5214 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5215 | SGI VISUAL WORKSTATION 320 AND 540 |
| 5216 | P: Andrey Panin |
| 5217 | M: pazke@donpac.ru |
| 5218 | L: linux-visws-devel@lists.sf.net |
| 5219 | W: http://linux-visws.sf.net |
| 5220 | S: Maintained for 2.6. |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5221 | F: Documentation/sgi-visws.txt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5222 | |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 5223 | SGI XP/XPC/XPNET DRIVER |
Robin Holt | a06bba4 | 2009-04-13 14:40:17 -0700 | [diff] [blame] | 5224 | P: Robin Holt |
| 5225 | M: holt@sgi.com |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 5226 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5227 | F: drivers/misc/sgi-xp/ |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 5228 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5229 | SHARP LH SUPPORT (LH7952X & LH7A40X) |
| 5230 | P: Marc Singer |
| 5231 | M: elf@buici.com |
| 5232 | W: http://projects.buici.com/arm |
| 5233 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 5234 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5235 | F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen |
| 5236 | F: arch/arm/mach-lh7a40x/ |
| 5237 | F: drivers/serial/serial_lh7a40x.c |
| 5238 | F: drivers/usb/gadget/lh7a40* |
| 5239 | F: drivers/usb/host/ohci-lh7a40* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5240 | |
| 5241 | SHPC HOTPLUG DRIVER |
| 5242 | P: Kristen Carlson Accardi |
| 5243 | M: kristen.c.accardi@intel.com |
| 5244 | L: linux-pci@vger.kernel.org |
| 5245 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5246 | F: drivers/pci/hotplug/shpchp* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5247 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5248 | SIMTEC EB110ATX (Chalice CATS) |
| 5249 | P: Ben Dooks |
| 5250 | P: Vincent Sanders |
| 5251 | M: support@simtec.co.uk |
| 5252 | W: http://www.simtec.co.uk/products/EB110ATX/ |
| 5253 | S: Supported |
| 5254 | |
| 5255 | SIMTEC EB2410ITX (BAST) |
| 5256 | P: Ben Dooks |
| 5257 | P: Vincent Sanders |
| 5258 | M: support@simtec.co.uk |
| 5259 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
| 5260 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5261 | F: arch/arm/mach-s3c2410/ |
| 5262 | F: drivers/*/*s3c2410* |
| 5263 | F: drivers/*/*/*s3c2410* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5264 | |
Francois Romieu | 92aab3c | 2005-07-30 13:11:18 +0200 | [diff] [blame] | 5265 | SIS 190 ETHERNET DRIVER |
| 5266 | P: Francois Romieu |
| 5267 | M: romieu@fr.zoreil.com |
| 5268 | L: netdev@vger.kernel.org |
| 5269 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5270 | F: drivers/net/sis190.c |
Francois Romieu | 92aab3c | 2005-07-30 13:11:18 +0200 | [diff] [blame] | 5271 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5272 | SIS 900/7016 FAST ETHERNET DRIVER |
| 5273 | P: Daniele Venzano |
| 5274 | M: venza@brownhat.org |
| 5275 | W: http://www.brownhat.org/sis900.html |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 5276 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5277 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5278 | F: drivers/net/sis900.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5279 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5280 | SIS 96X I2C/SMBUS DRIVER |
| 5281 | P: Mark M. Hoffman |
| 5282 | M: mhoffman@lightlink.com |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 5283 | L: linux-i2c@vger.kernel.org |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5284 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5285 | F: Documentation/i2c/busses/i2c-sis96x |
| 5286 | F: drivers/i2c/busses/i2c-sis96x.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5287 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5288 | SIS FRAMEBUFFER DRIVER |
| 5289 | P: Thomas Winischhofer |
| 5290 | M: thomas@winischhofer.net |
| 5291 | W: http://www.winischhofer.net/linuxsisvga.shtml |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 5292 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5293 | F: Documentation/fb/sisfb.txt |
| 5294 | F: drivers/video/sis/ |
| 5295 | F: include/video/sisfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5296 | |
| 5297 | SIS USB2VGA DRIVER |
| 5298 | P: Thomas Winischhofer |
| 5299 | M: thomas@winischhofer.net |
| 5300 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
| 5301 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5302 | F: drivers/usb/misc/sisusbvga/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5303 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5304 | SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS |
| 5305 | P: Stephen Hemminger |
| 5306 | M: shemminger@linux-foundation.org |
| 5307 | L: netdev@vger.kernel.org |
| 5308 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5309 | F: drivers/net/skge.* |
| 5310 | F: drivers/net/sky2.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5311 | |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 5312 | SLAB ALLOCATOR |
| 5313 | P: Christoph Lameter |
Christoph Lameter | cde5353 | 2008-07-04 09:59:22 -0700 | [diff] [blame] | 5314 | M: cl@linux-foundation.org |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 5315 | P: Pekka Enberg |
| 5316 | M: penberg@cs.helsinki.fi |
Pekka Enberg | c76d118 | 2008-02-11 23:52:47 +0200 | [diff] [blame] | 5317 | P: Matt Mackall |
| 5318 | M: mpm@selenic.com |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 5319 | L: linux-mm@kvack.org |
| 5320 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5321 | F: include/linux/sl?b*.h |
| 5322 | F: mm/sl?b.c |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 5323 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5324 | SMC91x ETHERNET DRIVER |
| 5325 | P: Nicolas Pitre |
| 5326 | M: nico@cam.org |
| 5327 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5328 | F: drivers/net/smc91x.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5329 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5330 | SMSC47B397 HARDWARE MONITOR DRIVER |
| 5331 | P: Mark M. Hoffman |
| 5332 | M: mhoffman@lightlink.com |
| 5333 | L: lm-sensors@lm-sensors.org |
| 5334 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5335 | F: Documentation/hwmon/smsc47b397 |
| 5336 | F: drivers/hwmon/smsc47b397.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5337 | |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 5338 | SMSC911x ETHERNET DRIVER |
| 5339 | P: Steve Glendinning |
| 5340 | M: steve.glendinning@smsc.com |
| 5341 | L: netdev@vger.kernel.org |
| 5342 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5343 | F: include/linux/smsc911x.h |
| 5344 | F: drivers/net/smsc911x.* |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 5345 | |
Steve Glendinning | 2cb3772 | 2008-12-11 20:54:30 -0800 | [diff] [blame] | 5346 | SMSC9420 PCI ETHERNET DRIVER |
| 5347 | P: Steve Glendinning |
| 5348 | M: steve.glendinning@smsc.com |
| 5349 | L: netdev@vger.kernel.org |
| 5350 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5351 | F: drivers/net/smsc9420.* |
Steve Glendinning | 2cb3772 | 2008-12-11 20:54:30 -0800 | [diff] [blame] | 5352 | |
Ben Nizette | b54f286 | 2008-03-13 22:27:30 +1100 | [diff] [blame] | 5353 | SMX UIO Interface |
| 5354 | P: Ben Nizette |
| 5355 | M: bn@niasdigital.com |
| 5356 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5357 | F: drivers/uio/uio_smx.c |
Ben Nizette | b54f286 | 2008-03-13 22:27:30 +1100 | [diff] [blame] | 5358 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5359 | SN-IA64 (Itanium) SUB-PLATFORM |
| 5360 | P: Jes Sorensen |
| 5361 | M: jes@sgi.com |
| 5362 | L: linux-altix@sgi.com |
| 5363 | L: linux-ia64@vger.kernel.org |
| 5364 | W: http://www.sgi.com/altix |
| 5365 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5366 | F: arch/ia64/sn/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5367 | |
Guennadi Liakhovetski | 668acf3 | 2008-07-19 07:54:43 -0300 | [diff] [blame] | 5368 | SOC-CAMERA V4L2 SUBSYSTEM |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5369 | P: Guennadi Liakhovetski |
| 5370 | M: g.liakhovetski@gmx.de |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 5371 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5372 | 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] | 5373 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5374 | F: include/media/v4l2* |
| 5375 | F: drivers/media/video/v4l2* |
Guennadi Liakhovetski | 668acf3 | 2008-07-19 07:54:43 -0300 | [diff] [blame] | 5376 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5377 | SOEKRIS NET48XX LED SUPPORT |
| 5378 | P: Chris Boot |
| 5379 | M: bootc@bootc.net |
| 5380 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5381 | F: drivers/leds/leds-net48xx.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5382 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5383 | SOFTWARE RAID (Multiple Disks) SUPPORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5384 | P: Neil Brown |
NeilBrown | 524418b | 2007-01-26 00:57:01 -0800 | [diff] [blame] | 5385 | M: neilb@suse.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5386 | L: linux-raid@vger.kernel.org |
NeilBrown | 524418b | 2007-01-26 00:57:01 -0800 | [diff] [blame] | 5387 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5388 | F: drivers/md/ |
| 5389 | F: include/linux/raid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5390 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5391 | SONIC NETWORK DRIVER |
| 5392 | P: Thomas Bogendoerfer |
| 5393 | M: tsbogend@alpha.franken.de |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 5394 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5395 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5396 | F: drivers/net/sonic.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5397 | |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 5398 | SONICS SILICON BACKPLANE DRIVER (SSB) |
| 5399 | P: Michael Buesch |
| 5400 | M: mb@bu3sch.de |
| 5401 | L: netdev@vger.kernel.org |
| 5402 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5403 | F: drivers/ssb/ |
| 5404 | F: include/linux/ssb/ |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 5405 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5406 | SONY VAIO CONTROL DEVICE DRIVER |
Mattia Dongili | 0d477fa | 2007-02-08 20:16:40 +0100 | [diff] [blame] | 5407 | P: Mattia Dongili |
| 5408 | M: malattia@linux.it |
Mattia Dongili | 5b18167 | 2007-03-12 21:43:57 +0100 | [diff] [blame] | 5409 | L: linux-acpi@vger.kernel.org |
| 5410 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5411 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5412 | F: Documentation/laptops/sony-laptop.txt |
| 5413 | F: drivers/char/sonypi.c |
| 5414 | F: drivers/platform/x86/sony-laptop.c |
| 5415 | F: include/linux/sony-laptop.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5416 | |
Alex Dubov | baf8532 | 2008-02-09 10:20:54 -0800 | [diff] [blame] | 5417 | SONY MEMORYSTICK CARD SUPPORT |
| 5418 | P: Alex Dubov |
| 5419 | M: oakad@yahoo.com |
| 5420 | L: linux-kernel@vger.kernel.org |
| 5421 | W: http://tifmxx.berlios.de/ |
| 5422 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5423 | F: drivers/memstick/host/tifm_ms.c |
Alex Dubov | baf8532 | 2008-02-09 10:20:54 -0800 | [diff] [blame] | 5424 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5425 | SOUND |
| 5426 | P: Jaroslav Kysela |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 5427 | M: perex@perex.cz |
Takashi Iwai | 281712f | 2008-08-19 13:10:04 +0200 | [diff] [blame] | 5428 | P: Takashi Iwai |
| 5429 | M: tiwai@suse.de |
Takashi Iwai | 8262204 | 2007-04-16 12:32:52 +0200 | [diff] [blame] | 5430 | L: alsa-devel@alsa-project.org (subscribers-only) |
Joe Perches | 3126a17 | 2009-04-15 23:38:45 -0700 | [diff] [blame] | 5431 | W: http://www.alsa-project.org/ |
| 5432 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git |
| 5433 | T: git git://git.alsa-project.org/alsa-kernel.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5434 | S: Maintained |
Joe Perches | 3126a17 | 2009-04-15 23:38:45 -0700 | [diff] [blame] | 5435 | F: Documentation/sound/ |
| 5436 | F: include/sound/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5437 | F: sound/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5438 | |
Mark Brown | bd903bd | 2008-11-19 19:16:05 +0000 | [diff] [blame] | 5439 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 5440 | P: Liam Girdwood |
Liam Girdwood | b0b8daf | 2008-09-18 14:36:37 +0100 | [diff] [blame] | 5441 | M: lrg@slimlogic.co.uk |
Mark Brown | 2cad0ad | 2008-01-10 14:33:07 +0100 | [diff] [blame] | 5442 | P: Mark Brown |
| 5443 | M: broonie@opensource.wolfsonmicro.com |
Mark Brown | bb74a6e | 2009-05-13 17:23:54 +0100 | [diff] [blame] | 5444 | 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] | 5445 | L: alsa-devel@alsa-project.org (subscribers-only) |
Liam Girdwood | b0b8daf | 2008-09-18 14:36:37 +0100 | [diff] [blame] | 5446 | W: http://alsa-project.org/main/index.php/ASoC |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 5447 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5448 | F: sound/soc/ |
Mark Brown | e6e5512 | 2009-05-05 11:10:24 +0100 | [diff] [blame] | 5449 | F: include/sound/soc* |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 5450 | |
Sam Ravnborg | 473321f | 2009-01-04 15:47:49 -0800 | [diff] [blame] | 5451 | SPARC + UltraSPARC (sparc/sparc64) |
| 5452 | P: David S. Miller |
| 5453 | M: davem@davemloft.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5454 | L: sparclinux@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5455 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git |
| 5456 | 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] | 5457 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5458 | F: arch/sparc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5459 | |
| 5460 | SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER |
| 5461 | P: Roger Wolff |
| 5462 | M: R.E.Wolff@BitWizard.nl |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 5463 | L: linux-kernel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5464 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5465 | F: Documentation/serial/specialix.txt |
| 5466 | F: drivers/char/specialix* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5467 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5468 | SPI SUBSYSTEM |
| 5469 | P: David Brownell |
| 5470 | M: dbrownell@users.sourceforge.net |
| 5471 | L: spi-devel-general@lists.sourceforge.net |
| 5472 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5473 | F: Documentation/spi/ |
| 5474 | F: drivers/spi/ |
| 5475 | F: include/linux/spi/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5476 | |
Jim Lewis | 2752e40 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 5477 | SPIDERNET NETWORK DRIVER for CELL |
Jens Osterkamp | cb8da8a | 2008-01-11 13:44:35 +0100 | [diff] [blame] | 5478 | P: Ishizaki Kou |
| 5479 | M: kou.ishizaki@toshiba.co.jp |
| 5480 | P: Jens Osterkamp |
| 5481 | M: jens@de.ibm.com |
Jim Lewis | 2752e40 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 5482 | L: netdev@vger.kernel.org |
| 5483 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5484 | F: Documentation/networking/spider_net.txt |
| 5485 | F: drivers/net/spider_net* |
Jim Lewis | 2752e40 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 5486 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5487 | SPU FILE SYSTEM |
| 5488 | P: Jeremy Kerr |
| 5489 | M: jk@ozlabs.org |
| 5490 | L: linuxppc-dev@ozlabs.org |
| 5491 | L: cbe-oss-dev@ozlabs.org |
| 5492 | W: http://www.ibm.com/developerworks/power/cell/ |
| 5493 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5494 | F: Documentation/filesystems/spufs.txt |
| 5495 | F: arch/powerpc/platforms/cell/spufs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5496 | |
Phillip Lougher | fc55584 | 2009-01-05 08:46:29 +0000 | [diff] [blame] | 5497 | SQUASHFS FILE SYSTEM |
| 5498 | P: Phillip Lougher |
| 5499 | M: phillip@lougher.demon.co.uk |
| 5500 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
| 5501 | W: http://squashfs.org.uk |
| 5502 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5503 | F: Documentation/filesystems/squashfs.txt |
| 5504 | F: fs/squashfs/ |
Phillip Lougher | fc55584 | 2009-01-05 08:46:29 +0000 | [diff] [blame] | 5505 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5506 | SRM (Alpha) environment access |
| 5507 | P: Jan-Benedict Glaw |
| 5508 | M: jbglaw@lug-owl.de |
| 5509 | L: linux-kernel@vger.kernel.org |
| 5510 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5511 | F: arch/alpha/kernel/srm_env.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5512 | |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 5513 | STABLE BRANCH |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5514 | P: Greg Kroah-Hartman |
| 5515 | M: greg@kroah.com |
| 5516 | P: Chris Wright |
| 5517 | M: chrisw@sous-sol.org |
| 5518 | L: stable@kernel.org |
| 5519 | S: Maintained |
| 5520 | |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 5521 | STAGING SUBSYSTEM |
| 5522 | P: Greg Kroah-Hartman |
| 5523 | M: gregkh@suse.de |
| 5524 | L: linux-kernel@vger.kernel.org |
| 5525 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
| 5526 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5527 | F: drivers/staging/ |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 5528 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5529 | STARFIRE/DURALAN NETWORK DRIVER |
| 5530 | P: Ion Badulescu |
| 5531 | M: ionut@cs.columbia.edu |
| 5532 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5533 | F: drivers/net/starfire* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5534 | |
| 5535 | STARMODE RADIO IP (STRIP) PROTOCOL DRIVER |
| 5536 | W: http://mosquitonet.Stanford.EDU/strip.html |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 5537 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5538 | F: drivers/net/wireless/strip.c |
| 5539 | F: include/linux/if_strip.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5540 | |
| 5541 | STRADIS MPEG-2 DECODER DRIVER |
| 5542 | P: Nathan Laredo |
| 5543 | M: laredo@gnu.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5544 | W: http://www.stradis.com/ |
| 5545 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5546 | F: drivers/media/video/stradis.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5547 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5548 | SUN3/3X |
| 5549 | P: Sam Creasey |
| 5550 | M: sammy@sammy.net |
| 5551 | W: http://sammy.net/sun3/ |
| 5552 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5553 | F: arch/m68k/kernel/*sun3* |
| 5554 | F: arch/m68k/sun3*/ |
| 5555 | F: arch/m68k/include/asm/sun3* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5556 | |
Paul Mundt | 2cbb12a | 2007-11-19 13:08:37 +0900 | [diff] [blame] | 5557 | SUPERH |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5558 | P: Paul Mundt |
| 5559 | M: lethal@linux-sh.org |
Paul Mundt | 2cbb12a | 2007-11-19 13:08:37 +0900 | [diff] [blame] | 5560 | L: linux-sh@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5561 | W: http://www.linux-sh.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5562 | 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] | 5563 | S: Supported |
Paul Mundt | 066069e | 2009-04-14 06:32:08 +0900 | [diff] [blame] | 5564 | F: Documentation/sh/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5565 | F: arch/sh/ |
Paul Mundt | 066069e | 2009-04-14 06:32:08 +0900 | [diff] [blame] | 5566 | F: drivers/sh/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5567 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 5568 | SUSPEND TO RAM |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5569 | P: Len Brown |
| 5570 | M: len.brown@intel.com |
| 5571 | P: Pavel Machek |
Pavel Machek | ef35ce2 | 2009-02-18 14:48:16 -0800 | [diff] [blame] | 5572 | M: pavel@ucw.cz |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5573 | P: Rafael J. Wysocki |
| 5574 | M: rjw@sisk.pl |
| 5575 | L: linux-pm@lists.linux-foundation.org |
| 5576 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5577 | F: Documentation/power/ |
| 5578 | F: arch/x86/kernel/acpi/ |
| 5579 | F: drivers/base/power/ |
| 5580 | F: kernel/power/ |
| 5581 | F: include/linux/suspend.h |
| 5582 | F: include/linux/freezer.h |
| 5583 | F: include/linux/pm.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5584 | |
| 5585 | SVGA HANDLING |
| 5586 | P: Martin Mares |
| 5587 | M: mj@ucw.cz |
| 5588 | L: linux-video@atrey.karlin.mff.cuni.cz |
| 5589 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5590 | F: Documentation/svga.txt |
| 5591 | F: arch/x86/boot/video* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5592 | |
| 5593 | SYSV FILESYSTEM |
| 5594 | P: Christoph Hellwig |
| 5595 | M: hch@infradead.org |
| 5596 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5597 | F: Documentation/filesystems/sysv-fs.txt |
| 5598 | F: fs/sysv/ |
| 5599 | F: include/linux/sysv_fs.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5600 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5601 | TASKSTATS STATISTICS INTERFACE |
Balbir Singh | abc5f23 | 2008-07-04 09:59:42 -0700 | [diff] [blame] | 5602 | P: Balbir Singh |
| 5603 | M: balbir@linux.vnet.ibm.com |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5604 | L: linux-kernel@vger.kernel.org |
| 5605 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5606 | F: Documentation/accounting/taskstats* |
| 5607 | F: include/linux/taskstats* |
| 5608 | F: kernel/taskstats.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5609 | |
Stephen Hemminger | 781b456 | 2006-07-10 20:25:29 -0700 | [diff] [blame] | 5610 | TC CLASSIFIER |
| 5611 | P: Jamal Hadi Salim |
| 5612 | M: hadi@cyberus.ca |
| 5613 | L: netdev@vger.kernel.org |
| 5614 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5615 | F: include/linux/pkt_cls.h |
| 5616 | F: include/net/pkt_cls.h |
| 5617 | F: net/sched/ |
Stephen Hemminger | 781b456 | 2006-07-10 20:25:29 -0700 | [diff] [blame] | 5618 | |
Wong Hoi Sing Edison | 5067f08 | 2006-09-13 20:31:13 -0700 | [diff] [blame] | 5619 | TCP LOW PRIORITY MODULE |
| 5620 | P: Wong Hoi Sing, Edison |
| 5621 | M: hswong3i@gmail.com |
| 5622 | P: Hung Hing Lun, Mike |
| 5623 | M: hlhung3i@gmail.com |
| 5624 | W: http://tcp-lp-mod.sourceforge.net/ |
| 5625 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5626 | F: net/ipv4/tcp_lp.c |
Wong Hoi Sing Edison | 5067f08 | 2006-09-13 20:31:13 -0700 | [diff] [blame] | 5627 | |
Andy Gospodarek | 1a348cc | 2007-09-17 18:50:36 -0700 | [diff] [blame] | 5628 | TEHUTI ETHERNET DRIVER |
| 5629 | P: Alexander Indenbaum |
| 5630 | M: baum@tehutinetworks.net |
| 5631 | P: Andy Gospodarek |
| 5632 | M: andy@greyhouse.net |
| 5633 | L: netdev@vger.kernel.org |
| 5634 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5635 | F: drivers/net/tehuti* |
Andy Gospodarek | 1a348cc | 2007-09-17 18:50:36 -0700 | [diff] [blame] | 5636 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5637 | Telecom Clock Driver for MCPL0010 |
| 5638 | P: Mark Gross |
| 5639 | M: mark.gross@intel.com |
| 5640 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5641 | F: drivers/char/tlclk.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5642 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 5643 | TENSILICA XTENSA PORT (xtensa) |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5644 | P: Chris Zankel |
| 5645 | M: chris@zankel.net |
| 5646 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5647 | F: arch/xtensa/ |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5648 | |
| 5649 | THINKPAD ACPI EXTRAS DRIVER |
| 5650 | P: Henrique de Moraes Holschuh |
| 5651 | M: ibm-acpi@hmh.eng.br |
| 5652 | L: ibm-acpi-devel@lists.sourceforge.net |
| 5653 | W: http://ibm-acpi.sourceforge.net |
| 5654 | W: http://thinkwiki.org/wiki/Ibm-acpi |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5655 | 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] | 5656 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5657 | F: drivers/platform/x86/thinkpad_acpi.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5658 | |
Alex Dubov | 4020f2d | 2006-10-04 02:15:37 -0700 | [diff] [blame] | 5659 | TI FLASH MEDIA INTERFACE DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5660 | P: Alex Dubov |
| 5661 | M: oakad@yahoo.com |
| 5662 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5663 | F: drivers/misc/tifm* |
| 5664 | F: drivers/mmc/host/tifm_sd.c |
| 5665 | F: include/linux/tifm.h |
Alex Dubov | 4020f2d | 2006-10-04 02:15:37 -0700 | [diff] [blame] | 5666 | |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5667 | TIPC NETWORK LAYER |
| 5668 | P: Per Liden |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 5669 | M: per.liden@ericsson.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5670 | P: Jon Maloy |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 5671 | M: jon.maloy@ericsson.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5672 | P: Allan Stephens |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 5673 | M: allan.stephens@windriver.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5674 | L: tipc-discussion@lists.sourceforge.net |
| 5675 | W: http://tipc.sourceforge.net/ |
| 5676 | W: http://tipc.cslab.ericsson.net/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5677 | T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5678 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5679 | F: include/linux/tipc*.h |
| 5680 | F: include/net/tipc/ |
| 5681 | F: net/tipc/ |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5682 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5683 | TLAN NETWORK DRIVER |
| 5684 | P: Samuel Chessman |
| 5685 | M: chessman@tux.org |
Gabriel Craciunescu | 88c07dd | 2007-11-22 19:43:36 +0800 | [diff] [blame] | 5686 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5687 | W: http://sourceforge.net/projects/tlan/ |
| 5688 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5689 | F: Documentation/networking/tlan.txt |
| 5690 | F: drivers/net/tlan.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5691 | |
Kentaro Takeda | d74db3b | 2009-02-05 17:18:18 +0900 | [diff] [blame] | 5692 | TOMOYO SECURITY MODULE |
| 5693 | P: Kentaro Takeda |
| 5694 | M: takedakn@nttdata.co.jp |
| 5695 | P: Tetsuo Handa |
| 5696 | M: penguin-kernel@I-love.SAKURA.ne.jp |
| 5697 | L: linux-kernel@vger.kernel.org (kernel issues) |
| 5698 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English) |
| 5699 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
| 5700 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) |
| 5701 | W: http://tomoyo.sourceforge.jp/ |
| 5702 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/ |
| 5703 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5704 | F: security/tomoyo/ |
Kentaro Takeda | d74db3b | 2009-02-05 17:18:18 +0900 | [diff] [blame] | 5705 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5706 | TOSHIBA ACPI EXTRAS DRIVER |
Johannes Berg | 1506553 | 2009-03-30 12:02:35 +0200 | [diff] [blame] | 5707 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5708 | F: drivers/platform/x86/toshiba_acpi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5709 | |
| 5710 | TOSHIBA SMM DRIVER |
| 5711 | P: Jonathan Buzzard |
| 5712 | M: jonathan@buzzard.org.uk |
| 5713 | L: tlinux-users@tce.toshiba-dme.co.jp |
| 5714 | W: http://www.buzzard.org.uk/toshiba/ |
| 5715 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5716 | F: drivers/char/toshiba.c |
| 5717 | F: include/linux/toshiba.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5718 | |
Pierre Ossman | d719f90 | 2009-03-24 21:06:09 +0100 | [diff] [blame] | 5719 | TMIO MMC DRIVER |
| 5720 | P: Ian Molton |
| 5721 | M: ian@mnementh.co.uk |
| 5722 | S: Maintained |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 5723 | F: drivers/mmc/host/tmio_mmc.* |
Pierre Ossman | d719f90 | 2009-03-24 21:06:09 +0100 | [diff] [blame] | 5724 | |
Hugh Dickins | 98f3260 | 2009-05-21 20:33:58 +0100 | [diff] [blame] | 5725 | TMPFS (SHMEM FILESYSTEM) |
| 5726 | P: Hugh Dickins |
| 5727 | M: hugh.dickins@tiscali.co.uk |
| 5728 | L: linux-mm@kvack.org |
| 5729 | S: Maintained |
| 5730 | F: include/linux/shmem_fs.h |
| 5731 | F: mm/shmem.c |
| 5732 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5733 | TPM DEVICE DRIVER |
Rajiv Andrade | 141c024 | 2008-07-21 14:21:37 -0700 | [diff] [blame] | 5734 | P: Debora Velarde |
| 5735 | M: debora@linux.vnet.ibm.com |
| 5736 | P: Rajiv Andrade |
| 5737 | M: srajiv@linux.vnet.ibm.com |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5738 | W: http://tpmdd.sourceforge.net |
| 5739 | P: Marcel Selhorst |
Marcel Selhorst | 7dcce13 | 2009-02-11 13:04:27 -0800 | [diff] [blame] | 5740 | M: m.selhorst@sirrix.com |
| 5741 | W: http://www.sirrix.com |
Rajiv Andrade | 63a10df | 2008-10-15 22:04:36 -0700 | [diff] [blame] | 5742 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5743 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5744 | F: drivers/char/tpm/ |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5745 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5746 | TRIVIAL PATCHES |
Jiri Kosina | 2b6a2f5 | 2008-11-14 11:55:03 +0100 | [diff] [blame] | 5747 | P: Jiri Kosina |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 5748 | M: trivial@kernel.org |
| 5749 | L: linux-kernel@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5750 | 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] | 5751 | S: Maintained |
| 5752 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5753 | TTY LAYER |
| 5754 | P: Alan Cox |
| 5755 | M: alan@lxorguk.ukuu.org.uk |
| 5756 | L: linux-kernel@vger.kernel.org |
| 5757 | S: Maintained |
Alan Cox | e960bf7 | 2009-06-11 14:04:57 +0100 | [diff] [blame] | 5758 | T: stgit http://zeniv.linux.org.uk/~alan/ttydev/ |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5759 | |
Grant Grundler | 740db6d | 2008-02-17 11:53:49 -0700 | [diff] [blame] | 5760 | TULIP NETWORK DRIVERS |
| 5761 | P: Grant Grundler |
| 5762 | M: grundler@parisc-linux.org |
| 5763 | P: Kyle McMartin |
Kyle McMartin | 42a5a8a | 2008-06-06 17:16:17 -0400 | [diff] [blame] | 5764 | M: kyle@mcmartin.ca |
Grant Grundler | 740db6d | 2008-02-17 11:53:49 -0700 | [diff] [blame] | 5765 | L: netdev@vger.kernel.org |
| 5766 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5767 | F: drivers/net/tulip/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5768 | |
| 5769 | TUN/TAP driver |
| 5770 | P: Maxim Krasnyansky |
Dave Jones | 66777b7 | 2006-03-25 03:07:53 -0800 | [diff] [blame] | 5771 | M: maxk@qualcomm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5772 | L: vtun@office.satix.net |
| 5773 | W: http://vtun.sourceforge.net/tun |
| 5774 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5775 | F: Documentation/networking/tuntap.txt |
| 5776 | F: arch/um/os-Linux/drivers/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5777 | |
Maciej W. Rozycki | b454cc6 | 2007-02-05 16:28:25 -0800 | [diff] [blame] | 5778 | TURBOCHANNEL SUBSYSTEM |
| 5779 | P: Maciej W. Rozycki |
| 5780 | M: macro@linux-mips.org |
| 5781 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5782 | F: drivers/tc/ |
| 5783 | F: include/linux/tc.h |
Maciej W. Rozycki | b454cc6 | 2007-02-05 16:28:25 -0800 | [diff] [blame] | 5784 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5785 | U14-34F SCSI DRIVER |
| 5786 | P: Dario Ballabio |
| 5787 | M: ballabio_dario@emc.com |
| 5788 | L: linux-scsi@vger.kernel.org |
| 5789 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5790 | F: drivers/scsi/u14-34f.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5791 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5792 | UBI FILE SYSTEM (UBIFS) |
| 5793 | P: Artem Bityutskiy |
| 5794 | M: dedekind@infradead.org |
| 5795 | P: Adrian Hunter |
| 5796 | M: ext-adrian.hunter@nokia.com |
| 5797 | L: linux-mtd@lists.infradead.org |
Artem Bityutskiy | e2966cb | 2008-10-25 18:54:04 +0300 | [diff] [blame] | 5798 | T: git git://git.infradead.org/ubifs-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5799 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
| 5800 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5801 | F: Documentation/filesystems/ubifs.txt |
| 5802 | F: fs/ubifs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5803 | |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5804 | UCLINUX (AND M68KNOMMU) |
| 5805 | P: Greg Ungerer |
| 5806 | M: gerg@uclinux.org |
| 5807 | W: http://www.uclinux.org/ |
| 5808 | L: uclinux-dev@uclinux.org (subscribers-only) |
| 5809 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5810 | F: arch/m68knommu/ |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5811 | |
Robert P. J. Day | 14fadca | 2009-04-21 12:24:47 -0700 | [diff] [blame] | 5812 | UCLINUX FOR RENESAS H8/300 (H8300) |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5813 | P: Yoshinori Sato |
| 5814 | M: ysato@users.sourceforge.jp |
| 5815 | W: http://uclinux-h8.sourceforge.jp/ |
| 5816 | S: Supported |
| 5817 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5818 | UDF FILESYSTEM |
Jan Kara | 800fdfb | 2008-02-08 04:20:51 -0800 | [diff] [blame] | 5819 | P: Jan Kara |
| 5820 | M: jack@suse.cz |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5821 | W: http://linux-udf.sourceforge.net |
| 5822 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5823 | F: Documentation/filesystems/udf.txt |
| 5824 | F: fs/udf/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5825 | |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5826 | UFS FILESYSTEM |
| 5827 | P: Evgeniy Dushistov |
| 5828 | M: dushistov@mail.ru |
| 5829 | L: linux-kernel@vger.kernel.org |
| 5830 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5831 | F: Documentation/filesystems/ufs.txt |
| 5832 | F: fs/ufs/ |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5833 | |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 5834 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
| 5835 | P: David Vrabel |
| 5836 | M: david.vrabel@csr.com |
| 5837 | L: linux-usb@vger.kernel.org |
| 5838 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5839 | F: drivers/uwb/* |
| 5840 | F: include/linux/uwb.h |
| 5841 | F: include/linux/uwb/ |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 5842 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5843 | UNIFORM CDROM DRIVER |
| 5844 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 5845 | M: axboe@kernel.dk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5846 | L: linux-kernel@vger.kernel.org |
| 5847 | W: http://www.kernel.dk |
| 5848 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5849 | F: Documentation/cdrom/ |
| 5850 | F: drivers/cdrom/cdrom.c |
| 5851 | F: include/linux/cdrom.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5852 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5853 | UNSORTED BLOCK IMAGES (UBI) |
| 5854 | P: Artem Bityutskiy |
| 5855 | M: dedekind@infradead.org |
| 5856 | W: http://www.linux-mtd.infradead.org/ |
| 5857 | L: linux-mtd@lists.infradead.org |
Artem Bityutskiy | e2966cb | 2008-10-25 18:54:04 +0300 | [diff] [blame] | 5858 | T: git git://git.infradead.org/ubi-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5859 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 5860 | F: drivers/mtd/ubi/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5861 | F: include/linux/mtd/ubi.h |
| 5862 | F: include/mtd/ubi-user.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5863 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5864 | USB ACM DRIVER |
| 5865 | P: Oliver Neukum |
| 5866 | M: oliver@neukum.name |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 5867 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5868 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5869 | F: Documentation/usb/acm.txt |
| 5870 | F: drivers/usb/class/cdc-acm.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5871 | |
| 5872 | USB BLOCK DRIVER (UB ub) |
| 5873 | P: Pete Zaitcev |
| 5874 | M: zaitcev@redhat.com |
| 5875 | L: linux-kernel@vger.kernel.org |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5876 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5877 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5878 | F: drivers/block/ub.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5879 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5880 | USB CDC ETHERNET DRIVER |
| 5881 | P: Greg Kroah-Hartman |
| 5882 | M: greg@kroah.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5883 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5884 | S: Maintained |
| 5885 | W: http://www.kroah.com/linux-usb/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5886 | F: drivers/net/usb/cdc_*.c |
| 5887 | F: include/linux/usb/cdc.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5888 | |
Peter Korsgaard | b02b371 | 2008-04-27 08:59:44 +0200 | [diff] [blame] | 5889 | USB CYPRESS C67X00 DRIVER |
| 5890 | P: Peter Korsgaard |
| 5891 | M: jacmet@sunsite.dk |
| 5892 | L: linux-usb@vger.kernel.org |
| 5893 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5894 | F: drivers/usb/c67x00/ |
Peter Korsgaard | b02b371 | 2008-04-27 08:59:44 +0200 | [diff] [blame] | 5895 | |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 5896 | USB DAVICOM DM9601 DRIVER |
| 5897 | P: Peter Korsgaard |
| 5898 | M: jacmet@sunsite.dk |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 5899 | L: netdev@vger.kernel.org |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 5900 | W: http://www.linux-usb.org/usbnet |
| 5901 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5902 | F: drivers/net/usb/dm9601.c |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 5903 | |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5904 | USB DIAMOND RIO500 DRIVER |
| 5905 | P: Cesar Miquel |
| 5906 | M: miquel@df.uba.ar |
| 5907 | L: rio500-users@lists.sourceforge.net |
| 5908 | W: http://rio500.sourceforge.net |
| 5909 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5910 | F: drivers/usb/misc/rio500* |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5911 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5912 | USB EHCI DRIVER |
| 5913 | P: David Brownell |
| 5914 | M: dbrownell@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5915 | L: linux-usb@vger.kernel.org |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 5916 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5917 | F: Documentation/usb/ehci.txt |
| 5918 | F: drivers/usb/host/ehci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5919 | |
Luca Risolia | 7ce08c9 | 2006-01-11 02:06:59 +0000 | [diff] [blame] | 5920 | USB ET61X[12]51 DRIVER |
| 5921 | P: Luca Risolia |
| 5922 | M: luca.risolia@studio.unibo.it |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5923 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 5924 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5925 | 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] | 5926 | W: http://www.linux-projects.org |
| 5927 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5928 | F: drivers/media/video/et61x251/ |
Luca Risolia | 7ce08c9 | 2006-01-11 02:06:59 +0000 | [diff] [blame] | 5929 | |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 5930 | USB GADGET/PERIPHERAL SUBSYSTEM |
| 5931 | P: David Brownell |
| 5932 | M: dbrownell@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5933 | L: linux-usb@vger.kernel.org |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 5934 | W: http://www.linux-usb.org/gadget |
| 5935 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5936 | F: drivers/usb/gadget/ |
| 5937 | F: include/linux/usb/gadget* |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 5938 | |
Jiri Kosina | 2dea64b | 2007-07-11 12:12:11 +0200 | [diff] [blame] | 5939 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
Jiri Kosina | 641266f | 2007-01-15 09:56:21 +0100 | [diff] [blame] | 5940 | P: Jiri Kosina |
| 5941 | M: jkosina@suse.cz |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5942 | L: linux-usb@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5943 | 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] | 5944 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5945 | F: Documentation/usb/hiddev.txt |
| 5946 | F: drivers/hid/usbhid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5947 | |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 5948 | USB ISP116X DRIVER |
| 5949 | P: Olav Kongas |
| 5950 | M: ok@artecdesign.ee |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5951 | L: linux-usb@vger.kernel.org |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 5952 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5953 | F: drivers/usb/host/isp116x* |
| 5954 | F: include/linux/usb/isp116x.h |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 5955 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5956 | USB KAWASAKI LSI DRIVER |
| 5957 | P: Oliver Neukum |
| 5958 | M: oliver@neukum.name |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5959 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5960 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5961 | F: drivers/usb/serial/kl5kusb105.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5962 | |
| 5963 | USB MASS STORAGE DRIVER |
| 5964 | P: Matthew Dharm |
| 5965 | M: mdharm-usb@one-eyed-alien.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5966 | L: linux-usb@vger.kernel.org |
Matthew Dharm | 8836aeb | 2005-12-04 22:03:47 -0800 | [diff] [blame] | 5967 | L: usb-storage@lists.one-eyed-alien.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5968 | S: Maintained |
| 5969 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5970 | F: drivers/usb/storage/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5971 | |
| 5972 | USB OHCI DRIVER |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 5973 | P: David Brownell |
| 5974 | M: dbrownell@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5975 | L: linux-usb@vger.kernel.org |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 5976 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5977 | F: Documentation/usb/ohci.txt |
| 5978 | F: drivers/usb/host/ohci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5979 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 5980 | USB OPTION-CARD DRIVER |
| 5981 | P: Matthias Urlichs |
| 5982 | M: smurf@smurf.noris.de |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5983 | L: linux-usb@vger.kernel.org |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 5984 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5985 | F: drivers/usb/serial/option.c |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 5986 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5987 | USB OV511 DRIVER |
| 5988 | P: Mark McClelland |
| 5989 | M: mmcclell@bigfoot.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5990 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5991 | W: http://alpha.dyndns.org/ov511/ |
| 5992 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5993 | F: drivers/media/video/ov511.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5994 | |
| 5995 | USB PEGASUS DRIVER |
| 5996 | P: Petko Manolov |
| 5997 | M: petkan@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5998 | L: linux-usb@vger.kernel.org |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 5999 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6000 | W: http://pegasus2.sourceforge.net/ |
| 6001 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6002 | F: drivers/net/usb/pegasus.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6003 | |
Pete Zaitcev | 73e4fb3 | 2007-06-21 15:18:35 -0700 | [diff] [blame] | 6004 | USB PRINTER DRIVER (usblp) |
| 6005 | P: Pete Zaitcev |
| 6006 | M: zaitcev@redhat.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6007 | L: linux-usb@vger.kernel.org |
Pete Zaitcev | 73e4fb3 | 2007-06-21 15:18:35 -0700 | [diff] [blame] | 6008 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6009 | F: drivers/usb/class/usblp.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6010 | |
| 6011 | USB RTL8150 DRIVER |
| 6012 | P: Petko Manolov |
| 6013 | M: petkan@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6014 | L: linux-usb@vger.kernel.org |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 6015 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6016 | W: http://pegasus2.sourceforge.net/ |
| 6017 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6018 | F: drivers/net/usb/rtl8150.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6019 | |
| 6020 | USB SE401 DRIVER |
| 6021 | P: Jeroen Vreeken |
| 6022 | M: pe1rxq@amsat.org |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6023 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6024 | W: http://www.chello.nl/~j.vreeken/se401/ |
| 6025 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6026 | F: Documentation/video4linux/se401.txt |
| 6027 | F: drivers/media/video/se401.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6028 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 6029 | USB SERIAL BELKIN F5U103 DRIVER |
| 6030 | P: William Greathouse |
| 6031 | M: wgreathouse@smva.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6032 | L: linux-usb@vger.kernel.org |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 6033 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6034 | F: drivers/usb/serial/belkin_sa.* |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 6035 | |
| 6036 | USB SERIAL CYPRESS M8 DRIVER |
| 6037 | P: Lonnie Mendez |
| 6038 | M: dignome@gmail.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6039 | L: linux-usb@vger.kernel.org |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 6040 | S: Maintained |
| 6041 | W: http://geocities.com/i0xox0i |
| 6042 | W: http://firstlight.net/cvs |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6043 | F: drivers/usb/serial/cypress_m8.* |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 6044 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6045 | USB SERIAL CYBERJACK DRIVER |
| 6046 | P: Matthias Bruestle and Harald Welte |
| 6047 | M: support@reiner-sct.com |
| 6048 | W: http://www.reiner-sct.de/support/treiber_cyberjack.php |
| 6049 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6050 | F: drivers/usb/serial/cyberjack.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6051 | |
| 6052 | USB SERIAL DIGI ACCELEPORT DRIVER |
| 6053 | P: Peter Berger and Al Borchers |
| 6054 | M: pberger@brimson.com |
| 6055 | M: alborchers@steinerpoint.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6056 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6057 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6058 | F: drivers/usb/serial/digi_acceleport.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6059 | |
| 6060 | USB SERIAL DRIVER |
| 6061 | P: Greg Kroah-Hartman |
| 6062 | M: gregkh@suse.de |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6063 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6064 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6065 | F: Documentation/usb/usb-serial.txt |
| 6066 | F: drivers/usb/serial/generic.c |
| 6067 | F: drivers/usb/serial/usb-serial.c |
| 6068 | F: include/linux/usb/serial.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6069 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6070 | USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER |
| 6071 | P: Gary Brubaker |
| 6072 | M: xavyer@ix.netcom.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6073 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6074 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6075 | F: drivers/usb/serial/empeg.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6076 | |
| 6077 | USB SERIAL KEYSPAN DRIVER |
| 6078 | P: Greg Kroah-Hartman |
| 6079 | M: greg@kroah.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6080 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6081 | W: http://www.kroah.com/linux/ |
| 6082 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6083 | F: drivers/usb/serial/*keyspan* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6084 | |
| 6085 | USB SERIAL WHITEHEAT DRIVER |
Stuart MacDonald | 8bc8493 | 2007-05-04 16:00:03 -0400 | [diff] [blame] | 6086 | P: Support Department |
| 6087 | M: support@connecttech.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6088 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6089 | W: http://www.connecttech.com |
| 6090 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6091 | F: drivers/usb/serial/whiteheat* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6092 | |
Steve Glendinning | 2f7ca80 | 2008-10-02 05:27:57 +0000 | [diff] [blame] | 6093 | USB SMSC95XX ETHERNET DRIVER |
| 6094 | P: Steve Glendinning |
| 6095 | M: steve.glendinning@smsc.com |
| 6096 | L: netdev@vger.kernel.org |
| 6097 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6098 | F: drivers/net/usb/smsc95xx.* |
Steve Glendinning | 2f7ca80 | 2008-10-02 05:27:57 +0000 | [diff] [blame] | 6099 | |
Luca Risolia | f423b9a | 2007-03-26 16:12:04 -0300 | [diff] [blame] | 6100 | USB SN9C1xx DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6101 | P: Luca Risolia |
| 6102 | M: luca.risolia@studio.unibo.it |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6103 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6104 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6105 | 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] | 6106 | W: http://www.linux-projects.org |
| 6107 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6108 | F: Documentation/video4linux/sn9c102.txt |
| 6109 | F: drivers/media/video/sn9c102/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6110 | |
| 6111 | USB SUBSYSTEM |
| 6112 | P: Greg Kroah-Hartman |
| 6113 | M: gregkh@suse.de |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6114 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6115 | W: http://www.linux-usb.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 6116 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6117 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6118 | F: Documentation/usb/ |
| 6119 | F: drivers/net/usb/ |
| 6120 | F: drivers/usb/ |
| 6121 | F: include/linux/usb.h |
| 6122 | F: include/linux/usb/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6123 | |
| 6124 | USB UHCI DRIVER |
| 6125 | P: Alan Stern |
| 6126 | M: stern@rowland.harvard.edu |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6127 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6128 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6129 | F: drivers/usb/host/uhci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6130 | |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 6131 | USB "USBNET" DRIVER FRAMEWORK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6132 | P: David Brownell |
| 6133 | M: dbrownell@users.sourceforge.net |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 6134 | L: netdev@vger.kernel.org |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 6135 | W: http://www.linux-usb.org/usbnet |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6136 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6137 | F: drivers/net/usb/usbnet.c |
| 6138 | F: include/linux/usb/usbnet.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6139 | |
Laurent Pinchart | c0efd23 | 2008-06-30 15:04:50 -0300 | [diff] [blame] | 6140 | USB VIDEO CLASS |
| 6141 | P: Laurent Pinchart |
| 6142 | M: laurent.pinchart@skynet.be |
Jiri Slaby | a67534a | 2008-12-10 09:09:27 -0300 | [diff] [blame] | 6143 | L: linux-uvc-devel@lists.berlios.de (subscribers-only) |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6144 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6145 | 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] | 6146 | W: http://linux-uvc.berlios.de |
| 6147 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6148 | F: drivers/media/video/uvc/ |
Laurent Pinchart | c0efd23 | 2008-06-30 15:04:50 -0300 | [diff] [blame] | 6149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6150 | USB W996[87]CF DRIVER |
| 6151 | P: Luca Risolia |
| 6152 | M: luca.risolia@studio.unibo.it |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6153 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6154 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6155 | 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] | 6156 | W: http://www.linux-projects.org |
| 6157 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6158 | F: Documentation/video4linux/w9968cf.txt |
| 6159 | F: drivers/media/video/w996* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6160 | |
Jussi Kivilinna | bf164cc | 2008-01-26 00:51:51 +0200 | [diff] [blame] | 6161 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
| 6162 | P: Jussi Kivilinna |
| 6163 | M: jussi.kivilinna@mbnet.fi |
| 6164 | L: linux-wireless@vger.kernel.org |
| 6165 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6166 | F: drivers/net/wireless/rndis_wlan.c |
Jussi Kivilinna | bf164cc | 2008-01-26 00:51:51 +0200 | [diff] [blame] | 6167 | |
Luca Risolia | 60f7805 | 2006-02-06 16:29:35 +0000 | [diff] [blame] | 6168 | USB ZC0301 DRIVER |
| 6169 | P: Luca Risolia |
| 6170 | M: luca.risolia@studio.unibo.it |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6171 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6172 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6173 | 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] | 6174 | W: http://www.linux-projects.org |
| 6175 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6176 | F: Documentation/video4linux/zc0301.txt |
| 6177 | F: drivers/media/video/zc0301/ |
Luca Risolia | 60f7805 | 2006-02-06 16:29:35 +0000 | [diff] [blame] | 6178 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6179 | USB ZD1201 DRIVER |
| 6180 | P: Jeroen Vreeken |
| 6181 | M: pe1rxq@amsat.org |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6182 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6183 | W: http://linux-lc100020.sourceforge.net |
| 6184 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6185 | F: drivers/net/wireless/zd1201.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6186 | |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 6187 | USB ZR364XX DRIVER |
| 6188 | P: Antoine Jacquet |
| 6189 | M: royale@zerezo.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6190 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6191 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6192 | 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] | 6193 | W: http://royale.zerezo.com/zr364xx/ |
| 6194 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6195 | F: Documentation/video4linux/zr364xx.txt |
| 6196 | F: drivers/media/video/zr364xx.c |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 6197 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 6198 | USER-MODE LINUX (UML) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6199 | P: Jeff Dike |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 6200 | M: jdike@addtoit.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6201 | L: user-mode-linux-devel@lists.sourceforge.net |
| 6202 | L: user-mode-linux-user@lists.sourceforge.net |
| 6203 | W: http://user-mode-linux.sourceforge.net |
| 6204 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6205 | F: Documentation/uml/ |
| 6206 | F: arch/um/ |
| 6207 | F: fs/hostfs/ |
| 6208 | F: fs/hppfs/ |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 6209 | |
Hans-Jürgen Koch | e5f114e | 2007-12-05 15:08:07 +0100 | [diff] [blame] | 6210 | USERSPACE I/O (UIO) |
| 6211 | P: Hans J. Koch |
| 6212 | M: hjk@linutronix.de |
| 6213 | P: Greg Kroah-Hartman |
| 6214 | M: gregkh@suse.de |
| 6215 | L: linux-kernel@vger.kernel.org |
| 6216 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6217 | F: Documentation/DocBook/uio-howto.tmpl |
| 6218 | F: drivers/uio/ |
| 6219 | F: include/linux/uio*.h |
Hans-Jürgen Koch | e5f114e | 2007-12-05 15:08:07 +0100 | [diff] [blame] | 6220 | |
Karel Zak | f899b0a | 2008-05-23 13:04:21 -0700 | [diff] [blame] | 6221 | UTIL-LINUX-NG PACKAGE |
| 6222 | P: Karel Zak |
| 6223 | M: kzak@redhat.com |
| 6224 | L: util-linux-ng@vger.kernel.org |
| 6225 | W: http://kernel.org/~kzak/util-linux-ng/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6226 | 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] | 6227 | S: Maintained |
| 6228 | |
Michal Januszewski | c1fd1c0 | 2008-10-15 22:03:48 -0700 | [diff] [blame] | 6229 | UVESAFB DRIVER |
| 6230 | P: Michal Januszewski |
| 6231 | M: spock@gentoo.org |
| 6232 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 6233 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
| 6234 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6235 | F: Documentation/fb/uvesafb.txt |
| 6236 | F: drivers/video/uvesafb.* |
Michal Januszewski | c1fd1c0 | 2008-10-15 22:03:48 -0700 | [diff] [blame] | 6237 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 6238 | VFAT/FAT/MSDOS FILESYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6239 | P: OGAWA Hirofumi |
| 6240 | M: hirofumi@mail.parknet.co.jp |
| 6241 | L: linux-kernel@vger.kernel.org |
| 6242 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6243 | F: Documentation/filesystems/vfat.txt |
| 6244 | F: fs/fat/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6245 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6246 | VIA RHINE NETWORK DRIVER |
| 6247 | P: Roger Luethi |
| 6248 | M: rl@hellgate.ch |
| 6249 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6250 | F: drivers/net/via-rhine.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6251 | |
Jean Delvare | 32c0a52 | 2005-09-22 21:47:58 +0200 | [diff] [blame] | 6252 | VIAPRO SMBUS DRIVER |
| 6253 | P: Jean Delvare |
| 6254 | M: khali@linux-fr.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 6255 | L: linux-i2c@vger.kernel.org |
Jean Delvare | 32c0a52 | 2005-09-22 21:47:58 +0200 | [diff] [blame] | 6256 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6257 | F: Documentation/i2c/busses/i2c-viapro |
| 6258 | F: drivers/i2c/busses/i2c-viapro.c |
Jean Delvare | 32c0a52 | 2005-09-22 21:47:58 +0200 | [diff] [blame] | 6259 | |
Joseph Chan | 69e4a7c | 2008-10-15 22:03:31 -0700 | [diff] [blame] | 6260 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
| 6261 | P: Joseph Chan |
| 6262 | M: JosephChan@via.com.tw |
| 6263 | P: Scott Fang |
| 6264 | M: ScottFang@viatech.com.cn |
| 6265 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 6266 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6267 | F: drivers/video/via/ |
Joseph Chan | 69e4a7c | 2008-10-15 22:03:31 -0700 | [diff] [blame] | 6268 | |
Francois Romieu | 01f2073 | 2007-01-26 00:57:17 -0800 | [diff] [blame] | 6269 | VIA VELOCITY NETWORK DRIVER |
| 6270 | P: Francois Romieu |
| 6271 | M: romieu@fr.zoreil.com |
| 6272 | L: netdev@vger.kernel.org |
| 6273 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6274 | F: drivers/net/via-velocity.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6275 | |
Patrick McHardy | be7f827 | 2007-10-23 20:26:36 -0700 | [diff] [blame] | 6276 | VLAN (802.1Q) |
| 6277 | P: Patrick McHardy |
| 6278 | M: kaber@trash.net |
| 6279 | L: netdev@vger.kernel.org |
| 6280 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6281 | F: drivers/net/macvlan.c |
| 6282 | F: include/linux/if_*vlan.h |
| 6283 | F: net/8021q/ |
Patrick McHardy | be7f827 | 2007-10-23 20:26:36 -0700 | [diff] [blame] | 6284 | |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 6285 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
| 6286 | P: Liam Girdwood |
Liam Girdwood | 8a62ab4 | 2008-09-14 17:40:21 +0100 | [diff] [blame] | 6287 | M: lrg@slimlogic.co.uk |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 6288 | P: Mark Brown |
| 6289 | M: broonie@opensource.wolfsonmicro.com |
| 6290 | W: http://opensource.wolfsonmicro.com/node/15 |
Liam Girdwood | 1dd68f0 | 2009-02-02 21:43:31 +0000 | [diff] [blame] | 6291 | W: http://www.slimlogic.co.uk/?p=48 |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6292 | 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] | 6293 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6294 | F: drivers/regulator/ |
| 6295 | F: include/linux/regulator/ |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 6296 | |
Juerg Haefliger | ab41319 | 2006-09-24 20:54:04 +0200 | [diff] [blame] | 6297 | VT1211 HARDWARE MONITOR DRIVER |
| 6298 | P: Juerg Haefliger |
| 6299 | M: juergh@gmail.com |
| 6300 | L: lm-sensors@lm-sensors.org |
| 6301 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6302 | F: Documentation/hwmon/vt1211 |
| 6303 | F: drivers/hwmon/vt1211.c |
Juerg Haefliger | ab41319 | 2006-09-24 20:54:04 +0200 | [diff] [blame] | 6304 | |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 6305 | VT8231 HARDWARE MONITOR DRIVER |
| 6306 | P: Roger Lucas |
Roger Lucas | af86576 | 2008-02-13 07:52:06 -0500 | [diff] [blame] | 6307 | M: vt8231@hiddenengine.co.uk |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 6308 | L: lm-sensors@lm-sensors.org |
| 6309 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6310 | F: drivers/hwmon/vt8231.c |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 6311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6312 | W1 DALLAS'S 1-WIRE BUS |
| 6313 | P: Evgeniy Polyakov |
| 6314 | M: johnpol@2ka.mipt.ru |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6315 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6316 | F: Documentation/w1/ |
| 6317 | F: drivers/w1/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6318 | |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 6319 | W83791D HARDWARE MONITORING DRIVER |
Marc Hulsman | 25845c2 | 2008-06-08 10:59:41 -0400 | [diff] [blame] | 6320 | P: Marc Hulsman |
| 6321 | M: m.hulsman@tudelft.nl |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 6322 | L: lm-sensors@lm-sensors.org |
Marc Hulsman | 25845c2 | 2008-06-08 10:59:41 -0400 | [diff] [blame] | 6323 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6324 | F: Documentation/hwmon/w83791d |
| 6325 | F: drivers/hwmon/w83791d.c |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 6326 | |
Rudolf Marek | 61db011 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 6327 | W83793 HARDWARE MONITORING DRIVER |
| 6328 | P: Rudolf Marek |
| 6329 | M: r.marek@assembler.cz |
| 6330 | L: lm-sensors@lm-sensors.org |
| 6331 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6332 | F: Documentation/hwmon/w83793 |
| 6333 | F: drivers/hwmon/w83793.c |
Rudolf Marek | 61db011 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 6334 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6335 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
| 6336 | P: Pierre Ossman |
Pierre Ossman | 32710e8 | 2009-04-08 20:14:54 +0200 | [diff] [blame] | 6337 | M: pierre@ossman.eu |
Pierre Ossman | fac8899 | 2007-01-27 13:18:26 +0100 | [diff] [blame] | 6338 | L: linux-kernel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6339 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6340 | F: drivers/mmc/host/wbsd.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6341 | |
Wim Van Sebroeck | 3527761 | 2006-01-15 21:21:14 +0100 | [diff] [blame] | 6342 | WATCHDOG DEVICE DRIVERS |
| 6343 | P: Wim Van Sebroeck |
| 6344 | M: wim@iguana.be |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6345 | 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] | 6346 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6347 | F: Documentation/watchdog/ |
| 6348 | F: drivers/watchdog/ |
| 6349 | F: include/linux/watchdog.h |
Wim Van Sebroeck | 3527761 | 2006-01-15 21:21:14 +0100 | [diff] [blame] | 6350 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6351 | WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS |
| 6352 | P: Jean Tourrilhes |
| 6353 | M: jt@hpl.hp.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 6354 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6355 | W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/ |
| 6356 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6357 | F: Documentation/networking/wavelan.txt |
| 6358 | F: drivers/net/wireless/wavelan* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6359 | |
| 6360 | WD7000 SCSI DRIVER |
| 6361 | P: Miroslav Zagorac |
| 6362 | M: zaga@fly.cc.fer.hr |
| 6363 | L: linux-scsi@vger.kernel.org |
| 6364 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6365 | F: drivers/scsi/wd7000.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6366 | |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 6367 | WIMAX STACK |
| 6368 | P: Inaky Perez-Gonzalez |
| 6369 | M: inaky.perez-gonzalez@intel.com |
| 6370 | M: linux-wimax@intel.com |
| 6371 | L: wimax@linuxwimax.org |
| 6372 | S: Supported |
| 6373 | W: http://linuxwimax.org |
| 6374 | |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 6375 | WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM |
| 6376 | P: David Vrabel |
| 6377 | M: david.vrabel@csr.com |
| 6378 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6379 | F: include/linux/wlp.h |
| 6380 | F: drivers/uwb/wlp/ |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 6381 | |
Dmitry Torokhov | 5fc1468 | 2005-11-20 00:50:06 -0500 | [diff] [blame] | 6382 | WISTRON LAPTOP BUTTON DRIVER |
| 6383 | P: Miloslav Trmac |
| 6384 | M: mitr@volny.cz |
| 6385 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6386 | F: drivers/input/misc/wistron_btns.c |
Dmitry Torokhov | 5fc1468 | 2005-11-20 00:50:06 -0500 | [diff] [blame] | 6387 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6388 | WL3501 WIRELESS PCMCIA CARD DRIVER |
| 6389 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 6390 | M: acme@ghostprotocols.net |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 6391 | L: linux-wireless@vger.kernel.org |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 6392 | W: http://oops.ghostprotocols.net:81/blog |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6393 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6394 | F: drivers/net/wireless/wl3501* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6395 | |
Mark Brown | febf1df | 2008-04-02 00:51:09 -0400 | [diff] [blame] | 6396 | WM97XX TOUCHSCREEN DRIVERS |
| 6397 | P: Mark Brown |
| 6398 | M: broonie@opensource.wolfsonmicro.com |
| 6399 | P: Liam Girdwood |
Liam Girdwood | b8d055a | 2008-10-13 23:00:15 -0400 | [diff] [blame] | 6400 | M: lrg@slimlogic.co.uk |
Mark Brown | febf1df | 2008-04-02 00:51:09 -0400 | [diff] [blame] | 6401 | L: linux-input@vger.kernel.org |
| 6402 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch |
| 6403 | W: http://opensource.wolfsonmicro.com/node/7 |
| 6404 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6405 | F: drivers/input/touchscreen/*wm97* |
| 6406 | F: include/linux/wm97xx.h |
Mark Brown | febf1df | 2008-04-02 00:51:09 -0400 | [diff] [blame] | 6407 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6408 | X.25 NETWORK LAYER |
| 6409 | P: Henner Eisen |
| 6410 | M: eis@baty.hanse.de |
| 6411 | L: linux-x25@vger.kernel.org |
| 6412 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6413 | F: Documentation/networking/x25* |
| 6414 | F: include/net/x25* |
| 6415 | F: net/x25/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6416 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6417 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
| 6418 | P: Thomas Gleixner |
| 6419 | M: tglx@linutronix.de |
| 6420 | P: Ingo Molnar |
| 6421 | M: mingo@redhat.com |
| 6422 | P: H. Peter Anvin |
| 6423 | M: hpa@zytor.com |
H. Peter Anvin | bcde563 | 2009-02-02 21:42:40 -0800 | [diff] [blame] | 6424 | M: x86@kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6425 | L: linux-kernel@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6426 | 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] | 6427 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6428 | F: Documentation/x86/ |
| 6429 | F: arch/x86/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6430 | |
Jeremy Fitzhardinge | 4cdf6bc | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 6431 | XEN HYPERVISOR INTERFACE |
| 6432 | P: Jeremy Fitzhardinge |
| 6433 | M: jeremy@xensource.com |
| 6434 | P: Chris Wright |
| 6435 | M: chrisw@sous-sol.org |
| 6436 | L: virtualization@lists.osdl.org |
| 6437 | L: xen-devel@lists.xensource.com |
| 6438 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6439 | F: arch/x86/xen/ |
| 6440 | F: drivers/*/xen-*front.c |
| 6441 | F: drivers/xen/ |
| 6442 | F: arch/x86/include/asm/xen/ |
| 6443 | F: include/xen/ |
Jeremy Fitzhardinge | 4cdf6bc | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 6444 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6445 | XFS FILESYSTEM |
| 6446 | P: Silicon Graphics Inc |
Felix Blyakher | b58a4cc | 2009-02-03 15:37:18 -0600 | [diff] [blame] | 6447 | P: Felix Blyakher |
| 6448 | M: felixb@sgi.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6449 | M: xfs-masters@oss.sgi.com |
Nathan Scott | d7ede1a | 2006-06-13 16:28:11 +1000 | [diff] [blame] | 6450 | L: xfs@oss.sgi.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6451 | W: http://oss.sgi.com/projects/xfs |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6452 | T: git git://oss.sgi.com/xfs/xfs.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6453 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6454 | F: Documentation/filesystems/xfs.txt |
| 6455 | F: fs/xfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6456 | |
Grant Likely | c9d3d8e | 2007-10-01 16:33:51 +0200 | [diff] [blame] | 6457 | XILINX SYSTEMACE DRIVER |
| 6458 | P: Grant Likely |
| 6459 | M: grant.likely@secretlab.ca |
| 6460 | W: http://www.secretlab.ca/ |
| 6461 | L: linux-kernel@vger.kernel.org |
| 6462 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6463 | F: drivers/block/xsysace.c |
Grant Likely | c9d3d8e | 2007-10-01 16:33:51 +0200 | [diff] [blame] | 6464 | |
Peter Korsgaard | 238b872 | 2006-12-06 20:35:17 -0800 | [diff] [blame] | 6465 | XILINX UARTLITE SERIAL DRIVER |
| 6466 | P: Peter Korsgaard |
| 6467 | M: jacmet@sunsite.dk |
| 6468 | L: linux-serial@vger.kernel.org |
| 6469 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6470 | F: drivers/serial/uartlite.c |
Peter Korsgaard | 238b872 | 2006-12-06 20:35:17 -0800 | [diff] [blame] | 6471 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6472 | YAM DRIVER FOR AX.25 |
| 6473 | P: Jean-Paul Roubelat |
| 6474 | M: jpr@f6fbb.org |
| 6475 | L: linux-hams@vger.kernel.org |
| 6476 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6477 | F: drivers/net/hamradio/yam* |
| 6478 | F: include/linux/yam.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6479 | |
Henk | af64a5e | 2005-10-12 15:02:56 +0200 | [diff] [blame] | 6480 | YEALINK PHONE DRIVER |
| 6481 | P: Henk Vergonet |
| 6482 | M: Henk.Vergonet@gmail.com |
| 6483 | L: usbb2k-api-dev@nongnu.org |
| 6484 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6485 | F: Documentation/input/yealink.txt |
| 6486 | F: drivers/input/misc/yealink.* |
Henk | af64a5e | 2005-10-12 15:02:56 +0200 | [diff] [blame] | 6487 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6488 | Z8530 DRIVER FOR AX.25 |
| 6489 | P: Joerg Reuter |
| 6490 | M: jreuter@yaina.de |
| 6491 | W: http://yaina.de/jreuter/ |
| 6492 | W: http://www.qsl.net/dl1bke/ |
| 6493 | L: linux-hams@vger.kernel.org |
| 6494 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6495 | F: Documentation/networking/z8530drv.txt |
| 6496 | F: drivers/net/hamradio/*scc.c |
| 6497 | F: drivers/net/hamradio/z8530.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6498 | |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 6499 | ZD1211RW WIRELESS DRIVER |
| 6500 | P: Daniel Drake |
| 6501 | M: dsd@gentoo.org |
| 6502 | P: Ulrich Kunitz |
| 6503 | M: kune@deine-taler.de |
| 6504 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 6505 | L: linux-wireless@vger.kernel.org |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 6506 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
| 6507 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6508 | F: drivers/net/wireless/zd1211rw/ |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 6509 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6510 | ZR36067 VIDEO FOR LINUX DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6511 | L: mjpeg-users@lists.sourceforge.net |
Trent Piepho | f63145e | 2009-01-24 20:52:41 -0300 | [diff] [blame] | 6512 | L: linux-media@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6513 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
Trent Piepho | f63145e | 2009-01-24 20:52:41 -0300 | [diff] [blame] | 6514 | T: Mercurial http://linuxtv.org/hg/v4l-dvb |
| 6515 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6516 | F: drivers/media/video/zoran/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6517 | |
Maciej W. Rozycki | 8b4a408 | 2007-07-18 00:49:11 -0700 | [diff] [blame] | 6518 | ZS DECSTATION Z85C30 SERIAL DRIVER |
| 6519 | P: Maciej W. Rozycki |
| 6520 | M: macro@linux-mips.org |
| 6521 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6522 | F: drivers/serial/zs.* |
Maciej W. Rozycki | 8b4a408 | 2007-07-18 00:49:11 -0700 | [diff] [blame] | 6523 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6524 | THE REST |
| 6525 | P: Linus Torvalds |
Joe Perches | cfe81f7 | 2009-04-07 21:09:58 -0700 | [diff] [blame] | 6526 | 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] | 6527 | S: Buried alive in reporters |