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 |
Jody McIntyre | 50306fb | 2005-11-23 15:44:03 -0800 | [diff] [blame] | 74 | T: SCM tree type and location. Type is one of: git, hg, quilt. |
Randy Dunlap | 4501a46 | 2008-10-13 09:24:58 -0700 | [diff] [blame] | 75 | S: Status, one of the following: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
| 77 | Supported: Someone is actually paid to look after this. |
| 78 | Maintained: Someone actually looks after it. |
| 79 | Odd Fixes: It has a maintainer but they don't have time to do |
| 80 | much other than throw the odd patch in. See below.. |
| 81 | Orphan: No current maintainer [but maybe you could take the |
| 82 | role as you write your new code]. |
| 83 | Obsolete: Old code. Something tagged obsolete generally means |
| 84 | it has been replaced by a better system and you |
| 85 | should be using that. |
| 86 | |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 87 | F: Files and directories with wildcard patterns. |
| 88 | A trailing slash includes all files and subdirectory files. |
| 89 | F: drivers/net/ all files in and below drivers/net |
| 90 | F: drivers/net/* all files in drivers/net, but not below |
| 91 | F: */net/* all files in "any top level directory"/net |
| 92 | One pattern per line. Multiple F: lines acceptable. |
| 93 | X: Files and directories that are NOT maintained, same rules as F: |
| 94 | Files exclusions are tested before file matches. |
| 95 | Can be useful for excluding a specific subdirectory, for instance: |
| 96 | F: net/ |
| 97 | X: net/ipv6/ |
| 98 | matches all files in and below net excluding net/ipv6/ |
| 99 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | 3C505 NETWORK DRIVER |
| 101 | P: Philip Blundell |
| 102 | M: philb@gnu.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 103 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 105 | F: drivers/net/3c505* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
Steffen Klassert | a6d8991 | 2007-08-10 14:05:27 -0700 | [diff] [blame] | 107 | 3C59X NETWORK DRIVER |
| 108 | P: Steffen Klassert |
| 109 | M: klassert@mathematik.tu-chemnitz.de |
| 110 | L: netdev@vger.kernel.org |
| 111 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 112 | F: Documentation/networking/vortex.txt |
| 113 | F: drivers/net/3c59x.c |
Steffen Klassert | a6d8991 | 2007-08-10 14:05:27 -0700 | [diff] [blame] | 114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | 3CR990 NETWORK DRIVER |
| 116 | P: David Dillow |
| 117 | M: dave@thedillows.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 118 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 120 | F: drivers/net/typhoon* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 122 | 3W-9XXX SATA-RAID CONTROLLER DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | P: Adam Radford |
| 124 | M: linuxraid@amcc.com |
| 125 | L: linux-scsi@vger.kernel.org |
| 126 | W: http://www.amcc.com |
| 127 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 128 | F: drivers/scsi/3w-9xxx* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 130 | 3W-XXXX ATA-RAID CONTROLLER DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | P: Adam Radford |
| 132 | M: linuxraid@amcc.com |
| 133 | L: linux-scsi@vger.kernel.org |
| 134 | W: http://www.amcc.com |
| 135 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 136 | F: drivers/scsi/3w-xxxx* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
| 138 | 53C700 AND 53C700-66 SCSI DRIVER |
| 139 | P: James E.J. Bottomley |
| 140 | M: James.Bottomley@HansenPartnership.com |
| 141 | L: linux-scsi@vger.kernel.org |
| 142 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 143 | F: drivers/scsi/53c700* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
| 145 | 6PACK NETWORK DRIVER FOR AX.25 |
| 146 | P: Andreas Koensgen |
| 147 | M: ajk@iehk.rwth-aachen.de |
| 148 | L: linux-hams@vger.kernel.org |
| 149 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 150 | F: drivers/net/hamradio/6pack.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
| 153 | P: Francois Romieu |
| 154 | M: romieu@fr.zoreil.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 155 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 157 | F: drivers/net/r8169.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | |
| 159 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | L: linux-serial@vger.kernel.org |
| 161 | W: http://serial.sourceforge.net |
Russell King | 353cefd | 2006-10-03 17:36:11 +0100 | [diff] [blame] | 162 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 163 | F: drivers/serial/8250* |
| 164 | F: include/linux/serial_8250.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | |
| 166 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] |
| 167 | P: Paul Gortmaker |
| 168 | M: p_gortmaker@yahoo.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 169 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 171 | F: drivers/net/*8390* |
| 172 | F: drivers/net/ax88796.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
Eric Van Hensbergen | 67543e5 | 2006-03-25 03:07:29 -0800 | [diff] [blame] | 174 | 9P FILE SYSTEM |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 175 | P: Eric Van Hensbergen |
| 176 | M: ericvh@gmail.com |
| 177 | P: Ron Minnich |
Eric Van Hensbergen | 27a2a5f | 2007-07-23 13:06:13 -0500 | [diff] [blame] | 178 | M: rminnich@sandia.gov |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 179 | P: Latchesar Ionkov |
| 180 | M: lucho@ionkov.net |
| 181 | L: v9fs-developer@lists.sourceforge.net |
Eric Van Hensbergen | 27a2a5f | 2007-07-23 13:06:13 -0500 | [diff] [blame] | 182 | W: http://swik.net/v9fs |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 183 | 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] | 184 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 185 | F: Documentation/filesystems/9p.txt |
| 186 | F: fs/9p/ |
Eric Van Hensbergen | 67543e5 | 2006-03-25 03:07:29 -0800 | [diff] [blame] | 187 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | A2232 SERIAL BOARD DRIVER |
| 189 | P: Enver Haase |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | M: A2232@gmx.net |
| 191 | L: linux-m68k@lists.linux-m68k.org |
| 192 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 193 | F: drivers/char/ser_a2232* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 195 | AACRAID SCSI RAID DRIVER |
| 196 | P: Adaptec OEM Raid Solutions |
| 197 | M: aacraid@adaptec.com |
| 198 | L: linux-scsi@vger.kernel.org |
| 199 | W: http://www.adaptec.com/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 201 | F: Documentation/scsi/aacraid.txt |
| 202 | F: drivers/scsi/aacraid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 204 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
Hans de Goede | f2b84bb | 2006-06-04 20:22:24 +0200 | [diff] [blame] | 205 | P: Hans de Goede |
| 206 | M: j.w.r.degoede@hhs.nl |
| 207 | L: lm-sensors@lm-sensors.org |
| 208 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 209 | F: drivers/hwmon/abituguru.c |
Hans de Goede | f2b84bb | 2006-06-04 20:22:24 +0200 | [diff] [blame] | 210 | |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 211 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
| 212 | P: Alistair John Strachan |
| 213 | M: alistair@devzero.co.uk |
| 214 | L: lm-sensors@lm-sensors.org |
| 215 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 216 | F: drivers/hwmon/abituguru3.c |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 217 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | ACENIC DRIVER |
| 219 | P: Jes Sorensen |
| 220 | M: jes@trained-monkey.org |
| 221 | L: linux-acenic@sunsite.dk |
| 222 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 223 | F: drivers/net/acenic* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 225 | ACER WMI LAPTOP EXTRAS |
| 226 | P: Carlos Corbacho |
| 227 | M: carlos@strangeworlds.co.uk |
| 228 | L: aceracpi@googlegroups.com (subscribers-only) |
| 229 | W: http://code.google.com/p/aceracpi |
| 230 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 231 | F: drivers/platform/x86/acer-wmi.c |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 232 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | ACPI |
Andi Kleen | 54cd314 | 2008-09-04 13:30:07 +0200 | [diff] [blame] | 234 | P: Len Brown |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 235 | M: lenb@kernel.org |
Len Brown | 6968e50 | 2005-12-30 00:32:49 -0500 | [diff] [blame] | 236 | L: linux-acpi@vger.kernel.org |
Len Brown | 38e09d8 | 2007-10-25 17:55:59 -0400 | [diff] [blame] | 237 | W: http://www.lesswatts.org/projects/acpi/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 238 | 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] | 239 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 240 | F: drivers/acpi/ |
| 241 | F: drivers/pnp/pnpacpi/ |
| 242 | F: include/linux/acpi.h |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 243 | |
| 244 | ACPI BATTERY DRIVERS |
Len Brown | a414655 | 2007-06-23 15:54:36 -0400 | [diff] [blame] | 245 | P: Alexey Starikovskiy |
| 246 | M: astarikovskiy@suse.de |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 247 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 248 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 249 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 250 | F: drivers/acpi/battery.c |
| 251 | F: drivers/acpi/*sbs* |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 252 | |
| 253 | ACPI EC DRIVER |
| 254 | P: Alexey Starikovskiy |
Len Brown | a414655 | 2007-06-23 15:54:36 -0400 | [diff] [blame] | 255 | M: astarikovskiy@suse.de |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 256 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 257 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 258 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 259 | F: drivers/acpi/ec.c |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 260 | |
| 261 | ACPI FAN DRIVER |
Len Brown | 65573ee | 2008-06-27 11:22:46 -0400 | [diff] [blame] | 262 | P: Zhang Rui |
| 263 | M: rui.zhang@intel.com |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 264 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 265 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 266 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 267 | F: drivers/acpi/fan.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | |
Kristen Carlson Accardi | 998be20 | 2006-07-26 10:52:33 -0700 | [diff] [blame] | 269 | ACPI PCI HOTPLUG DRIVER |
| 270 | P: Kristen Carlson Accardi |
| 271 | M: kristen.c.accardi@intel.com |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 272 | L: linux-pci@vger.kernel.org |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 273 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 274 | F: drivers/pci/hotplug/acpi* |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 275 | |
| 276 | ACPI THERMAL DRIVER |
Len Brown | 65573ee | 2008-06-27 11:22:46 -0400 | [diff] [blame] | 277 | P: Zhang Rui |
| 278 | M: rui.zhang@intel.com |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 279 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 280 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 281 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 282 | F: drivers/acpi/*thermal* |
Kristen Carlson Accardi | 998be20 | 2006-07-26 10:52:33 -0700 | [diff] [blame] | 283 | |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 284 | ACPI VIDEO DRIVER |
Len Brown | 65573ee | 2008-06-27 11:22:46 -0400 | [diff] [blame] | 285 | P: Zhang Rui |
Len Brown | 38e09d8 | 2007-10-25 17:55:59 -0400 | [diff] [blame] | 286 | M: rui.zhang@intel.com |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 287 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 288 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 289 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 290 | F: drivers/acpi/video.c |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 291 | |
Carlos Corbacho | bff431e | 2008-02-05 02:17:04 +0000 | [diff] [blame] | 292 | ACPI WMI DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 293 | P: Carlos Corbacho |
| 294 | M: carlos@strangeworlds.co.uk |
| 295 | L: linux-acpi@vger.kernel.org |
| 296 | W: http://www.lesswatts.org/projects/acpi/ |
| 297 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 298 | F: drivers/platform/x86/wmi.c |
Carlos Corbacho | bff431e | 2008-02-05 02:17:04 +0000 | [diff] [blame] | 299 | |
Thibaut VARENE | 2f39d51 | 2008-02-20 21:05:56 +0100 | [diff] [blame] | 300 | AD1889 ALSA SOUND DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 301 | P: Kyle McMartin |
| 302 | M: kyle@mcmartin.ca |
| 303 | P: Thibaut Varene |
| 304 | M: T-Bone@parisc-linux.org |
| 305 | W: http://wiki.parisc-linux.org/AD1889 |
| 306 | L: linux-parisc@vger.kernel.org |
| 307 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 308 | F: sound/pci/ad1889.* |
Thibaut VARENE | 2f39d51 | 2008-02-20 21:05:56 +0100 | [diff] [blame] | 309 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | ADM1025 HARDWARE MONITOR DRIVER |
| 311 | P: Jean Delvare |
| 312 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 313 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 315 | F: Documentation/hwmon/adm1025 |
| 316 | F: drivers/hwmon/adm1025.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | |
Corentin Labbe | cae2caa | 2007-02-14 21:15:04 +0100 | [diff] [blame] | 318 | ADM1029 HARDWARE MONITOR DRIVER |
| 319 | P: Corentin Labbe |
| 320 | M: corentin.labbe@geomatys.fr |
| 321 | L: lm-sensors@lm-sensors.org |
| 322 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 323 | F: drivers/hwmon/adm1029.c |
Corentin Labbe | cae2caa | 2007-02-14 21:15:04 +0100 | [diff] [blame] | 324 | |
Michael Wu | cc0b88c | 2007-08-31 01:15:25 -0400 | [diff] [blame] | 325 | ADM8211 WIRELESS DRIVER |
| 326 | P: Michael Wu |
| 327 | M: flamingice@sourmilk.net |
| 328 | L: linux-wireless@vger.kernel.org |
| 329 | W: http://linuxwireless.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 330 | 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] | 331 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 332 | F: drivers/net/wireless/adm8211.* |
Michael Wu | cc0b88c | 2007-08-31 01:15:25 -0400 | [diff] [blame] | 333 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | ADT746X FAN DRIVER |
| 335 | P: Colin Leroy |
| 336 | M: colin@colino.net |
| 337 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 338 | F: drivers/macintosh/therm_adt746x.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | |
Matthew Wilcox | 8c6af9e | 2007-07-26 11:03:19 -0400 | [diff] [blame] | 340 | ADVANSYS SCSI DRIVER |
| 341 | P: Matthew Wilcox |
| 342 | M: matthew@wil.cx |
| 343 | L: linux-scsi@vger.kernel.org |
| 344 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 345 | F: Documentation/scsi/advansys.txt |
| 346 | F: drivers/scsi/advansys.c |
Matthew Wilcox | 8c6af9e | 2007-07-26 11:03:19 -0400 | [diff] [blame] | 347 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | AEDSP16 DRIVER |
| 349 | P: Riccardo Facchetti |
| 350 | M: fizban@tin.it |
| 351 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 352 | F: sound/oss/aedsp16.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | |
| 354 | AFFS FILE SYSTEM |
| 355 | P: Roman Zippel |
| 356 | M: zippel@linux-m68k.org |
| 357 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 358 | F: Documentation/filesystems/affs.txt |
| 359 | F: fs/affs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 361 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
| 362 | P: David Howells |
| 363 | M: dhowells@redhat.com |
| 364 | L: linux-afs@lists.infradead.org |
| 365 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 366 | F: fs/afs/ |
| 367 | F: include/net/af_rxrpc.h |
| 368 | F: net/rxrpc/af_rxrpc.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 369 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | AGPGART DRIVER |
Dave Jones | 70e8992 | 2007-07-09 20:23:50 -0400 | [diff] [blame] | 371 | P: David Airlie |
| 372 | M: airlied@linux.ie |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 373 | 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] | 374 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 375 | F: drivers/char/agp/ |
| 376 | F: include/linux/agp* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | |
| 378 | AHA152X SCSI DRIVER |
| 379 | P: Juergen E. Fischer |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 380 | M: fischer@norbit.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | L: linux-scsi@vger.kernel.org |
| 382 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 383 | F: drivers/scsi/aha152x* |
| 384 | F: drivers/scsi/pcmcia/aha152x* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | |
Hannes Reinecke | 64624d4 | 2007-10-19 10:32:29 +0200 | [diff] [blame] | 386 | AIC7XXX / AIC79XX SCSI DRIVER |
| 387 | P: Hannes Reinecke |
| 388 | M: hare@suse.de |
| 389 | L: linux-scsi@vger.kernel.org |
| 390 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 391 | F: drivers/scsi/aic7xxx/ |
| 392 | F: drivers/scsi/aic7xxx_old/ |
Hannes Reinecke | 64624d4 | 2007-10-19 10:32:29 +0200 | [diff] [blame] | 393 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 394 | AIO |
| 395 | P: Benjamin LaHaise |
| 396 | M: bcrl@kvack.org |
| 397 | L: linux-aio@kvack.org |
| 398 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 399 | F: fs/aio.c |
| 400 | F: include/linux/*aio*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 401 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | ALCATEL SPEEDTOUCH USB DRIVER |
| 403 | P: Duncan Sands |
| 404 | M: duncan.sands@free.fr |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 405 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | W: http://www.linux-usb.org/SpeedTouch/ |
| 407 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 408 | F: drivers/usb/atm/speedtch.c |
| 409 | F: drivers/usb/atm/usbatm.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 411 | ALCHEMY AU1XX0 MMC DRIVER |
Manuel Lauss | 08fcb72 | 2008-06-09 08:40:35 +0200 | [diff] [blame] | 412 | P: Manuel Lauss |
| 413 | M: manuel.lauss@gmail.com |
| 414 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 415 | F: drivers/mmc/host/au1xmmc.c |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 416 | |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 417 | ALI1563 I2C DRIVER |
| 418 | P: Rudolf Marek |
Jean Delvare | 7188cc6 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 419 | M: r.marek@assembler.cz |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 420 | L: linux-i2c@vger.kernel.org |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 421 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 422 | F: Documentation/i2c/busses/i2c-ali1563 |
| 423 | F: drivers/i2c/busses/i2c-ali1563.c |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 424 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | ALPHA PORT |
| 426 | P: Richard Henderson |
| 427 | M: rth@twiddle.net |
| 428 | S: Odd Fixes for 2.4; Maintained for 2.6. |
| 429 | P: Ivan Kokshaysky |
| 430 | M: ink@jurassic.park.msu.ru |
| 431 | S: Maintained for 2.4; PCI support for 2.6. |
Cheng Renquan | a940669 | 2009-03-31 15:23:35 -0700 | [diff] [blame] | 432 | L: linux-alpha@vger.kernel.org |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 433 | F: arch/alpha/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 435 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
| 436 | P: Thomas Dahlmann |
Thomas Dahlmann | ba94471 | 2009-05-28 14:34:30 -0700 | [diff] [blame] | 437 | M: dahlmann.thomas@arcor.de |
Jordan Crouse | 67d7671 | 2008-05-12 14:02:22 -0700 | [diff] [blame] | 438 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 439 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 440 | F: drivers/usb/gadget/amd5536udc.* |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 441 | |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 442 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 443 | P: Jordan Crouse |
Jordan Crouse | 67d7671 | 2008-05-12 14:02:22 -0700 | [diff] [blame] | 444 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 445 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
| 446 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 447 | F: arch/x86/kernel/geode_32.c |
| 448 | F: drivers/char/hw_random/geode-rng.c |
| 449 | F: drivers/crypto/geode* |
| 450 | F: drivers/video/geode/ |
| 451 | F: arch/x86/include/asm/geode.h |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 452 | |
Joerg Roedel | 919ee7d | 2008-06-26 21:28:09 +0200 | [diff] [blame] | 453 | AMD IOMMU (AMD-VI) |
| 454 | P: Joerg Roedel |
| 455 | M: joerg.roedel@amd.com |
| 456 | L: iommu@lists.linux-foundation.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 457 | 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] | 458 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 459 | F: arch/x86/kernel/amd_iommu*.c |
| 460 | F: arch/x86/include/asm/amd_iommu*.h |
Joerg Roedel | 919ee7d | 2008-06-26 21:28:09 +0200 | [diff] [blame] | 461 | |
Peter Oruba | e7f5b30 | 2008-07-28 18:44:11 +0200 | [diff] [blame] | 462 | AMD MICROCODE UPDATE SUPPORT |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 463 | P: Andreas Herrmann |
Randy Dunlap | f403bb8 | 2009-04-13 14:39:36 -0700 | [diff] [blame] | 464 | M: andreas.herrmann3@amd.com |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 465 | L: amd64-microcode@amd64.org |
| 466 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 467 | F: arch/x86/kernel/microcode_amd.c |
Peter Oruba | e7f5b30 | 2008-07-28 18:44:11 +0200 | [diff] [blame] | 468 | |
Stelian Pop | 284f42b | 2006-12-12 18:18:31 +0100 | [diff] [blame] | 469 | AMS (Apple Motion Sensor) DRIVER |
| 470 | P: Stelian Pop |
| 471 | M: stelian@popies.net |
| 472 | P: Michael Hanselmann |
| 473 | M: linux-kernel@hansmi.ch |
| 474 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 475 | F: drivers/hwmon/ams/ |
Stelian Pop | 284f42b | 2006-12-12 18:18:31 +0100 | [diff] [blame] | 476 | |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 477 | AMSO1100 RNIC DRIVER |
| 478 | P: Tom Tucker |
| 479 | M: tom@opengridcomputing.com |
| 480 | P: Steve Wise |
| 481 | M: swise@opengridcomputing.com |
Roland Dreier | 7852682 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 482 | L: general@lists.openfabrics.org |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 483 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 484 | F: drivers/infiniband/hw/amso1100/ |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 485 | |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 486 | AOA (Apple Onboard Audio) ALSA DRIVER |
| 487 | P: Johannes Berg |
| 488 | M: johannes@sipsolutions.net |
| 489 | L: linuxppc-dev@ozlabs.org |
Takashi Iwai | 8262204 | 2007-04-16 12:32:52 +0200 | [diff] [blame] | 490 | L: alsa-devel@alsa-project.org (subscribers-only) |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 491 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 492 | F: sound/aoa/ |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 493 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | APM DRIVER |
| 495 | P: Stephen Rothwell |
| 496 | M: sfr@canb.auug.org.au |
| 497 | L: linux-laptop@vger.kernel.org |
| 498 | W: http://www.canb.auug.org.au/~sfr/ |
| 499 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 500 | F: arch/x86/kernel/apm_32.c |
| 501 | F: include/linux/apm_bios.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | |
Henrik Rydberg | bd7aa4b | 2008-09-02 14:35:43 -0700 | [diff] [blame] | 503 | APPLE BCM5974 MULTITOUCH DRIVER |
| 504 | P: Henrik Rydberg |
| 505 | M: rydberg@euromail.se |
| 506 | L: linux-input@vger.kernel.org |
| 507 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 508 | F: drivers/input/mouse/bcm5974.c |
Henrik Rydberg | bd7aa4b | 2008-09-02 14:35:43 -0700 | [diff] [blame] | 509 | |
Nicolas Boichat | 6f2fad7 | 2007-05-08 00:24:52 -0700 | [diff] [blame] | 510 | APPLE SMC DRIVER |
| 511 | P: Nicolas Boichat |
| 512 | M: nicolas@boichat.ch |
| 513 | L: mactel-linux-devel@lists.sourceforge.net |
| 514 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 515 | F: drivers/hwmon/applesmc.c |
Nicolas Boichat | 6f2fad7 | 2007-05-08 00:24:52 -0700 | [diff] [blame] | 516 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | APPLETALK NETWORK LAYER |
| 518 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 519 | M: acme@ghostprotocols.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 521 | F: drivers/net/appletalk/ |
| 522 | F: net/appletalk/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | |
Johannes Berg | eb9ebe6 | 2007-10-27 23:42:45 -0400 | [diff] [blame] | 524 | APPLETOUCH TOUCHPAD DRIVER |
| 525 | P: Johannes Berg |
| 526 | M: johannes@sipsolutions.net |
Dmitry Torokhov | eb76c5c | 2007-11-02 09:07:33 -0400 | [diff] [blame] | 527 | L: linux-input@vger.kernel.org |
Johannes Berg | eb9ebe6 | 2007-10-27 23:42:45 -0400 | [diff] [blame] | 528 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 529 | F: Documentation/input/appletouch.txt |
| 530 | F: drivers/input/mouse/appletouch.c |
Johannes Berg | eb9ebe6 | 2007-10-27 23:42:45 -0400 | [diff] [blame] | 531 | |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 532 | ARC FRAMEBUFFER DRIVER |
| 533 | P: Jaya Kumar |
| 534 | M: jayalk@intworks.biz |
| 535 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 536 | F: drivers/video/arcfb.c |
| 537 | F: drivers/video/fb_defio.c |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 538 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | ARM MFM AND FLOPPY DRIVERS |
| 540 | P: Ian Molton |
| 541 | M: spyro@f2s.com |
| 542 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 543 | F: arch/arm/lib/floppydma.S |
| 544 | F: arch/arm/include/asm/floppy.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 546 | ARM PORT |
| 547 | P: Russell King |
| 548 | M: linux@arm.linux.org.uk |
| 549 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 550 | W: http://www.arm.linux.org.uk/ |
| 551 | S: Maintained |
| 552 | F: arch/arm/ |
| 553 | |
Russell King | 2761f5c | 2007-05-24 06:56:08 +0200 | [diff] [blame] | 554 | ARM PRIMECELL MMCI PL180/1 DRIVER |
Pierre Ossman | 6d79947 | 2008-07-22 14:36:57 +0200 | [diff] [blame] | 555 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 556 | F: drivers/mmc/host/mmci.* |
Russell King | 2761f5c | 2007-05-24 06:56:08 +0200 | [diff] [blame] | 557 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 558 | ARM/ADI ROADRUNNER MACHINE SUPPORT |
| 559 | P: Lennert Buytenhek |
| 560 | M: kernel@wantstofly.org |
| 561 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 562 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 563 | F: arch/arm/mach-ixp23xx/ |
| 564 | F: arch/arm/mach-ixp23xx/include/mach/ |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 565 | |
| 566 | ARM/ADS SPHERE MACHINE SUPPORT |
| 567 | P: Lennert Buytenhek |
| 568 | M: kernel@wantstofly.org |
| 569 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 570 | S: Maintained |
| 571 | |
Sergey Lapin | 9c784f9 | 2008-08-03 02:29:48 +0100 | [diff] [blame] | 572 | ARM/AFEB9260 MACHINE SUPPORT |
| 573 | P: Sergey Lapin |
| 574 | M: slapin@ossfans.org |
| 575 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 576 | S: Maintained |
| 577 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 578 | ARM/AJECO 1ARM MACHINE SUPPORT |
| 579 | P: Lennert Buytenhek |
| 580 | M: kernel@wantstofly.org |
| 581 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 582 | S: Maintained |
| 583 | |
Andrew Victor | d4a89c7 | 2006-12-04 13:56:21 +0100 | [diff] [blame] | 584 | ARM/ATMEL AT91RM9200 ARM ARCHITECTURE |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 585 | P: Andrew Victor |
| 586 | M: linux@maxim.org.za |
| 587 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 588 | W: http://maxim.org.za/at91_26.html |
| 589 | S: Maintained |
Andrew Victor | d4a89c7 | 2006-12-04 13:56:21 +0100 | [diff] [blame] | 590 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 591 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
| 592 | P: Lennert Buytenhek |
| 593 | M: kernel@wantstofly.org |
| 594 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 595 | S: Maintained |
| 596 | |
| 597 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT |
| 598 | P: Lennert Buytenhek |
| 599 | M: kernel@wantstofly.org |
| 600 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 601 | S: Maintained |
| 602 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 603 | ARM/CLKDEV SUPPORT |
| 604 | P: Russell King |
| 605 | M: linux@arm.linux.org.uk |
| 606 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 607 | F: arch/arm/common/clkdev.c |
| 608 | F: arch/arm/include/asm/clkdev.h |
| 609 | |
Mike Rapoport | d48134e | 2008-08-20 09:03:26 +0100 | [diff] [blame] | 610 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
Russell King | a9da4f7 | 2008-07-12 21:42:04 +0100 | [diff] [blame] | 611 | P: Mike Rapoport |
| 612 | M: mike@compulab.co.il |
| 613 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 614 | S: Maintained |
| 615 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | ARM/CORGI MACHINE SUPPORT |
| 617 | P: Richard Purdie |
| 618 | M: rpurdie@rpsys.net |
| 619 | S: Maintained |
| 620 | |
Paulius Zaleckas | 881a95f | 2009-03-26 10:06:27 +0200 | [diff] [blame] | 621 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
| 622 | P: Paulius Zaleckas |
| 623 | M: paulius.zaleckas@teltonika.lt |
| 624 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 625 | T: git git://gitorious.org/linux-gemini/mainline.git |
Paulius Zaleckas | 881a95f | 2009-03-26 10:06:27 +0200 | [diff] [blame] | 626 | S: Maintained |
| 627 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 628 | ARM/EBSA110 MACHINE SUPPORT |
| 629 | P: Russell King |
| 630 | M: linux@arm.linux.org.uk |
| 631 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 632 | W: http://www.arm.linux.org.uk/ |
| 633 | S: Maintained |
| 634 | F: arch/arm/mach-ebsa110/ |
| 635 | F: drivers/net/arm/am79c961a.* |
| 636 | |
Russell King | a9da4f7 | 2008-07-12 21:42:04 +0100 | [diff] [blame] | 637 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
| 638 | P: Daniel Ribeiro |
| 639 | M: drwyrm@gmail.com |
| 640 | P: Stefan Schmidt |
| 641 | M: stefan@openezx.org |
| 642 | P: Harald Welte |
| 643 | M: laforge@openezx.org |
| 644 | L: openezx-devel@lists.openezx.org (subscribers-only) |
| 645 | W: http://www.openezx.org/ |
| 646 | S: Maintained |
| 647 | |
Paulius Zaleckas | 6a915af | 2009-03-25 13:10:20 +0200 | [diff] [blame] | 648 | ARM/FARADAY FA526 PORT |
| 649 | P: Paulius Zaleckas |
| 650 | M: paulius.zaleckas@teltonika.lt |
| 651 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 652 | S: Maintained |
| 653 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 654 | ARM/FOOTBRIDGE ARCHITECTURE |
| 655 | P: Russell King |
| 656 | M: linux@arm.linux.org.uk |
| 657 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 658 | W: http://www.arm.linux.org.uk/ |
| 659 | S: Maintained |
| 660 | F: arch/arm/include/asm/hardware/dec21285.h |
| 661 | F: arch/arm/mach-footbridge/ |
| 662 | |
Sascha Hauer | 86183a5 | 2008-07-24 23:50:35 +0200 | [diff] [blame] | 663 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
| 664 | P: Sascha Hauer |
| 665 | M: kernel@pengutronix.de |
| 666 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 667 | S: Maintained |
| 668 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 669 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
| 670 | P: Lennert Buytenhek |
| 671 | M: kernel@wantstofly.org |
| 672 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 673 | S: Maintained |
| 674 | |
Jaya Kumar | 90b8fc3 | 2008-03-15 05:11:07 +0100 | [diff] [blame] | 675 | ARM/GUMSTIX MACHINE SUPPORT |
| 676 | P: Steve Sakoman |
| 677 | M: sakoman@gmail.com |
| 678 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 679 | S: Maintained |
| 680 | |
Kristoffer Ericson | 21f37bc | 2006-11-21 01:20:31 +0100 | [diff] [blame] | 681 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 682 | P: Kristoffer Ericson |
| 683 | M: kristoffer.ericson@gmail.com |
| 684 | W: www.jlime.com |
| 685 | S: Maintained |
Kristoffer Ericson | 21f37bc | 2006-11-21 01:20:31 +0100 | [diff] [blame] | 686 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 687 | ARM/INTEL IOP32X ARM ARCHITECTURE |
| 688 | P: Lennert Buytenhek |
| 689 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 690 | P: Dan Williams |
| 691 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 692 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 693 | S: Supported |
| 694 | |
| 695 | ARM/INTEL IOP33X ARM ARCHITECTURE |
| 696 | P: Dan Williams |
| 697 | M: dan.j.williams@intel.com |
| 698 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 699 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 700 | |
| 701 | ARM/INTEL IOP13XX ARM ARCHITECTURE |
| 702 | P: Lennert Buytenhek |
| 703 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 704 | P: Dan Williams |
| 705 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 706 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 707 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 708 | |
| 709 | ARM/INTEL IQ81342EX MACHINE SUPPORT |
| 710 | P: Lennert Buytenhek |
| 711 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 712 | P: Dan Williams |
| 713 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 714 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 715 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 716 | |
| 717 | ARM/INTEL IXP2000 ARM ARCHITECTURE |
| 718 | P: Lennert Buytenhek |
| 719 | M: kernel@wantstofly.org |
| 720 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 721 | S: Maintained |
| 722 | |
| 723 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
| 724 | P: Lennert Buytenhek |
| 725 | M: kernel@wantstofly.org |
| 726 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 727 | S: Maintained |
| 728 | |
| 729 | ARM/INTEL IXP23XX ARM ARCHITECTURE |
| 730 | P: Lennert Buytenhek |
| 731 | M: kernel@wantstofly.org |
| 732 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 733 | S: Maintained |
| 734 | |
| 735 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
| 736 | P: Lennert Buytenhek |
| 737 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 738 | P: Dan Williams |
| 739 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 740 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 741 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 742 | |
| 743 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT |
| 744 | P: Lennert Buytenhek |
| 745 | M: kernel@wantstofly.org |
| 746 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 747 | S: Maintained |
| 748 | |
| 749 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
| 750 | P: Lennert Buytenhek |
| 751 | M: kernel@wantstofly.org |
| 752 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 753 | S: Maintained |
| 754 | |
Philipp Zabel | 3b886171 | 2008-07-09 21:27:15 +0100 | [diff] [blame] | 755 | ARM/MAGICIAN MACHINE SUPPORT |
| 756 | P: Philipp Zabel |
| 757 | M: philipp.zabel@gmail.com |
| 758 | S: Maintained |
| 759 | |
Kristoffer Ericson | 9624dfe | 2008-10-09 16:50:46 +0100 | [diff] [blame] | 760 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
| 761 | P: Michael Petchkovsky |
| 762 | M: mkpetch@internode.on.net |
| 763 | S: Maintained |
| 764 | |
Dirk Opfer | 8459c15 | 2005-11-06 14:27:52 +0000 | [diff] [blame] | 765 | ARM/TOSA MACHINE SUPPORT |
Dmitry Eremin-Solenikov | bfa0b1c | 2009-01-06 14:41:05 -0800 | [diff] [blame] | 766 | P: Dmitry Eremin-Solenikov |
Dmitry Baryshkov | 9388704 | 2008-07-07 10:50:06 +0100 | [diff] [blame] | 767 | M: dbaryshkov@gmail.com |
Dirk Opfer | 8459c15 | 2005-11-06 14:27:52 +0000 | [diff] [blame] | 768 | P: Dirk Opfer |
| 769 | M: dirk@opfer-online.de |
| 770 | S: Maintained |
| 771 | |
Marek Vasut | 54088bf | 2009-03-24 00:29:29 +0100 | [diff] [blame] | 772 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2 SUPPORT |
Marek Vašut | b5e4ad5 | 2008-07-07 17:25:46 +0100 | [diff] [blame] | 773 | P: Marek Vasut |
| 774 | M: marek.vasut@gmail.com |
| 775 | W: http://hackndev.com |
| 776 | S: Maintained |
| 777 | |
Sergey Lapin | c49e1e6 | 2008-08-29 15:47:52 +0100 | [diff] [blame] | 778 | ARM/PALMZ72 SUPPORT |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 779 | P: Sergey Lapin |
| 780 | M: slapin@ossfans.org |
| 781 | W: http://hackndev.com |
| 782 | S: Maintained |
Sergey Lapin | c49e1e6 | 2008-08-29 15:47:52 +0100 | [diff] [blame] | 783 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | ARM/PLEB SUPPORT |
| 785 | P: Peter Chubb |
| 786 | M: pleb@gelato.unsw.edu.au |
| 787 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
| 788 | S: Maintained |
| 789 | |
| 790 | ARM/PT DIGITAL BOARD PORT |
| 791 | P: Stefan Eletzhofer |
| 792 | M: stefan.eletzhofer@eletztrick.de |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 793 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | W: http://www.arm.linux.org.uk/ |
| 795 | S: Maintained |
| 796 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 797 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
| 798 | P: Lennert Buytenhek |
| 799 | M: kernel@wantstofly.org |
| 800 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 801 | S: Maintained |
| 802 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 803 | ARM/RISCPC ARCHITECTURE |
| 804 | P: Russell King |
| 805 | M: linux@arm.linux.org.uk |
| 806 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 807 | W: http://www.arm.linux.org.uk/ |
| 808 | S: Maintained |
| 809 | F: arch/arm/common/time-acorn.c |
| 810 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
| 811 | F: arch/arm/include/asm/hardware/ioc.h |
| 812 | F: arch/arm/include/asm/hardware/iomd.h |
| 813 | F: arch/arm/include/asm/hardware/memc.h |
| 814 | F: arch/arm/mach-rpc/ |
| 815 | F: drivers/net/arm/ether* |
| 816 | F: drivers/scsi/arm/ |
| 817 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | ARM/SHARK MACHINE SUPPORT |
| 819 | P: Alexander Schulz |
| 820 | M: alex@shark-linux.de |
| 821 | W: http://www.shark-linux.de/shark.html |
| 822 | S: Maintained |
| 823 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | ARM/S3C2410 ARM ARCHITECTURE |
| 825 | P: Ben Dooks |
Ben Dooks | 449d4dd | 2006-12-22 01:10:23 -0800 | [diff] [blame] | 826 | M: ben-linux@fluff.org |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 827 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | W: http://www.fluff.org/ben/linux/ |
| 829 | S: Maintained |
| 830 | |
| 831 | ARM/S3C2440 ARM ARCHITECTURE |
| 832 | P: Ben Dooks |
Ben Dooks | 449d4dd | 2006-12-22 01:10:23 -0800 | [diff] [blame] | 833 | M: ben-linux@fluff.org |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 834 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | W: http://www.fluff.org/ben/linux/ |
| 836 | S: Maintained |
| 837 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 838 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
| 839 | P: Lennert Buytenhek |
| 840 | M: kernel@wantstofly.org |
| 841 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 842 | S: Maintained |
| 843 | |
| 844 | ARM/THECUS N2100 MACHINE SUPPORT |
| 845 | P: Lennert Buytenhek |
| 846 | M: kernel@wantstofly.org |
| 847 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 848 | S: Maintained |
| 849 | |
wanzongshun | 98ad6e3 | 2009-02-13 06:04:32 +0100 | [diff] [blame] | 850 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 851 | P: Wan ZongShun |
| 852 | M: mcuos.com@gmail.com |
| 853 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 854 | W: http://www.mcuos.com |
| 855 | S: Maintained |
wanzongshun | 98ad6e3 | 2009-02-13 06:04:32 +0100 | [diff] [blame] | 856 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 857 | ARM/VFP SUPPORT |
| 858 | P: Russell King |
| 859 | M: linux@arm.linux.org.uk |
| 860 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 861 | W: http://www.arm.linux.org.uk/ |
| 862 | S: Maintained |
| 863 | F: arch/arm/vfp/ |
| 864 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | ARPD SUPPORT |
| 866 | P: Jonathan Layes |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 867 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 869 | F: net/ipv4/arp.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | |
| 871 | ASUS ACPI EXTRAS DRIVER |
Len Brown | 0b67d94 | 2006-12-22 21:18:56 -0500 | [diff] [blame] | 872 | P: Corentin Chary |
| 873 | M: corentincj@iksaif.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | P: Karol Kozimor |
| 875 | M: sziwan@users.sourceforge.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | L: acpi4asus-user@lists.sourceforge.net |
| 877 | W: http://sourceforge.net/projects/acpi4asus |
Len Brown | 0b67d94 | 2006-12-22 21:18:56 -0500 | [diff] [blame] | 878 | W: http://xf.iksaif.net/acpi4asus |
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: arch/x86/kernel/acpi/boot.c |
| 881 | F: drivers/platform/x86/asus_acpi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 883 | ASUS ASB100 HARDWARE MONITOR DRIVER |
| 884 | P: Mark M. Hoffman |
| 885 | M: mhoffman@lightlink.com |
| 886 | L: lm-sensors@lm-sensors.org |
| 887 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 888 | F: drivers/hwmon/asb100.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 889 | |
Corentin Chary | 85091b7 | 2007-01-26 14:04:30 +0100 | [diff] [blame] | 890 | ASUS LAPTOP EXTRAS DRIVER |
| 891 | P: Corentin Chary |
| 892 | M: corentincj@iksaif.net |
| 893 | L: acpi4asus-user@lists.sourceforge.net |
| 894 | W: http://sourceforge.net/projects/acpi4asus |
| 895 | W: http://xf.iksaif.net/acpi4asus |
| 896 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 897 | F: drivers/platform/x86/asus-laptop.c |
Corentin Chary | 85091b7 | 2007-01-26 14:04:30 +0100 | [diff] [blame] | 898 | |
Andrew Morton | 953a647 | 2008-11-06 12:53:28 -0800 | [diff] [blame] | 899 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 900 | P: Dan Williams |
| 901 | M: dan.j.williams@intel.com |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 902 | P: Maciej Sosnowski |
| 903 | M: maciej.sosnowski@intel.com |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 904 | L: linux-kernel@vger.kernel.org |
| 905 | W: http://sourceforge.net/projects/xscaleiop |
| 906 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 907 | F: Documentation/crypto/async-tx-api.txt |
| 908 | F: crypto/async_tx/ |
| 909 | F: drivers/dma/ |
| 910 | F: include/linux/dmaengine.h |
| 911 | F: include/linux/async_tx.h |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 912 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 913 | ATA OVER ETHERNET (AOE) DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | P: Ed L. Cashin |
| 915 | M: ecashin@coraid.com |
| 916 | W: http://www.coraid.com/support/linux |
| 917 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 918 | F: Documentation/aoe/ |
| 919 | F: drivers/block/aoe/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 921 | ATHEROS ATH5K WIRELESS DRIVER |
| 922 | P: Jiri Slaby |
| 923 | M: jirislaby@gmail.com |
| 924 | P: Nick Kossifidis |
| 925 | M: mickflemm@gmail.com |
| 926 | P: Luis R. Rodriguez |
Luis R. Rodriguez | 4fe0657 | 2008-10-13 14:08:07 -0700 | [diff] [blame] | 927 | M: lrodriguez@atheros.com |
Bob Copeland | adef199 | 2008-10-29 08:30:57 -0400 | [diff] [blame] | 928 | P: Bob Copeland |
| 929 | M: me@bobcopeland.com |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 930 | L: linux-wireless@vger.kernel.org |
| 931 | L: ath5k-devel@lists.ath5k.org |
| 932 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 933 | F: drivers/net/wireless/ath5k/ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 934 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 935 | ATHEROS ATH9K WIRELESS DRIVER |
| 936 | P: Luis R. Rodriguez |
| 937 | M: lrodriguez@atheros.com |
| 938 | P: Jouni Malinen |
| 939 | M: jmalinen@atheros.com |
| 940 | L: linux-wireless@vger.kernel.org |
| 941 | L: ath9k-devel@lists.ath9k.org |
| 942 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 943 | F: drivers/net/wireless/ath9k/ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 944 | |
Christian Lamparter | 75ca88c | 2009-03-21 23:11:49 +0100 | [diff] [blame] | 945 | ATHEROS AR9170 WIRELESS DRIVER |
| 946 | P: Christian Lamparter |
| 947 | M: chunkeey@web.de |
| 948 | L: linux-wireless@vger.kernel.org |
| 949 | W: http://wireless.kernel.org/en/users/Drivers/ar9170 |
| 950 | S: Maintained |
| 951 | F: drivers/net/wireless/ar9170/ |
| 952 | |
Ville Syrjala | 6f69a6d | 2008-04-21 22:21:10 +0000 | [diff] [blame] | 953 | ATI_REMOTE2 DRIVER |
| 954 | P: Ville Syrjala |
| 955 | M: syrjala@sci.fi |
| 956 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 957 | F: drivers/input/misc/ati_remote2.c |
Ville Syrjala | 6f69a6d | 2008-04-21 22:21:10 +0000 | [diff] [blame] | 958 | |
Chris Snook | 7ae115b | 2008-09-09 03:26:57 -0400 | [diff] [blame] | 959 | ATLX ETHERNET DRIVERS |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 960 | P: Jay Cliburn |
| 961 | M: jcliburn@gmail.com |
| 962 | P: Chris Snook |
| 963 | M: csnook@redhat.com |
Chris Snook | 7ae115b | 2008-09-09 03:26:57 -0400 | [diff] [blame] | 964 | P: Jie Yang |
| 965 | M: jie.yang@atheros.com |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 966 | L: atl1-devel@lists.sourceforge.net |
| 967 | W: http://sourceforge.net/projects/atl1 |
| 968 | W: http://atl1.sourceforge.net |
| 969 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 970 | F: drivers/net/atlx/ |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 971 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | ATM |
| 973 | P: Chas Williams |
| 974 | M: chas@cmf.nrl.navy.mil |
Roland Dreier | f37bf90 | 2006-09-13 20:39:33 -0700 | [diff] [blame] | 975 | L: linux-atm-general@lists.sourceforge.net (subscribers-only) |
Jiri Slaby | 44ae98b | 2008-11-30 23:27:11 -0800 | [diff] [blame] | 976 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | W: http://linux-atm.sourceforge.net |
| 978 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 979 | F: drivers/atm/ |
| 980 | F: include/linux/atm* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 982 | ATMEL AT91 MCI DRIVER |
Pierre Ossman | 81764fa | 2007-07-15 18:47:38 +0200 | [diff] [blame] | 983 | P: Nicolas Ferre |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 984 | M: nicolas.ferre@atmel.com |
Pierre Ossman | 81764fa | 2007-07-15 18:47:38 +0200 | [diff] [blame] | 985 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 986 | W: http://www.atmel.com/products/AT91/ |
| 987 | W: http://www.at91.com/ |
| 988 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 989 | F: drivers/mmc/host/at91_mci.c |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 990 | |
Haavard Skinnemoen | a1cfac4 | 2008-02-08 04:21:00 -0800 | [diff] [blame] | 991 | ATMEL AT91 / AT32 SERIAL DRIVER |
| 992 | P: Haavard Skinnemoen |
| 993 | M: hskinnemoen@atmel.com |
| 994 | L: linux-kernel@vger.kernel.org |
| 995 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 996 | F: drivers/serial/atmel_serial.c |
Haavard Skinnemoen | a1cfac4 | 2008-02-08 04:21:00 -0800 | [diff] [blame] | 997 | |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 998 | ATMEL LCDFB DRIVER |
| 999 | P: Nicolas Ferre |
| 1000 | M: nicolas.ferre@atmel.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 1001 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1002 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1003 | F: drivers/video/atmel_lcdfb.c |
| 1004 | F: include/video/atmel_lcdc.h |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1005 | |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 1006 | ATMEL MACB ETHERNET DRIVER |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 1007 | P: Haavard Skinnemoen |
| 1008 | M: hskinnemoen@atmel.com |
| 1009 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1010 | F: drivers/net/macb.* |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 1011 | |
Haavard Skinnemoen | 754ce4f | 2007-02-14 00:33:09 -0800 | [diff] [blame] | 1012 | ATMEL SPI DRIVER |
| 1013 | P: Haavard Skinnemoen |
| 1014 | M: hskinnemoen@atmel.com |
| 1015 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1016 | F: drivers/spi/atmel_spi.* |
Haavard Skinnemoen | 754ce4f | 2007-02-14 00:33:09 -0800 | [diff] [blame] | 1017 | |
Haavard Skinnemoen | 914a3f3 | 2007-10-10 02:29:43 -0700 | [diff] [blame] | 1018 | ATMEL USBA UDC DRIVER |
| 1019 | P: Haavard Skinnemoen |
| 1020 | M: hskinnemoen@atmel.com |
| 1021 | L: kernel@avr32linux.org |
| 1022 | W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver |
| 1023 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1024 | F: drivers/usb/gadget/atmel_usba_udc.* |
Haavard Skinnemoen | 914a3f3 | 2007-10-10 02:29:43 -0700 | [diff] [blame] | 1025 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | ATMEL WIRELESS DRIVER |
| 1027 | P: Simon Kelley |
| 1028 | M: simon@thekelleys.org.uk |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 1029 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | W: http://www.thekelleys.org.uk/atmel |
| 1031 | W: http://atmelwlandriver.sourceforge.net/ |
| 1032 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1033 | F: drivers/net/wireless/atmel* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 1035 | AUDIT SUBSYSTEM |
Eric Paris | 0ef1970 | 2008-04-18 10:47:32 -0400 | [diff] [blame] | 1036 | P: Al Viro |
| 1037 | M: viro@zeniv.linux.org.uk |
| 1038 | P: Eric Paris |
| 1039 | M: eparis@redhat.com |
Gabriel C | b9a0620 | 2007-08-10 13:00:56 -0700 | [diff] [blame] | 1040 | L: linux-audit@redhat.com (subscribers-only) |
David Woodhouse | ad3f9a2 | 2005-07-13 15:28:29 +0100 | [diff] [blame] | 1041 | W: http://people.redhat.com/sgrubb/audit/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1042 | 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] | 1043 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1044 | F: include/linux/audit.h |
| 1045 | F: kernel/audit* |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 1046 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1047 | AUXILIARY DISPLAY DRIVERS |
| 1048 | P: Miguel Ojeda Sandonis |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1049 | M: miguel.ojeda.sandonis@gmail.com |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1050 | L: linux-kernel@vger.kernel.org |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1051 | W: http://miguelojeda.es/auxdisplay.htm |
| 1052 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1053 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1054 | F: drivers/auxdisplay/ |
| 1055 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1056 | |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1057 | AVR32 ARCHITECTURE |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1058 | P: Haavard Skinnemoen |
| 1059 | M: hskinnemoen@atmel.com |
| 1060 | W: http://www.atmel.com/products/AVR32/ |
| 1061 | W: http://avr32linux.org/ |
| 1062 | W: http://avrfreaks.net/ |
| 1063 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1064 | F: arch/avr32/ |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1065 | |
| 1066 | AVR32/AT32AP MACHINE SUPPORT |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1067 | P: Haavard Skinnemoen |
| 1068 | M: hskinnemoen@atmel.com |
| 1069 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1070 | F: arch/avr32/mach-at32ap/ |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1071 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | AX.25 NETWORK LAYER |
| 1073 | P: Ralf Baechle |
| 1074 | M: ralf@linux-mips.org |
| 1075 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 1076 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1078 | F: include/linux/ax25.h |
| 1079 | F: include/net/ax25.h |
| 1080 | F: net/ax25/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1082 | B43 WIRELESS DRIVER |
| 1083 | P: Michael Buesch |
| 1084 | M: mb@bu3sch.de |
| 1085 | P: Stefano Brivio |
| 1086 | M: stefano.brivio@polimi.it |
| 1087 | L: linux-wireless@vger.kernel.org |
| 1088 | W: http://linuxwireless.org/en/users/Drivers/b43 |
| 1089 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1090 | F: drivers/net/wireless/b43/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1091 | |
| 1092 | B43LEGACY WIRELESS DRIVER |
| 1093 | P: Larry Finger |
| 1094 | M: Larry.Finger@lwfinger.net |
| 1095 | P: Stefano Brivio |
| 1096 | M: stefano.brivio@polimi.it |
| 1097 | L: linux-wireless@vger.kernel.org |
| 1098 | W: http://linuxwireless.org/en/users/Drivers/b43 |
| 1099 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1100 | F: drivers/net/wireless/b43legacy/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1101 | |
Richard Purdie | 300abeb | 2007-02-07 22:21:07 +0000 | [diff] [blame] | 1102 | BACKLIGHT CLASS/SUBSYSTEM |
| 1103 | P: Richard Purdie |
| 1104 | M: rpurdie@rpsys.net |
| 1105 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1106 | F: drivers/video/backlight/ |
| 1107 | F: include/linux/backlight.h |
Richard Purdie | 300abeb | 2007-02-07 22:21:07 +0000 | [diff] [blame] | 1108 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1109 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
| 1110 | P: Thomas Sailer |
| 1111 | M: t.sailer@alumni.ethz.ch |
| 1112 | L: linux-hams@vger.kernel.org |
| 1113 | W: http://www.baycom.org/~tom/ham/ham.html |
| 1114 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1115 | F: drivers/net/hamradio/baycom* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1116 | |
| 1117 | BEFS FILE SYSTEM |
| 1118 | P: Sergey S. Kostyliov |
| 1119 | M: rathamahata@php4.ru |
| 1120 | L: linux-kernel@vger.kernel.org |
| 1121 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1122 | F: Documentation/filesystems/befs.txt |
| 1123 | F: fs/befs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1124 | |
| 1125 | BFS FILE SYSTEM |
| 1126 | P: Tigran A. Aivazian |
| 1127 | M: tigran@aivazian.fsnet.co.uk |
| 1128 | L: linux-kernel@vger.kernel.org |
| 1129 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1130 | F: Documentation/filesystems/bfs.txt |
| 1131 | F: fs/bfs/ |
| 1132 | F: include/linux/bfs_fs.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1133 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1134 | BLACKFIN ARCHITECTURE |
Mike Frysinger | 6c83429 | 2009-05-24 02:13:15 -0400 | [diff] [blame] | 1135 | P: Mike Frysinger |
| 1136 | M: vapier@gentoo.org |
Mike Frysinger | 5b93e13 | 2009-02-04 16:49:45 +0800 | [diff] [blame] | 1137 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | e3b2d3f | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1138 | W: http://blackfin.uclinux.org |
| 1139 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1140 | F: arch/blackfin/ |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1141 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1142 | BLACKFIN EMAC DRIVER |
Mike Frysinger | 6c83429 | 2009-05-24 02:13:15 -0400 | [diff] [blame] | 1143 | P: Michael Hennerich |
| 1144 | M: michael.hennerich@analog.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1145 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1146 | W: http://blackfin.uclinux.org |
| 1147 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1148 | F: drivers/net/bfin_mac.* |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1149 | |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1150 | BLACKFIN RTC DRIVER |
| 1151 | P: Mike Frysinger |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1152 | M: vapier.adi@gmail.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1153 | L: uclinux-dist-devel@blackfin.uclinux.org |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1154 | W: http://blackfin.uclinux.org |
| 1155 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1156 | F: drivers/rtc/rtc-bfin.c |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1157 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1158 | BLACKFIN SERIAL DRIVER |
Mike Frysinger | 9c5e710 | 2007-11-17 23:19:44 +0800 | [diff] [blame] | 1159 | P: Sonic Zhang |
| 1160 | M: sonic.zhang@analog.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1161 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | e3b2d3f | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1162 | W: http://blackfin.uclinux.org |
| 1163 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1164 | F: drivers/serial/bfin_5xx.c |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1165 | |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 1166 | BLACKFIN WATCHDOG DRIVER |
| 1167 | P: Mike Frysinger |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 1168 | M: vapier.adi@gmail.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1169 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 1170 | W: http://blackfin.uclinux.org |
| 1171 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1172 | F: drivers/watchdog/bfin_wdt.c |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 1173 | |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 1174 | BLACKFIN I2C TWI DRIVER |
| 1175 | P: Sonic Zhang |
| 1176 | M: sonic.zhang@analog.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1177 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 1178 | W: http://blackfin.uclinux.org/ |
| 1179 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1180 | F: drivers/i2c/busses/i2c-bfin-twi.c |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 1181 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1182 | BLOCK LAYER |
| 1183 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 1184 | M: axboe@kernel.dk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | L: linux-kernel@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1186 | 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] | 1187 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1188 | F: block/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 1190 | BLOCK2MTD DRIVER |
| 1191 | P: Joern Engel |
| 1192 | M: joern@lazybastard.org |
| 1193 | L: linux-mtd@lists.infradead.org |
| 1194 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1195 | F: drivers/mtd/devices/block2mtd.c |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 1196 | |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 1197 | BLUETOOTH DRIVERS |
| 1198 | P: Marcel Holtmann |
| 1199 | M: marcel@holtmann.org |
| 1200 | L: linux-bluetooth@vger.kernel.org |
| 1201 | W: http://www.bluez.org/ |
| 1202 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1203 | F: drivers/bluetooth/ |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 1204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | BLUETOOTH SUBSYSTEM |
| 1206 | P: Marcel Holtmann |
| 1207 | M: marcel@holtmann.org |
Pavel Machek | 781c284 | 2008-03-20 15:41:02 -0700 | [diff] [blame] | 1208 | L: linux-bluetooth@vger.kernel.org |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 1209 | W: http://www.bluez.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1210 | 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] | 1211 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1212 | F: net/bluetooth/ |
| 1213 | F: include/net/bluetooth/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | BONDING DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 1216 | P: Jay Vosburgh |
| 1217 | M: fubar@us.ibm.com |
| 1218 | L: bonding-devel@lists.sourceforge.net |
| 1219 | W: http://sourceforge.net/projects/bonding/ |
| 1220 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1221 | F: drivers/net/bonding/ |
| 1222 | F: include/linux/if_bonding.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1223 | |
Gary Zambrano | 3910589 | 2006-06-22 17:26:20 -0700 | [diff] [blame] | 1224 | BROADCOM B44 10/100 ETHERNET DRIVER |
| 1225 | P: Gary Zambrano |
| 1226 | M: zambrano@broadcom.com |
| 1227 | L: netdev@vger.kernel.org |
| 1228 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1229 | F: drivers/net/b44.* |
Gary Zambrano | 3910589 | 2006-06-22 17:26:20 -0700 | [diff] [blame] | 1230 | |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1231 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
| 1232 | P: Michael Chan |
| 1233 | M: mchan@broadcom.com |
| 1234 | L: netdev@vger.kernel.org |
| 1235 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1236 | F: drivers/net/bnx2.* |
| 1237 | F: drivers/net/bnx2_* |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1238 | |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 1239 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
Eilon Greenstein | 24e3fce | 2008-06-12 14:30:28 -0700 | [diff] [blame] | 1240 | P: Eilon Greenstein |
| 1241 | M: eilong@broadcom.com |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 1242 | L: netdev@vger.kernel.org |
| 1243 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1244 | F: drivers/net/bnx2x* |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 1245 | |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1246 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
Matt Carlson | 1318136 | 2009-02-25 14:41:06 +0000 | [diff] [blame] | 1247 | P: Matt Carlson |
| 1248 | M: mcarlson@broadcom.com |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 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/tg3.* |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1254 | |
Jens Axboe | 5cdf7f7 | 2007-07-17 08:58:06 +0200 | [diff] [blame] | 1255 | BSG (block layer generic sg v4 driver) |
| 1256 | P: FUJITA Tomonori |
| 1257 | M: fujita.tomonori@lab.ntt.co.jp |
| 1258 | L: linux-scsi@vger.kernel.org |
| 1259 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1260 | F: block/bsg.c |
| 1261 | F: include/linux/bsg.h |
Jens Axboe | 5cdf7f7 | 2007-07-17 08:58:06 +0200 | [diff] [blame] | 1262 | |
Michael Buesch | ff1d5c2 | 2008-07-25 01:46:10 -0700 | [diff] [blame] | 1263 | BT8XXGPIO DRIVER |
| 1264 | P: Michael Buesch |
| 1265 | M: mb@bu3sch.de |
| 1266 | W: http://bu3sch.de/btgpio.php |
| 1267 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1268 | F: drivers/gpio/bt8xxgpio.c |
Michael Buesch | ff1d5c2 | 2008-07-25 01:46:10 -0700 | [diff] [blame] | 1269 | |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 1270 | BTRFS FILE SYSTEM |
| 1271 | P: Chris Mason |
| 1272 | M: chris.mason@oracle.com |
| 1273 | L: linux-btrfs@vger.kernel.org |
| 1274 | W: http://btrfs.wiki.kernel.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1275 | 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] | 1276 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1277 | F: Documentation/filesystems/btrfs.txt |
| 1278 | F: fs/btrfs/ |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 1279 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | BTTV VIDEO4LINUX DRIVER |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 1281 | P: Mauro Carvalho Chehab |
Mauro Carvalho Chehab | 8d58d77 | 2006-01-27 16:32:02 -0200 | [diff] [blame] | 1282 | M: mchehab@infradead.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 1283 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 1284 | W: http://linuxtv.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1285 | 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] | 1286 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1287 | F: Documentation/video4linux/bttv/ |
| 1288 | F: drivers/media/video/bt8xx/bttv* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | |
David Howells | a5432f5 | 2009-04-20 15:46:45 +0100 | [diff] [blame] | 1290 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
| 1291 | P: David Howells |
| 1292 | M: dhowells@redhat.com |
| 1293 | L: linux-cachefs@redhat.com |
| 1294 | S: Supported |
| 1295 | F: Documentation/filesystems/caching/cachefiles.txt |
| 1296 | F: fs/cachefiles/ |
| 1297 | |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1298 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 1299 | P: Jonathan Corbet |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1300 | M: corbet@lwn.net |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 1301 | L: linux-media@vger.kernel.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 |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1303 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1304 | F: Documentation/video4linux/cafe_ccic |
| 1305 | F: drivers/media/video/cafe_ccic* |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1306 | |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 1307 | CALGARY x86-64 IOMMU |
| 1308 | P: Muli Ben-Yehuda |
| 1309 | M: muli@il.ibm.com |
| 1310 | P: Jon D. Mason |
Jon Mason | d8d2bed | 2006-10-05 18:47:21 +0200 | [diff] [blame] | 1311 | M: jdmason@kudzu.us |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 1312 | L: linux-kernel@vger.kernel.org |
| 1313 | L: discuss@x86-64.org |
| 1314 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1315 | F: arch/x86/kernel/pci-calgary_64.c |
| 1316 | F: arch/x86/kernel/tce_64.c |
| 1317 | F: arch/x86/include/asm/calgary.h |
| 1318 | F: arch/x86/include/asm/tce.h |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 1319 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1320 | CAN NETWORK LAYER |
| 1321 | P: Urs Thuermann |
| 1322 | M: urs.thuermann@volkswagen.de |
| 1323 | P: Oliver Hartkopp |
| 1324 | M: oliver.hartkopp@volkswagen.de |
| 1325 | L: socketcan-core@lists.berlios.de (subscribers-only) |
| 1326 | W: http://developer.berlios.de/projects/socketcan/ |
| 1327 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1328 | F: drivers/net/can/ |
| 1329 | F: include/linux/can/ |
| 1330 | F: include/linux/can.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1331 | |
Arnd Bergmann | b815454 | 2008-05-16 11:10:59 +0200 | [diff] [blame] | 1332 | CELL BROADBAND ENGINE ARCHITECTURE |
| 1333 | P: Arnd Bergmann |
| 1334 | M: arnd@arndb.de |
| 1335 | L: linuxppc-dev@ozlabs.org |
| 1336 | L: cbe-oss-dev@ozlabs.org |
| 1337 | W: http://www.ibm.com/developerworks/power/cell/ |
| 1338 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1339 | F: arch/powerpc/include/asm/cell*.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1340 | F: arch/powerpc/include/asm/spu*.h |
| 1341 | F: arch/powerpc/oprofile/*cell* |
| 1342 | F: arch/powerpc/platforms/cell/ |
Arnd Bergmann | b815454 | 2008-05-16 11:10:59 +0200 | [diff] [blame] | 1343 | |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 1344 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
| 1345 | P: David Vrabel |
| 1346 | M: david.vrabel@csr.com |
| 1347 | L: linux-usb@vger.kernel.org |
| 1348 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1349 | F: Documentation/usb/WUSB-Design-overview.txt |
| 1350 | F: Documentation/usb/wusb-cbaf |
| 1351 | F: drivers/usb/wusbcore/ |
| 1352 | F: include/linux/usb/wusb* |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 1353 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1354 | CFAG12864B LCD DRIVER |
| 1355 | P: Miguel Ojeda Sandonis |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1356 | M: miguel.ojeda.sandonis@gmail.com |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1357 | L: linux-kernel@vger.kernel.org |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1358 | W: http://miguelojeda.es/auxdisplay.htm |
| 1359 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1360 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1361 | F: drivers/auxdisplay/cfag12864b.c |
| 1362 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1363 | |
| 1364 | CFAG12864BFB LCD FRAMEBUFFER DRIVER |
| 1365 | P: Miguel Ojeda Sandonis |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1366 | M: miguel.ojeda.sandonis@gmail.com |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1367 | L: linux-kernel@vger.kernel.org |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1368 | W: http://miguelojeda.es/auxdisplay.htm |
| 1369 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1370 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1371 | F: drivers/auxdisplay/cfag12864bfb.c |
| 1372 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1373 | |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 1374 | CFG80211 and NL80211 |
| 1375 | P: Johannes Berg |
| 1376 | M: johannes@sipsolutions.net |
| 1377 | L: linux-wireless@vger.kernel.org |
| 1378 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1379 | F: include/linux/nl80211.h |
| 1380 | F: include/net/cfg80211.h |
| 1381 | F: net/wireless/* |
| 1382 | X: net/wireless/wext* |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 1383 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1384 | CHECKPATCH |
| 1385 | P: Andy Whitcroft |
Andy Whitcroft | b0e0b43 | 2009-01-06 14:41:22 -0800 | [diff] [blame] | 1386 | M: apw@canonical.com |
| 1387 | L: linux-kernel@vger.kernel.org |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1388 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1389 | F: scripts/checkpatch.pl |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1390 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1391 | CISCO 10G ETHERNET DRIVER |
| 1392 | P: Scott Feldman |
| 1393 | M: scofeldm@cisco.com |
| 1394 | P: Joe Eykholt |
| 1395 | M: jeykholt@cisco.com |
Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 1396 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1397 | F: drivers/net/enic/ |
Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 1398 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1399 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
| 1400 | P: Lennert Buytenhek |
| 1401 | M: kernel@wantstofly.org |
| 1402 | L: netdev@vger.kernel.org |
| 1403 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1404 | F: drivers/net/arm/ep93xx_eth.c |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1405 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1406 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
| 1407 | P: Lennert Buytenhek |
| 1408 | M: kernel@wantstofly.org |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 1409 | L: linux-usb@vger.kernel.org |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1410 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1411 | F: drivers/usb/host/ohci-ep93xx.c |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1412 | |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 1413 | CIRRUS LOGIC CS4270 SOUND DRIVER |
| 1414 | P: Timur Tabi |
| 1415 | M: timur@freescale.com |
| 1416 | L: alsa-devel@alsa-project.org |
| 1417 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1418 | F: sound/soc/codecs/cs4270* |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 1419 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1420 | CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER |
| 1421 | P: Cirrus Logic Corporation (kernel 2.2 driver) |
| 1422 | M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com> |
| 1423 | P: Nils Faerber (port to kernel 2.4) |
| 1424 | M: Nils Faerber <nils@kernelconcepts.de> |
| 1425 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1426 | F: Documentation/input/cs461x.txt |
| 1427 | F: sound/pci/cs46xx/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1429 | CLK API |
| 1430 | P: Russell King |
| 1431 | M: linux@arm.linux.org.uk |
| 1432 | F: include/linux/clk.h |
| 1433 | |
Abhijeet Joglekar | 5df6d73 | 2009-04-17 18:33:26 -0700 | [diff] [blame] | 1434 | CISCO FCOE HBA DRIVER |
| 1435 | P: Abhijeet Joglekar |
| 1436 | M: abjoglek@cisco.com |
| 1437 | P: Joe Eykholt |
| 1438 | M: jeykholt@cisco.com |
| 1439 | L: linux-scsi@vger.kernel.org |
| 1440 | S: Supported |
| 1441 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1442 | CODA FILE SYSTEM |
| 1443 | P: Jan Harkes |
| 1444 | M: jaharkes@cs.cmu.edu |
| 1445 | M: coda@cs.cmu.edu |
| 1446 | L: codalist@coda.cs.cmu.edu |
| 1447 | W: http://www.coda.cs.cmu.edu/ |
| 1448 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1449 | F: Documentation/filesystems/coda.txt |
| 1450 | F: fs/coda/ |
| 1451 | F: include/linux/coda*.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1452 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1453 | COMMON INTERNET FILE SYSTEM (CIFS) |
| 1454 | P: Steve French |
| 1455 | M: sfrench@samba.org |
| 1456 | L: linux-cifs-client@lists.samba.org |
| 1457 | L: samba-technical@lists.samba.org |
| 1458 | W: http://linux-cifs.samba.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1459 | 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] | 1460 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1461 | F: Documentation/filesystems/cifs.txt |
| 1462 | F: fs/cifs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1463 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1464 | COMPACTPCI HOTPLUG CORE |
| 1465 | P: Scott Murray |
| 1466 | M: scottm@somanetworks.com |
| 1467 | M: scott@spiteful.org |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 1468 | L: linux-pci@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1469 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1470 | F: drivers/pci/hotplug/cpci_hotplug* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1471 | |
| 1472 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER |
| 1473 | P: Scott Murray |
| 1474 | M: scottm@somanetworks.com |
| 1475 | M: scott@spiteful.org |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 1476 | L: linux-pci@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1477 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1478 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1479 | |
| 1480 | COMPACTPCI HOTPLUG GENERIC DRIVER |
| 1481 | P: Scott Murray |
| 1482 | M: scottm@somanetworks.com |
| 1483 | M: scott@spiteful.org |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 1484 | L: linux-pci@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1486 | F: drivers/pci/hotplug/cpcihp_generic.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | |
Cezary Jackiewicz | 5411552 | 2008-06-09 16:22:22 -0700 | [diff] [blame] | 1488 | COMPAL LAPTOP SUPPORT |
| 1489 | P: Cezary Jackiewicz |
| 1490 | M: cezary.jackiewicz@gmail.com |
| 1491 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1492 | F: drivers/platform/x86/compal-laptop.c |
Cezary Jackiewicz | 5411552 | 2008-06-09 16:22:22 -0700 | [diff] [blame] | 1493 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | COMPUTONE INTELLIPORT MULTIPORT CARD |
| 1495 | P: Michael H. Warfield |
Adrian Bunk | 07d46de | 2005-06-25 14:59:13 -0700 | [diff] [blame] | 1496 | M: mhw@wittsend.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1497 | W: http://www.wittsend.com/computone.html |
Adrian Bunk | 07d46de | 2005-06-25 14:59:13 -0700 | [diff] [blame] | 1498 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1499 | F: Documentation/serial/computone.txt |
| 1500 | F: drivers/char/ip2/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1501 | |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 1502 | CONEXANT ACCESSRUNNER USB DRIVER |
| 1503 | P: Simon Arlott |
| 1504 | M: cxacru@fire.lp0.eu |
Simon Arlott | 9ae5e3b | 2007-05-09 08:38:10 +0200 | [diff] [blame] | 1505 | L: accessrunner-general@lists.sourceforge.net |
| 1506 | W: http://accessrunner.sourceforge.net/ |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 1507 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1508 | F: drivers/usb/atm/cxacru.c |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 1509 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1510 | CONFIGFS |
| 1511 | P: Joel Becker |
| 1512 | M: joel.becker@oracle.com |
| 1513 | L: linux-kernel@vger.kernel.org |
| 1514 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1515 | F: fs/configfs/ |
| 1516 | F: include/linux/configfs.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1517 | |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 1518 | CONTROL GROUPS (CGROUPS) |
| 1519 | P: Paul Menage |
| 1520 | M: menage@google.com |
KOSAKI Motohiro | 01c4a42 | 2009-02-11 13:04:35 -0800 | [diff] [blame] | 1521 | P: Li Zefan |
| 1522 | M: lizf@cn.fujitsu.com |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 1523 | L: containers@lists.linux-foundation.org |
| 1524 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1525 | F: include/linux/cgroup* |
| 1526 | F: kernel/cgroup* |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 1527 | |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1528 | CORETEMP HARDWARE MONITORING DRIVER |
| 1529 | P: Rudolf Marek |
| 1530 | M: r.marek@assembler.cz |
| 1531 | L: lm-sensors@lm-sensors.org |
| 1532 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1533 | F: Documentation/hwmon/coretemp |
| 1534 | F: drivers/hwmon/coretemp.c |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1535 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1536 | COSA/SRP SYNC SERIAL DRIVER |
| 1537 | P: Jan "Yenya" Kasprzak |
| 1538 | M: kas@fi.muni.cz |
| 1539 | W: http://www.fi.muni.cz/~kas/cosa/ |
| 1540 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1541 | F: drivers/net/wan/cosa* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1542 | |
| 1543 | CPU FREQUENCY DRIVERS |
| 1544 | P: Dave Jones |
Dave Jones | f4432c5 | 2008-10-20 13:31:45 -0400 | [diff] [blame] | 1545 | M: davej@redhat.com |
Dave Jones | bc5f65d | 2008-07-31 18:22:59 -0400 | [diff] [blame] | 1546 | L: cpufreq@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1547 | W: http://www.codemonkey.org.uk/projects/cpufreq/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1548 | 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] | 1549 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1550 | F: arch/x86/kernel/cpu/cpufreq/ |
| 1551 | F: drivers/cpufreq/ |
| 1552 | F: include/linux/cpufreq.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1553 | |
| 1554 | CPUID/MSR DRIVER |
| 1555 | P: H. Peter Anvin |
| 1556 | M: hpa@zytor.com |
| 1557 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1558 | F: arch/x86/kernel/cpuid.c |
| 1559 | F: arch/x86/kernel/msr.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1561 | CPUSETS |
Paul Jackson | 6bffd7b | 2008-05-01 04:34:21 -0700 | [diff] [blame] | 1562 | P: Paul Menage |
Paul Jackson | 6bffd7b | 2008-05-01 04:34:21 -0700 | [diff] [blame] | 1563 | M: menage@google.com |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1564 | L: linux-kernel@vger.kernel.org |
| 1565 | W: http://www.bullopensource.org/cpuset/ |
Paul Jackson | 551e172 | 2008-06-12 15:21:31 -0700 | [diff] [blame] | 1566 | W: http://oss.sgi.com/projects/cpusets/ |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1567 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1568 | F: Documentation/cgroups/cpusets.txt |
| 1569 | F: include/linux/cpuset.h |
| 1570 | F: kernel/cpuset.c |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1571 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | CRAMFS FILESYSTEM |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 1573 | W: http://sourceforge.net/projects/cramfs/ |
| 1574 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1575 | F: Documentation/filesystems/cramfs.txt |
| 1576 | F: fs/cramfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1577 | |
| 1578 | CRIS PORT |
| 1579 | P: Mikael Starvik |
| 1580 | M: starvik@axis.com |
Jesper Nilsson | 0b07aa6 | 2008-01-25 13:22:29 +0100 | [diff] [blame] | 1581 | P: Jesper Nilsson |
| 1582 | M: jesper.nilsson@axis.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 | L: dev-etrax@axis.com |
| 1584 | W: http://developer.axis.com |
| 1585 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1586 | F: arch/cris/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 | |
| 1588 | CRYPTO API |
| 1589 | P: Herbert Xu |
| 1590 | M: herbert@gondor.apana.org.au |
| 1591 | P: David S. Miller |
| 1592 | M: davem@davemloft.net |
| 1593 | L: linux-crypto@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1594 | 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] | 1595 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1596 | F: Documentation/crypto/ |
| 1597 | F: arch/*/crypto/ |
| 1598 | F: crypto/ |
| 1599 | F: drivers/crypto/ |
| 1600 | F: include/crypto/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1601 | |
Neil Horman | 5b07bd5 | 2009-02-05 16:03:04 +1100 | [diff] [blame] | 1602 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
| 1603 | P: Neil Horman |
| 1604 | M: nhorman@tuxdriver.com |
| 1605 | L: linux-crypto@vger.kernel.org |
| 1606 | S: Maintained |
| 1607 | |
Jaya Kumar | 9b4ffa4 | 2005-11-17 10:12:23 +0100 | [diff] [blame] | 1608 | CS5535 Audio ALSA driver |
| 1609 | P: Jaya Kumar |
| 1610 | M: jayakumar.alsa@gmail.com |
| 1611 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1612 | F: sound/pci/cs5535audio/ |
Jaya Kumar | 9b4ffa4 | 2005-11-17 10:12:23 +0100 | [diff] [blame] | 1613 | |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 1614 | CX18 VIDEO4LINUX DRIVER |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1615 | P: Hans Verkuil |
| 1616 | M: hverkuil@xs4all.nl |
| 1617 | P: Andy Walls |
| 1618 | M: awalls@radix.net |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 1619 | L: ivtv-devel@ivtvdriver.org |
| 1620 | L: ivtv-users@ivtvdriver.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 1621 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1622 | 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] | 1623 | W: http://linuxtv.org |
| 1624 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1625 | F: Documentation/video4linux/cx18.txt |
| 1626 | F: drivers/media/video/cx18/ |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 1627 | |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 1628 | CXGB3 ETHERNET DRIVER (CXGB3) |
| 1629 | P: Divy Le Ray |
| 1630 | M: divy@chelsio.com |
| 1631 | L: netdev@vger.kernel.org |
| 1632 | W: http://www.chelsio.com |
| 1633 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1634 | F: drivers/net/cxgb3/ |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 1635 | |
| 1636 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) |
| 1637 | P: Steve Wise |
| 1638 | M: swise@chelsio.com |
| 1639 | L: general@lists.openfabrics.org |
| 1640 | W: http://www.openfabrics.org |
| 1641 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1642 | F: drivers/infiniband/hw/cxgb3/ |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 1643 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | CYBERPRO FB DRIVER |
| 1645 | P: Russell King |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1646 | M: linux@arm.linux.org.uk |
| 1647 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | W: http://www.arm.linux.org.uk/ |
| 1649 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1650 | F: drivers/video/cyber2000fb.* |
Knut Petersen | 9fa68ea | 2005-09-09 13:04:56 -0700 | [diff] [blame] | 1651 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | CYCLADES 2X SYNC CARD DRIVER |
| 1653 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 1654 | M: acme@ghostprotocols.net |
| 1655 | W: http://oops.ghostprotocols.net:81/blog |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1657 | F: drivers/net/wan/cycx* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1658 | |
| 1659 | CYCLADES ASYNC MUX DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1660 | W: http://www.cyclades.com/ |
Jiri Slaby | d459883 | 2007-02-12 00:51:53 -0800 | [diff] [blame] | 1661 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1662 | F: drivers/char/cyclades.c |
| 1663 | F: include/linux/cyclades.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1664 | |
| 1665 | CYCLADES PC300 DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1666 | W: http://www.cyclades.com/ |
Jiri Slaby | d459883 | 2007-02-12 00:51:53 -0800 | [diff] [blame] | 1667 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1668 | F: drivers/net/wan/pc300* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1670 | DAMA SLAVE for AX.25 |
| 1671 | P: Joerg Reuter |
| 1672 | M: jreuter@yaina.de |
| 1673 | W: http://yaina.de/jreuter/ |
| 1674 | W: http://www.qsl.net/dl1bke/ |
| 1675 | L: linux-hams@vger.kernel.org |
| 1676 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1677 | F: net/ax25/af_ax25.c |
| 1678 | F: net/ax25/ax25_dev.c |
| 1679 | F: net/ax25/ax25_ds_* |
| 1680 | F: net/ax25/ax25_in.c |
| 1681 | F: net/ax25/ax25_out.c |
| 1682 | F: net/ax25/ax25_timer.c |
| 1683 | F: net/ax25/sysctl_net_ax25.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1685 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
| 1686 | P: Tobias Ringstrom |
| 1687 | M: tori@unhappy.mine.nu |
| 1688 | L: netdev@vger.kernel.org |
| 1689 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1690 | F: Documentation/networking/dmfe.txt |
| 1691 | F: drivers/net/tulip/dmfe.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1692 | |
| 1693 | DC390/AM53C974 SCSI driver |
| 1694 | P: Kurt Garloff |
| 1695 | M: garloff@suse.de |
| 1696 | W: http://www.garloff.de/kurt/linux/dc390/ |
| 1697 | P: Guennadi Liakhovetski |
| 1698 | M: g.liakhovetski@gmx.de |
| 1699 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1700 | F: drivers/scsi/tmscsim.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1701 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1702 | DC395x SCSI driver |
| 1703 | P: Oliver Neukum |
| 1704 | M: oliver@neukum.name |
| 1705 | P: Ali Akcaagac |
| 1706 | M: aliakc@web.de |
| 1707 | P: Jamie Lenehan |
| 1708 | M: lenehan@twibble.org |
| 1709 | W: http://twibble.org/dist/dc395x/ |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 1710 | L: dc395x@twibble.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1711 | L: http://lists.twibble.org/mailman/listinfo/dc395x/ |
| 1712 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1713 | F: Documentation/scsi/dc395x.txt |
| 1714 | F: drivers/scsi/dc395x.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1715 | |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1716 | DCCP PROTOCOL |
| 1717 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 1718 | M: acme@ghostprotocols.net |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1719 | L: dccp@vger.kernel.org |
Ian McDonald | f3b84ec | 2005-11-10 13:05:01 -0800 | [diff] [blame] | 1720 | W: http://linux-net.osdl.org/index.php/DCCP |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1721 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1722 | F: include/linux/dccp.h |
| 1723 | F: include/linux/tfrc.h |
| 1724 | F: net/dccp/ |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1725 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1726 | DECnet NETWORK LAYER |
Christine Caulfield | 8943f26 | 2008-02-14 19:31:31 -0800 | [diff] [blame] | 1727 | P: Christine Caulfield |
| 1728 | M: christine.caulfield@googlemail.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1729 | W: http://linux-decnet.sourceforge.net |
| 1730 | L: linux-decnet-user@lists.sourceforge.net |
| 1731 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1732 | F: Documentation/networking/decnet.txt |
| 1733 | F: net/decnet/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | |
| 1735 | DEFXX FDDI NETWORK DRIVER |
| 1736 | P: Maciej W. Rozycki |
| 1737 | M: macro@linux-mips.org |
| 1738 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1739 | F: drivers/net/defxx.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | |
Matthew Garrett | ad8f07c | 2009-01-07 18:08:56 -0800 | [diff] [blame] | 1741 | DELL LAPTOP DRIVER |
| 1742 | P: Matthew Garrett |
| 1743 | M: mjg59@srcf.ucam.org |
| 1744 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1745 | F: drivers/platform/x86/dell-laptop.c |
Matthew Garrett | ad8f07c | 2009-01-07 18:08:56 -0800 | [diff] [blame] | 1746 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1747 | DELL LAPTOP SMM DRIVER |
| 1748 | P: Massimo Dal Zotto |
| 1749 | M: dz@debian.org |
| 1750 | W: http://www.debian.org/~dz/i8k/ |
| 1751 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1752 | F: drivers/char/i8k.c |
| 1753 | F: include/linux/i8k.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1754 | |
Doug Warzecha | 90563ec | 2005-09-06 15:17:15 -0700 | [diff] [blame] | 1755 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
| 1756 | P: Doug Warzecha |
| 1757 | M: Douglas_Warzecha@dell.com |
| 1758 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1759 | F: Documentation/dcdbas.txt |
| 1760 | F: drivers/firmware/dcdbas.* |
Doug Warzecha | 90563ec | 2005-09-06 15:17:15 -0700 | [diff] [blame] | 1761 | |
Matthew Garrett | 0b3f610 | 2009-01-09 20:17:11 +0000 | [diff] [blame] | 1762 | DELL WMI EXTRAS DRIVER |
| 1763 | P: Matthew Garrett |
| 1764 | M: mjg59@srcf.ucam.org |
| 1765 | S: Maintained |
| 1766 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1767 | DEVICE NUMBER REGISTRY |
| 1768 | P: Torben Mathiasen |
| 1769 | M: device@lanana.org |
| 1770 | W: http://lanana.org/docs/device-list/index.html |
| 1771 | L: linux-kernel@vger.kernel.org |
| 1772 | S: Maintained |
| 1773 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1774 | DEVICE-MAPPER (LVM) |
| 1775 | P: Alasdair Kergon |
| 1776 | L: dm-devel@redhat.com |
| 1777 | W: http://sources.redhat.com/dm |
| 1778 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1779 | F: Documentation/device-mapper/ |
| 1780 | F: drivers/md/dm* |
| 1781 | F: include/linux/device-mapper.h |
| 1782 | F: include/linux/dm-*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1783 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1784 | DIGI INTL. EPCA DRIVER |
| 1785 | P: Digi International, Inc |
| 1786 | M: Eng.Linux@digi.com |
| 1787 | L: Eng.Linux@digi.com |
| 1788 | W: http://www.digi.com |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 1789 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1790 | F: Documentation/serial/digiepca.txt |
| 1791 | F: drivers/char/epca* |
| 1792 | F: drivers/char/digi* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1793 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 1794 | DIRECTORY NOTIFICATION (DNOTIFY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1795 | P: Stephen Rothwell |
| 1796 | M: sfr@canb.auug.org.au |
| 1797 | L: linux-kernel@vger.kernel.org |
| 1798 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1799 | F: Documentation/filesystems/dnotify.txt |
| 1800 | F: fs/notify/dnotify/ |
| 1801 | F: include/linux/dnotify.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1802 | |
| 1803 | DISK GEOMETRY AND PARTITION HANDLING |
| 1804 | P: Andries Brouwer |
| 1805 | M: aeb@cwi.nl |
| 1806 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
| 1807 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html |
| 1808 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html |
| 1809 | S: Maintained |
| 1810 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 1811 | DISKQUOTA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1812 | P: Jan Kara |
| 1813 | M: jack@suse.cz |
| 1814 | L: linux-kernel@vger.kernel.org |
| 1815 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1816 | F: Documentation/filesystems/quota.txt |
| 1817 | F: fs/quota/ |
| 1818 | F: include/linux/quota*.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1819 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 1820 | DISTRIBUTED LOCK MANAGER (DLM) |
Christine Caulfield | 8943f26 | 2008-02-14 19:31:31 -0800 | [diff] [blame] | 1821 | P: Christine Caulfield |
| 1822 | M: ccaulfie@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1823 | P: David Teigland |
| 1824 | M: teigland@redhat.com |
David Teigland | a464418 | 2006-06-22 15:29:57 -0400 | [diff] [blame] | 1825 | L: cluster-devel@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1826 | W: http://sources.redhat.com/cluster/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1827 | 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] | 1828 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1829 | F: fs/dlm/ |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1830 | |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1831 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 1832 | P: Maciej Sosnowski |
| 1833 | M: maciej.sosnowski@intel.com |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1834 | P: Dan Williams |
| 1835 | M: dan.j.williams@intel.com |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 1836 | L: linux-kernel@vger.kernel.org |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1837 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1838 | F: drivers/dma/ |
| 1839 | F: include/linux/dma* |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 1840 | |
Juerg Haefliger | b825037 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 1841 | DME1737 HARDWARE MONITOR DRIVER |
| 1842 | P: Juerg Haefliger |
| 1843 | M: juergh@gmail.com |
| 1844 | L: lm-sensors@lm-sensors.org |
| 1845 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1846 | F: Documentation/hwmon/dme1737 |
| 1847 | F: drivers/hwmon/dme1737.c |
Juerg Haefliger | b825037 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 1848 | |
Martin Waitz | ba483d5 | 2005-06-17 13:20:59 -0700 | [diff] [blame] | 1849 | DOCBOOK FOR DOCUMENTATION |
Randy Dunlap | 0f40efb | 2006-07-03 00:24:15 -0700 | [diff] [blame] | 1850 | P: Randy Dunlap |
| 1851 | M: rdunlap@xenotime.net |
Martin Waitz | ba483d5 | 2005-06-17 13:20:59 -0700 | [diff] [blame] | 1852 | S: Maintained |
| 1853 | |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 1854 | DOCKING STATION DRIVER |
Len Brown | c5d191b | 2008-09-24 02:53:25 -0400 | [diff] [blame] | 1855 | P: Shaohua Li |
| 1856 | M: shaohua.li@intel.com |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 1857 | L: linux-acpi@vger.kernel.org |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 1858 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1859 | F: drivers/acpi/dock.c |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 1860 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1861 | DOCUMENTATION |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 1862 | P: Randy Dunlap |
| 1863 | M: rdunlap@xenotime.net |
| 1864 | L: linux-doc@vger.kernel.org |
| 1865 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1866 | F: Documentation/ |
Randy Dunlap | abbaeff | 2008-07-04 09:59:57 -0700 | [diff] [blame] | 1867 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 | DOUBLETALK DRIVER |
| 1869 | P: James R. Van Zandt |
| 1870 | M: jrv@vanzandt.mv.com |
| 1871 | L: blinux-list@redhat.com |
| 1872 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1873 | F: drivers/char/dtlk.c |
| 1874 | F: include/linux/dtlk.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1875 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1876 | DPT_I2O SCSI RAID DRIVER |
| 1877 | P: Adaptec OEM Raid Solutions |
| 1878 | M: aacraid@adaptec.com |
| 1879 | L: linux-scsi@vger.kernel.org |
| 1880 | W: http://www.adaptec.com/ |
| 1881 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1882 | F: drivers/scsi/dpt* |
| 1883 | F: drivers/scsi/dpt/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1884 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1885 | DRIVER CORE, KOBJECTS, AND SYSFS |
| 1886 | P: Greg Kroah-Hartman |
| 1887 | M: gregkh@suse.de |
| 1888 | L: linux-kernel@vger.kernel.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 1889 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1891 | F: Documentation/kobject.txt |
Joe Perches | 7cfc51b | 2009-04-08 10:04:18 -0700 | [diff] [blame] | 1892 | F: drivers/base/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1893 | F: fs/sysfs/ |
| 1894 | F: include/linux/kobj* |
| 1895 | F: lib/kobj* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1896 | |
| 1897 | DRM DRIVERS |
| 1898 | P: David Airlie |
| 1899 | M: airlied@linux.ie |
| 1900 | L: dri-devel@lists.sourceforge.net |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1901 | 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] | 1902 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1903 | F: drivers/gpu/drm/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1904 | |
| 1905 | DSCC4 DRIVER |
Francois Romieu | 01f2073 | 2007-01-26 00:57:17 -0800 | [diff] [blame] | 1906 | P: Francois Romieu |
| 1907 | M: romieu@fr.zoreil.com |
| 1908 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1909 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1910 | F: drivers/net/wan/dscc4.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1911 | |
Maciej W. Rozycki | 789c704 | 2008-02-07 00:15:13 -0800 | [diff] [blame] | 1912 | DZ DECSTATION DZ11 SERIAL DRIVER |
| 1913 | P: Maciej W. Rozycki |
| 1914 | M: macro@linux-mips.org |
| 1915 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1916 | F: drivers/serial/dz.* |
Maciej W. Rozycki | 789c704 | 2008-02-07 00:15:13 -0800 | [diff] [blame] | 1917 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1918 | EATA-DMA SCSI DRIVER |
| 1919 | P: Michael Neuffer |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1920 | M: mike@i-Connect.Net |
| 1921 | L: linux-eata@i-connect.net |
| 1922 | L: linux-scsi@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1923 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1924 | F: drivers/scsi/eata* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1925 | |
| 1926 | EATA ISA/EISA/PCI SCSI DRIVER |
| 1927 | P: Dario Ballabio |
| 1928 | M: ballabio_dario@emc.com |
| 1929 | L: linux-scsi@vger.kernel.org |
| 1930 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1931 | F: drivers/scsi/eata.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1932 | |
| 1933 | EATA-PIO SCSI DRIVER |
| 1934 | P: Michael Neuffer |
| 1935 | M: mike@i-Connect.Net |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1936 | L: linux-eata@i-connect.net |
| 1937 | L: linux-scsi@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1938 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1939 | F: drivers/scsi/eata_pio.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1940 | |
| 1941 | EBTABLES |
| 1942 | P: Bart De Schuymer |
| 1943 | M: bart.de.schuymer@pandora.be |
| 1944 | L: ebtables-user@lists.sourceforge.net |
| 1945 | L: ebtables-devel@lists.sourceforge.net |
| 1946 | W: http://ebtables.sourceforge.net/ |
| 1947 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1948 | F: include/linux/netfilter_bridge/ebt_*.h |
| 1949 | F: net/bridge/netfilter/ebt*.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1950 | |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 1951 | ECRYPT FILE SYSTEM |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1952 | P: Tyler Hicks |
| 1953 | M: tyhicks@linux.vnet.ibm.com |
| 1954 | M: Dustin Kirkland |
| 1955 | P: kirkland@canonical.com |
Michael Halcrow | 6dc7516 | 2008-12-15 13:54:17 -0800 | [diff] [blame] | 1956 | L: ecryptfs-devel@lists.launchpad.net |
| 1957 | W: https://launchpad.net/ecryptfs |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 1958 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1959 | F: Documentation/filesystems/ecryptfs.txt |
| 1960 | F: fs/ecryptfs/ |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 1961 | |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 1962 | EDAC-CORE |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1963 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 1964 | M: dougthompson@xmission.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 1965 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1966 | W: bluesmoke.sourceforge.net |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 1967 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1968 | F: Documentation/edac.txt |
| 1969 | F: drivers/edac/edac_* |
| 1970 | F: include/linux/edac.h |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1971 | |
| 1972 | EDAC-E752X |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 1973 | P: Mark Gross |
| 1974 | M: mark.gross@intel.com |
Joe Perches | 681a1b4 | 2009-05-28 14:34:18 -0700 | [diff] [blame] | 1975 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 1976 | M: dougthompson@xmission.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 1977 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1978 | W: bluesmoke.sourceforge.net |
| 1979 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1980 | F: drivers/edac/e752x_edac.c |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1981 | |
| 1982 | EDAC-E7XXX |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 1983 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 1984 | M: dougthompson@xmission.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 1985 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1986 | W: bluesmoke.sourceforge.net |
| 1987 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1988 | F: drivers/edac/e7xxx_edac.c |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1989 | |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 1990 | EDAC-I82443BXGX |
| 1991 | P: Tim Small |
| 1992 | M: tim@buttersideup.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 1993 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 1994 | W: bluesmoke.sourceforge.net |
| 1995 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1996 | F: drivers/edac/i82443bxgx_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 1997 | |
| 1998 | EDAC-I3000 |
| 1999 | P: Jason Uhlenkott |
| 2000 | M: juhlenko@akamai.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2001 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2002 | W: bluesmoke.sourceforge.net |
| 2003 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2004 | F: drivers/edac/i3000_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2005 | |
| 2006 | EDAC-I5000 |
| 2007 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2008 | M: dougthompson@xmission.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2009 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2010 | W: bluesmoke.sourceforge.net |
| 2011 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2012 | F: drivers/edac/i5000_edac.c |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2013 | |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 2014 | EDAC-I5400 |
| 2015 | P: Mauro Carvalho Chehab |
| 2016 | M: mchehab@redhat.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2017 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 2018 | W: bluesmoke.sourceforge.net |
| 2019 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2020 | F: drivers/edac/i5400_edac.c |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 2021 | |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2022 | EDAC-I82975X |
| 2023 | P: Ranganathan Desikan |
| 2024 | P: Arvind R. |
| 2025 | M: rdesikan@jetzbroadband.com |
| 2026 | M: arvind@acarlab.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2027 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2028 | W: bluesmoke.sourceforge.net |
| 2029 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2030 | F: drivers/edac/i82975x_edac.c |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2031 | |
| 2032 | EDAC-PASEMI |
| 2033 | P: Egor Martovetsky |
| 2034 | M: egor@pasemi.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2035 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2036 | W: bluesmoke.sourceforge.net |
| 2037 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2038 | F: drivers/edac/pasemi_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2039 | |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2040 | EDAC-R82600 |
| 2041 | P: Tim Small |
| 2042 | M: tim@buttersideup.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2043 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2044 | W: bluesmoke.sourceforge.net |
| 2045 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2046 | F: drivers/edac/r82600_edac.c |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 2047 | |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 2048 | EEEPC LAPTOP EXTRAS DRIVER |
| 2049 | P: Corentin Chary |
| 2050 | M: corentincj@iksaif.net |
| 2051 | L: acpi4asus-user@lists.sourceforge.net |
| 2052 | W: http://sourceforge.net/projects/acpi4asus |
| 2053 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2054 | F: drivers/platform/x86/eeepc-laptop.c |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 2055 | |
Josh Triplett | 0bee8d2 | 2006-07-30 03:03:58 -0700 | [diff] [blame] | 2056 | EFS FILESYSTEM |
| 2057 | W: http://aeschi.ch.eu.org/efs/ |
| 2058 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2059 | F: fs/efs/ |
Josh Triplett | 0bee8d2 | 2006-07-30 03:03:58 -0700 | [diff] [blame] | 2060 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 2061 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 2062 | P: Hoang-Nam Nguyen |
| 2063 | M: hnguyen@de.ibm.com |
| 2064 | P: Christoph Raisch |
| 2065 | M: raisch@de.ibm.com |
Roland Dreier | 7852682 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 2066 | L: general@lists.openfabrics.org |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 2067 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2068 | F: drivers/infiniband/hw/ehca/ |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 2069 | |
David Woodhouse | 3e3a7d6 | 2008-05-01 04:34:46 -0700 | [diff] [blame] | 2070 | EMBEDDED LINUX |
| 2071 | P: Paul Gortmaker |
| 2072 | M: paul.gortmaker@windriver.com |
Matt Mackall | 0f24922 | 2009-04-21 12:24:47 -0700 | [diff] [blame] | 2073 | P: Matt Mackall |
| 2074 | M: mpm@selenic.com |
Uwe Kleine-König | a46add7 | 2008-09-09 00:11:39 +0200 | [diff] [blame] | 2075 | P: David Woodhouse |
David Woodhouse | 3e3a7d6 | 2008-05-01 04:34:46 -0700 | [diff] [blame] | 2076 | M: dwmw2@infradead.org |
| 2077 | L: linux-embedded@vger.kernel.org |
| 2078 | S: Maintained |
| 2079 | |
James.Smart@Emulex.Com | 3a1c1d4 | 2005-08-11 13:42:35 -0400 | [diff] [blame] | 2080 | EMULEX LPFC FC SCSI DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2081 | P: James Smart |
| 2082 | M: james.smart@emulex.com |
| 2083 | L: linux-scsi@vger.kernel.org |
| 2084 | W: http://sourceforge.net/projects/lpfcxxxx |
| 2085 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2086 | F: drivers/scsi/lpfc/ |
James.Smart@Emulex.Com | 3a1c1d4 | 2005-08-11 13:42:35 -0400 | [diff] [blame] | 2087 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2088 | EPSON 1355 FRAMEBUFFER DRIVER |
| 2089 | P: Christopher Hoover |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2090 | M: ch@murgatroid.com |
| 2091 | P: Christopher Hoover |
| 2092 | M: ch@hpl.hp.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2093 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2094 | F: drivers/video/epson1355fb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2095 | |
Kristoffer Ericson | d5ca900 | 2008-10-15 22:03:54 -0700 | [diff] [blame] | 2096 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
| 2097 | P: Kristoffer Ericson |
| 2098 | M: kristoffer.ericson@gmail.com |
| 2099 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2100 | F: drivers/video/s1d13xxxfb.c |
| 2101 | F: include/video/s1d13xxxfb.h |
Kristoffer Ericson | d5ca900 | 2008-10-15 22:03:54 -0700 | [diff] [blame] | 2102 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2103 | ETHEREXPRESS-16 NETWORK DRIVER |
| 2104 | P: Philip Blundell |
| 2105 | M: philb@gnu.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 2106 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2107 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2108 | F: drivers/net/eexpress.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2109 | |
| 2110 | ETHERNET BRIDGE |
| 2111 | P: Stephen Hemminger |
Stephen Hemminger | 65ebe634 | 2007-01-23 11:38:57 -0800 | [diff] [blame] | 2112 | M: shemminger@linux-foundation.org |
David Brownell | f318a63 | 2007-04-23 14:41:06 -0700 | [diff] [blame] | 2113 | L: bridge@lists.linux-foundation.org |
Adrian Bunk | 57c511d | 2008-06-03 16:00:01 -0700 | [diff] [blame] | 2114 | W: http://www.linux-foundation.org/en/Net:Bridge |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2115 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2116 | F: include/linux/netfilter_bridge/ |
| 2117 | F: net/bridge/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | |
| 2119 | ETHERTEAM 16I DRIVER |
| 2120 | P: Mika Kuoppala |
| 2121 | M: miku@iki.fi |
| 2122 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2123 | F: drivers/net/eth16i.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2124 | |
| 2125 | EXT2 FILE SYSTEM |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2126 | L: linux-ext4@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2127 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2128 | F: Documentation/filesystems/ext2.txt |
| 2129 | F: fs/ext2/ |
| 2130 | F: include/linux/ext2* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2131 | |
| 2132 | EXT3 FILE SYSTEM |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2133 | P: Stephen Tweedie |
| 2134 | M: sct@redhat.com |
| 2135 | P: Andrew Morton |
| 2136 | M: akpm@linux-foundation.org |
| 2137 | P: Andreas Dilger |
| 2138 | M: adilger@sun.com |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2139 | L: linux-ext4@vger.kernel.org |
| 2140 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2141 | F: Documentation/filesystems/ext3.txt |
| 2142 | F: fs/ext3/ |
| 2143 | F: include/linux/ext3* |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2144 | |
| 2145 | EXT4 FILE SYSTEM |
Theodore Ts'o | 08a225f | 2008-10-06 20:58:09 -0400 | [diff] [blame] | 2146 | P: Theodore Ts'o |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2147 | M: tytso@mit.edu |
| 2148 | P: Andreas Dilger |
| 2149 | M: adilger@sun.com |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2150 | L: linux-ext4@vger.kernel.org |
Theodore Ts'o | 08a225f | 2008-10-06 20:58:09 -0400 | [diff] [blame] | 2151 | W: http://ext4.wiki.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2152 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2153 | F: Documentation/filesystems/ext4.txt |
| 2154 | F: fs/ext4/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2155 | |
Jean Delvare | e53004e | 2006-01-09 23:26:14 +0100 | [diff] [blame] | 2156 | F71805F HARDWARE MONITORING DRIVER |
| 2157 | P: Jean Delvare |
| 2158 | M: khali@linux-fr.org |
| 2159 | L: lm-sensors@lm-sensors.org |
| 2160 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2161 | F: Documentation/hwmon/f71805f |
| 2162 | F: drivers/hwmon/f71805f.c |
Jean Delvare | e53004e | 2006-01-09 23:26:14 +0100 | [diff] [blame] | 2163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2164 | FARSYNC SYNCHRONOUS DRIVER |
| 2165 | P: Kevin Curtis |
| 2166 | M: kevin.curtis@farsite.co.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2167 | W: http://www.farsite.co.uk/ |
| 2168 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2169 | F: drivers/net/wan/farsync.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2170 | |
Akinobu Mita | c5408b8 | 2007-04-23 14:41:20 -0700 | [diff] [blame] | 2171 | FAULT INJECTION SUPPORT |
| 2172 | P: Akinobu Mita |
| 2173 | M: akinobu.mita@gmail.com |
| 2174 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2175 | F: Documentation/fault-injection/ |
| 2176 | F: lib/fault-inject.c |
Akinobu Mita | c5408b8 | 2007-04-23 14:41:20 -0700 | [diff] [blame] | 2177 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2178 | FILE LOCKING (flock() and fcntl()/lockf()) |
| 2179 | P: Matthew Wilcox |
| 2180 | M: matthew@wil.cx |
| 2181 | L: linux-fsdevel@vger.kernel.org |
| 2182 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2183 | F: include/linux/fcntl.h |
| 2184 | F: include/linux/fs.h |
| 2185 | F: fs/fcntl.c |
| 2186 | F: fs/locks.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2187 | |
| 2188 | FILESYSTEMS (VFS and infrastructure) |
| 2189 | P: Alexander Viro |
| 2190 | M: viro@zeniv.linux.org.uk |
| 2191 | L: linux-fsdevel@vger.kernel.org |
| 2192 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2193 | F: fs/* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2194 | |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 2195 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
| 2196 | P: Riku Voipio |
| 2197 | M: riku.vipio@iki.fi |
| 2198 | L: lm-sensors@lm-sensors.org |
| 2199 | S: Maintained |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 2200 | F: drivers/hwmon/f75375s.c |
| 2201 | F: include/linux/f75375s.h |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 2202 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2203 | FIREWIRE SUBSYSTEM |
| 2204 | P: Kristian Hoegsberg |
| 2205 | M: krh@redhat.com |
| 2206 | P: Stefan Richter |
| 2207 | M: stefanr@s5r6.in-berlin.de |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2208 | L: linux1394-devel@lists.sourceforge.net |
| 2209 | W: http://www.linux1394.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2210 | 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] | 2211 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2212 | F: drivers/firewire/ |
| 2213 | F: include/linux/firewire*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2214 | |
| 2215 | FIRMWARE LOADER (request_firmware) |
| 2216 | L: linux-kernel@vger.kernel.org |
| 2217 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2218 | F: Documentation/firmware_class/ |
| 2219 | F: drivers/base/firmware*.c |
| 2220 | F: include/linux/firmware.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2221 | |
| 2222 | FPU EMULATOR |
| 2223 | P: Bill Metzenthen |
Joe Perches | e769980 | 2009-04-07 21:12:18 -0700 | [diff] [blame] | 2224 | M: billm@melbpc.org.au |
| 2225 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2226 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2227 | F: arch/x86/math-emu/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2228 | |
| 2229 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) |
| 2230 | P: Mike McLagan |
| 2231 | M: mike.mclagan@linux.org |
| 2232 | L: netdev@vger.kernel.org |
| 2233 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2234 | F: drivers/net/wan/dlci.c |
| 2235 | F: drivers/net/wan/sdla.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2236 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2237 | FRAMEBUFFER LAYER |
| 2238 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 2239 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2240 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2241 | W: http://linux-fbdev.sourceforge.net/ |
| 2242 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2243 | F: Documentation/fb/ |
| 2244 | F: drivers/video/fb* |
| 2245 | F: include/linux/fb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2246 | |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 2247 | FREESCALE DMA DRIVER |
Zhang Wei | 76b0c788 | 2008-05-13 14:44:59 -0700 | [diff] [blame] | 2248 | P: Li Yang |
| 2249 | M: leoli@freescale.com |
| 2250 | P: Zhang Wei |
| 2251 | M: zw@zh-kernel.org |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 2252 | L: linuxppc-embedded@ozlabs.org |
| 2253 | L: linux-kernel@vger.kernel.org |
| 2254 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2255 | F: drivers/dma/fsldma.* |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 2256 | |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 2257 | FREESCALE I2C CPM DRIVER |
| 2258 | P: Jochen Friedrich |
| 2259 | M: jochen@scram.de |
| 2260 | L: linuxppc-dev@ozlabs.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 2261 | L: linux-i2c@vger.kernel.org |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 2262 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2263 | F: drivers/i2c/busses/i2c-cpm.c |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 2264 | |
Sascha Hauer | 60e8c5a | 2008-12-16 11:44:06 +0100 | [diff] [blame] | 2265 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
| 2266 | P: Sascha Hauer |
| 2267 | M: kernel@pengutronix.de |
| 2268 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 2269 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 2270 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2271 | F: arch/arm/plat-mxc/include/mach/imxfb.h |
| 2272 | F: drivers/video/imxfb.c |
Sascha Hauer | 60e8c5a | 2008-12-16 11:44:06 +0100 | [diff] [blame] | 2273 | |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 2274 | FREESCALE SOC FS_ENET DRIVER |
| 2275 | P: Pantelis Antoniou |
| 2276 | M: pantelis.antoniou@gmail.com |
| 2277 | P: Vitaly Bordug |
| 2278 | M: vbordug@ru.mvista.com |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2279 | L: linuxppc-dev@ozlabs.org |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 2280 | L: netdev@vger.kernel.org |
| 2281 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2282 | F: drivers/net/fs_enet/ |
| 2283 | F: include/linux/fs_enet_pd.h |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 2284 | |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2285 | FREESCALE QUICC ENGINE LIBRARY |
| 2286 | P: Timur Tabi |
| 2287 | M: timur@freescale.com |
| 2288 | L: linuxppc-dev@ozlabs.org |
| 2289 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2290 | F: arch/powerpc/sysdev/qe_lib/ |
| 2291 | F: arch/powerpc/include/asm/*qe.h |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2292 | |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 2293 | FREESCALE HIGHSPEED USB DEVICE DRIVER |
| 2294 | P: Li Yang |
| 2295 | M: leoli@freescale.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 2296 | L: linux-usb@vger.kernel.org |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2297 | L: linuxppc-dev@ozlabs.org |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 2298 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2299 | F: drivers/usb/gadget/fsl_usb2_udc.c |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 2300 | |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 2301 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
| 2302 | P: Li Yang |
| 2303 | M: leoli@freescale.com |
| 2304 | L: netdev@vger.kernel.org |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2305 | L: linuxppc-dev@ozlabs.org |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 2306 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2307 | F: drivers/net/ucc_geth* |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 2308 | |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2309 | FREESCALE QUICC ENGINE UCC UART DRIVER |
| 2310 | P: Timur Tabi |
| 2311 | M: timur@freescale.com |
| 2312 | L: linuxppc-dev@ozlabs.org |
| 2313 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2314 | F: drivers/serial/ucc_uart.c |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2315 | |
| 2316 | FREESCALE SOC SOUND DRIVERS |
| 2317 | P: Timur Tabi |
| 2318 | M: timur@freescale.com |
| 2319 | L: alsa-devel@alsa-project.org |
| 2320 | L: linuxppc-dev@ozlabs.org |
| 2321 | S: Supported |
Joe Perches | 69aefce | 2009-04-09 10:39:22 -0700 | [diff] [blame] | 2322 | F: sound/soc/fsl/fsl* |
| 2323 | F: sound/soc/fsl/mpc8610_hpcd.c |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2324 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2325 | FREEVXFS FILESYSTEM |
| 2326 | P: Christoph Hellwig |
| 2327 | M: hch@infradead.org |
| 2328 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
| 2329 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2330 | F: fs/freevxfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2331 | |
Pavel Machek | 71038f5 | 2009-01-15 13:51:02 -0800 | [diff] [blame] | 2332 | FREEZER |
| 2333 | P: Pavel Machek |
| 2334 | M: pavel@suse.cz |
| 2335 | P: Rafael J. Wysocki |
| 2336 | M: rjw@sisk.pl |
| 2337 | L: linux-pm@lists.linux-foundation.org |
| 2338 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2339 | F: Documentation/power/freezing-of-tasks.txt |
| 2340 | F: include/linux/freezer.h |
| 2341 | F: kernel/freezer.c |
Pavel Machek | 71038f5 | 2009-01-15 13:51:02 -0800 | [diff] [blame] | 2342 | |
David Howells | a5432f5 | 2009-04-20 15:46:45 +0100 | [diff] [blame] | 2343 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
| 2344 | P: David Howells |
| 2345 | M: dhowells@redhat.com |
| 2346 | L: linux-cachefs@redhat.com |
| 2347 | S: Supported |
| 2348 | F: Documentation/filesystems/caching/ |
| 2349 | F: fs/fscache/ |
| 2350 | F: include/linux/fscache*.h |
| 2351 | |
Steven Rostedt | de3b69d | 2008-07-15 13:28:14 -0400 | [diff] [blame] | 2352 | FTRACE |
| 2353 | P: Steven Rostedt |
Steven Rostedt | 8e324c1 | 2008-11-19 15:36:43 -0800 | [diff] [blame] | 2354 | M: rostedt@goodmis.org |
Steven Rostedt | de3b69d | 2008-07-15 13:28:14 -0400 | [diff] [blame] | 2355 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2356 | F: Documentation/ftrace.txt |
| 2357 | F: arch/*/*/*/ftrace.h |
| 2358 | F: arch/*/kernel/ftrace.c |
| 2359 | F: include/*/ftrace.h |
| 2360 | F: kernel/trace/ |
Steven Rostedt | de3b69d | 2008-07-15 13:28:14 -0400 | [diff] [blame] | 2361 | |
David Howells | 5ab7ffe | 2007-04-10 15:10:45 +0100 | [diff] [blame] | 2362 | FUJITSU FR-V (FRV) PORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2363 | P: David Howells |
| 2364 | M: dhowells@redhat.com |
| 2365 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2366 | F: arch/frv/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2367 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 2368 | FUJITSU LAPTOP EXTRAS |
| 2369 | P: Jonathan Woithe |
| 2370 | M: jwoithe@physics.adelaide.edu.au |
| 2371 | L: linux-acpi@vger.kernel.org |
| 2372 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2373 | F: drivers/platform/x86/fujitsu-laptop.c |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 2374 | |
Miklos Szeredi | 04578f1 | 2005-09-09 13:10:22 -0700 | [diff] [blame] | 2375 | FUSE: FILESYSTEM IN USERSPACE |
| 2376 | P: Miklos Szeredi |
| 2377 | M: miklos@szeredi.hu |
| 2378 | L: fuse-devel@lists.sourceforge.net |
| 2379 | W: http://fuse.sourceforge.net/ |
| 2380 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2381 | F: fs/fuse/ |
| 2382 | F: include/linux/fuse.h |
Miklos Szeredi | 04578f1 | 2005-09-09 13:10:22 -0700 | [diff] [blame] | 2383 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2384 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
| 2385 | P: Rik Faith |
| 2386 | M: faith@cs.unc.edu |
| 2387 | L: linux-scsi@vger.kernel.org |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 2388 | S: Odd Fixes (e.g., new signatures) |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2389 | F: drivers/scsi/fdomain.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2390 | |
| 2391 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
| 2392 | P: Achim Leubner |
| 2393 | M: achim_leubner@adaptec.com |
| 2394 | L: linux-scsi@vger.kernel.org |
| 2395 | W: http://www.icp-vortex.com/ |
| 2396 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2397 | F: drivers/scsi/gdt* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2398 | |
Haavard Skinnemoen | 1c23af9 | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 2399 | GENERIC GPIO I2C DRIVER |
| 2400 | P: Haavard Skinnemoen |
| 2401 | M: hskinnemoen@atmel.com |
| 2402 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2403 | F: drivers/i2c/busses/i2c-gpio.c |
| 2404 | F: include/linux/i2c-gpio.h |
Haavard Skinnemoen | 1c23af9 | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 2405 | |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 2406 | GENERIC HDLC (WAN) DRIVERS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2407 | P: Krzysztof Halasa |
| 2408 | M: khc@pm.waw.pl |
| 2409 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
| 2410 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2411 | F: drivers/net/wan/c101.c |
| 2412 | F: drivers/net/wan/hd6457* |
| 2413 | F: drivers/net/wan/hdlc* |
| 2414 | F: drivers/net/wan/n2.c |
| 2415 | F: drivers/net/wan/pc300too.c |
| 2416 | F: drivers/net/wan/pci200syn.c |
| 2417 | F: drivers/net/wan/wanxl* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2418 | |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 2419 | GFS2 FILE SYSTEM |
| 2420 | P: Steven Whitehouse |
| 2421 | M: swhiteho@redhat.com |
David Teigland | a464418 | 2006-06-22 15:29:57 -0400 | [diff] [blame] | 2422 | L: cluster-devel@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 2423 | W: http://sources.redhat.com/cluster/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2424 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git |
| 2425 | 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] | 2426 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2427 | F: Documentation/filesystems/gfs2*.txt |
| 2428 | F: fs/gfs2/ |
| 2429 | F: include/linux/gfs2_ondisk.h |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 2430 | |
Hansjoerg Lipp | 0a34eb8 | 2006-03-26 01:38:28 -0800 | [diff] [blame] | 2431 | GIGASET ISDN DRIVERS |
| 2432 | P: Hansjoerg Lipp |
| 2433 | M: hjlipp@web.de |
| 2434 | P: Tilman Schmidt |
| 2435 | M: tilman@imap.cc |
| 2436 | L: gigaset307x-common@lists.sourceforge.net |
| 2437 | W: http://gigaset307x.sourceforge.net/ |
| 2438 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2439 | F: Documentation/isdn/README.gigaset |
| 2440 | F: drivers/isdn/gigaset/ |
| 2441 | F: include/linux/gigaset_dev.h |
Hansjoerg Lipp | 0a34eb8 | 2006-03-26 01:38:28 -0800 | [diff] [blame] | 2442 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2443 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
Frank Seidel | 211e3e0 | 2009-02-17 19:59:54 +0100 | [diff] [blame] | 2444 | P: Frank Seidel |
| 2445 | M: frank@f-seidel.de |
| 2446 | L: lm-sensors@lm-sensors.org |
| 2447 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2448 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2449 | F: drivers/hwmon/hdaps.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2450 | |
Michael Ellerman | c90bfeb | 2009-04-02 16:56:43 -0700 | [diff] [blame] | 2451 | HYPERVISOR VIRTUAL CONSOLE DRIVER |
| 2452 | L: linuxppc-dev@ozlabs.org |
| 2453 | L: linux-kernel@vger.kernel.org |
| 2454 | S: Odd Fixes |
| 2455 | F: drivers/char/hvc_* |
| 2456 | |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2457 | GSPCA FINEPIX SUBDRIVER |
| 2458 | P: Frank Zago |
| 2459 | M: frank@zago.net |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2460 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2461 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2462 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2463 | F: drivers/media/video/gspca/finepix.c |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2464 | |
| 2465 | GSPCA M5602 SUBDRIVER |
| 2466 | P: Erik Andren |
| 2467 | M: erik.andren@gmail.com |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2468 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2469 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2470 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2471 | F: drivers/media/video/gspca/m5602/ |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2472 | |
| 2473 | GSPCA PAC207 SONIXB SUBDRIVER |
| 2474 | P: Hans de Goede |
| 2475 | M: hdegoede@redhat.com |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2476 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2477 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2478 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2479 | F: drivers/media/video/gspca/pac207.c |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2480 | |
| 2481 | GSPCA T613 SUBDRIVER |
| 2482 | P: Leandro Costantino |
| 2483 | M: lcostantino@gmail.com |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2484 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2485 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2486 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2487 | F: drivers/media/video/gspca/t613.c |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2488 | |
| 2489 | GSPCA USB WEBCAM DRIVER |
| 2490 | P: Jean-Francois Moine |
| 2491 | M: moinejf@free.fr |
| 2492 | W: http://moinejf.free.fr |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2493 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2494 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2495 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2496 | F: drivers/media/video/gspca/ |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2497 | |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 2498 | HARDWARE MONITORING |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 2499 | L: lm-sensors@lm-sensors.org |
Jean Delvare | 595142e | 2006-12-06 20:39:36 -0800 | [diff] [blame] | 2500 | W: http://www.lm-sensors.org/ |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 2501 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2502 | F: drivers/hwmon/ |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 2503 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 2504 | HARDWARE RANDOM NUMBER GENERATOR CORE |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 2505 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2506 | F: Documentation/hw_random.txt |
| 2507 | F: drivers/char/hw_random/ |
| 2508 | F: include/linux/hw_random.h |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 2509 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2510 | HARMONY SOUND DRIVER |
| 2511 | P: Kyle McMartin |
Kyle McMartin | 42a5a8a | 2008-06-06 17:16:17 -0400 | [diff] [blame] | 2512 | M: kyle@mcmartin.ca |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 2513 | L: linux-parisc@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2514 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2515 | F: sound/parisc/harmony.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2516 | |
| 2517 | HAYES ESP SERIAL DRIVER |
| 2518 | P: Andrew J. Robinson |
| 2519 | M: arobinso@nyx.net |
| 2520 | L: linux-kernel@vger.kernel.org |
| 2521 | W: http://www.nyx.net/~arobinso |
| 2522 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2523 | F: Documentation/serial/hayes-esp.txt |
| 2524 | F: drivers/char/esp.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2525 | |
| 2526 | HEWLETT-PACKARD SMART2 RAID DRIVER |
| 2527 | P: Chirag Kantharia |
| 2528 | M: chirag.kantharia@hp.com |
| 2529 | L: iss_storagedev@hp.com |
| 2530 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2531 | F: Documentation/blockdev/cpqarray.txt |
| 2532 | F: drivers/block/cpqarray.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2533 | |
| 2534 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
| 2535 | P: Mike Miller |
| 2536 | M: mike.miller@hp.com |
| 2537 | L: iss_storagedev@hp.com |
| 2538 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2539 | F: Documentation/blockdev/cciss.txt |
| 2540 | F: drivers/block/cciss* |
| 2541 | F: include/linux/cciss_ioctl.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2542 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2543 | HFS FILESYSTEM |
| 2544 | P: Roman Zippel |
| 2545 | M: zippel@linux-m68k.org |
| 2546 | L: linux-kernel@vger.kernel.org |
| 2547 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2548 | F: Documentation/filesystems/hfs.txt |
| 2549 | F: fs/hfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2550 | |
| 2551 | HGA FRAMEBUFFER DRIVER |
| 2552 | P: Ferenc Bakonyi |
| 2553 | M: fero@drama.obuda.kando.hu |
| 2554 | L: linux-nvidia@lists.surfsouth.com |
| 2555 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml |
| 2556 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2557 | F: drivers/video/hgafb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2558 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 2559 | HIBERNATION (aka Software Suspend, aka swsusp) |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2560 | P: Pavel Machek |
Pavel Machek | ef35ce2 | 2009-02-18 14:48:16 -0800 | [diff] [blame] | 2561 | M: pavel@ucw.cz |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2562 | P: Rafael J. Wysocki |
| 2563 | M: rjw@sisk.pl |
| 2564 | L: linux-pm@lists.linux-foundation.org |
| 2565 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2566 | F: arch/x86/power/ |
| 2567 | F: drivers/base/power/ |
| 2568 | F: kernel/power/ |
| 2569 | F: include/linux/suspend.h |
| 2570 | F: include/linux/freezer.h |
| 2571 | F: include/linux/pm.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2572 | F: arch/*/include/asm/suspend*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2573 | |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 2574 | HID CORE LAYER |
| 2575 | P: Jiri Kosina |
| 2576 | M: jkosina@suse.cz |
Dmitry Torokhov | eb76c5c | 2007-11-02 09:07:33 -0400 | [diff] [blame] | 2577 | L: linux-input@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2578 | 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] | 2579 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2580 | F: drivers/hid/ |
| 2581 | F: include/linux/hid* |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 2582 | |
Ingo Molnar | 38bed54 | 2007-02-22 09:09:34 +0100 | [diff] [blame] | 2583 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
| 2584 | P: Thomas Gleixner |
| 2585 | M: tglx@linutronix.de |
| 2586 | L: linux-kernel@vger.kernel.org |
| 2587 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2588 | F: Documentation/timers/ |
| 2589 | F: kernel/hrtimer.c |
| 2590 | F: include/linux/hrtimer.h |
Ingo Molnar | 38bed54 | 2007-02-22 09:09:34 +0100 | [diff] [blame] | 2591 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2592 | HIGH-SPEED SCC DRIVER FOR AX.25 |
| 2593 | P: Klaus Kudielka |
| 2594 | M: klaus.kudielka@ieee.org |
| 2595 | L: linux-hams@vger.kernel.org |
| 2596 | W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/ |
| 2597 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2598 | F: drivers/net/hamradio/dmascc.c |
| 2599 | F: drivers/net/hamradio/scc.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2600 | |
HighPoint Linux Team | ede1e6f | 2006-05-16 14:38:09 +0800 | [diff] [blame] | 2601 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
| 2602 | P: HighPoint Linux Team |
| 2603 | M: linux@highpoint-tech.com |
| 2604 | W: http://www.highpoint-tech.com |
| 2605 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2606 | F: Documentation/scsi/hptiop.txt |
| 2607 | F: drivers/scsi/hptiop.c |
HighPoint Linux Team | ede1e6f | 2006-05-16 14:38:09 +0800 | [diff] [blame] | 2608 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2609 | HIPPI |
| 2610 | P: Jes Sorensen |
| 2611 | M: jes@trained-monkey.org |
| 2612 | L: linux-hippi@sunsite.dk |
| 2613 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2614 | F: include/linux/hippidevice.h |
| 2615 | F: include/linux/if_hippi.h |
| 2616 | F: net/802/hippi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2617 | |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 2618 | HOST AP DRIVER |
| 2619 | P: Jouni Malinen |
Jouni Malinen | 85d32e7 | 2007-03-24 17:15:30 -0700 | [diff] [blame] | 2620 | M: j@w1.fi |
| 2621 | L: hostap@shmoo.com (subscribers-only) |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 2622 | L: linux-wireless@vger.kernel.org |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 2623 | W: http://hostap.epitest.fi/ |
| 2624 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2625 | F: drivers/net/wireless/hostap/ |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 2626 | |
Carlos Corbacho | dd8cd77 | 2008-02-05 02:17:15 +0000 | [diff] [blame] | 2627 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
| 2628 | P: Carlos Corbacho |
| 2629 | M: carlos@strangeworlds.co.uk |
| 2630 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2631 | F: drivers/platform/x86/tc1100-wmi.c |
Carlos Corbacho | dd8cd77 | 2008-02-05 02:17:15 +0000 | [diff] [blame] | 2632 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2633 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
| 2634 | P: Jaroslav Kysela |
| 2635 | M: perex@perex.cz |
| 2636 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2637 | F: drivers/net/hp100.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2638 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2639 | HPET: High Precision Event Timers driver |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2640 | P: Clemens Ladisch |
| 2641 | M: clemens@ladisch.de |
| 2642 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2643 | F: Documentation/timers/hpet.txt |
| 2644 | F: drivers/char/hpet.c |
| 2645 | F: include/linux/hpet.h |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2646 | |
| 2647 | HPET: i386 |
| 2648 | P: Venkatesh Pallipadi (Venki) |
| 2649 | M: venkatesh.pallipadi@intel.com |
| 2650 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2651 | F: arch/x86/kernel/hpet.c |
| 2652 | F: arch/x86/include/asm/hpet.h |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2653 | |
| 2654 | HPET: x86_64 |
Andi Kleen | 8bd0983 | 2007-10-13 01:01:08 +0200 | [diff] [blame] | 2655 | P: Vojtech Pavlik |
| 2656 | M: vojtech@suse.cz |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2657 | S: Maintained |
| 2658 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2659 | HPET: ACPI |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2660 | P: Bob Picco |
| 2661 | M: bob.picco@hp.com |
| 2662 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2663 | F: drivers/char/hpet.c |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2664 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2665 | HPFS FILESYSTEM |
| 2666 | P: Mikulas Patocka |
| 2667 | M: mikulas@artax.karlin.mff.cuni.cz |
| 2668 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
| 2669 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2670 | F: fs/hpfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2671 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2672 | HSO 3G MODEM DRIVER |
Jan Dumon | 510f32b | 2009-04-13 14:39:34 -0700 | [diff] [blame] | 2673 | P: Jan Dumon |
| 2674 | M: j.dumon@option.com |
Denis Joseph Barrow | 11cd29b | 2009-01-02 13:50:36 +0000 | [diff] [blame] | 2675 | W: http://www.pharscape.org |
| 2676 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2677 | F: drivers/net/usb/hso.c |
Denis Joseph Barrow | 11cd29b | 2009-01-02 13:50:36 +0000 | [diff] [blame] | 2678 | |
Pau Oliva Fora | 5a18c34 | 2008-06-02 00:38:35 -0400 | [diff] [blame] | 2679 | HTCPEN TOUCHSCREEN DRIVER |
| 2680 | P: Pau Oliva Fora |
| 2681 | M: pof@eslack.org |
| 2682 | L: linux-input@vger.kernel.org |
| 2683 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2684 | F: drivers/input/touchscreen/htcpen.c |
Pau Oliva Fora | 5a18c34 | 2008-06-02 00:38:35 -0400 | [diff] [blame] | 2685 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2686 | HUGETLB FILESYSTEM |
| 2687 | P: William Irwin |
| 2688 | M: wli@holomorphy.com |
| 2689 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2690 | F: fs/hugetlbfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2691 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 2692 | I2C/SMBUS STUB DRIVER |
| 2693 | P: Mark M. Hoffman |
| 2694 | M: mhoffman@lightlink.com |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 2695 | L: linux-i2c@vger.kernel.org |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 2696 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2697 | F: drivers/i2c/busses/i2c-stub.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 2698 | |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 2699 | I2C SUBSYSTEM |
Jean Delvare | 710cf7e | 2008-05-18 20:49:40 +0200 | [diff] [blame] | 2700 | P: Jean Delvare (PC drivers, core) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2701 | M: khali@linux-fr.org |
Jean Delvare | 710cf7e | 2008-05-18 20:49:40 +0200 | [diff] [blame] | 2702 | P: Ben Dooks (embedded platforms) |
| 2703 | M: ben-linux@fluff.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 2704 | L: linux-i2c@vger.kernel.org |
Jean Delvare | a01064a | 2009-01-26 21:19:53 +0100 | [diff] [blame] | 2705 | W: http://i2c.wiki.kernel.org/ |
| 2706 | 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] | 2707 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2708 | F: Documentation/i2c/ |
| 2709 | F: drivers/i2c/ |
| 2710 | F: include/linux/i2c.h |
| 2711 | F: include/linux/i2c-dev.h |
| 2712 | F: include/linux/i2c-id.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2713 | |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 2714 | I2C-TINY-USB DRIVER |
| 2715 | P: Till Harbaum |
| 2716 | M: till@harbaum.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 2717 | L: linux-i2c@vger.kernel.org |
Joe Perches | 932d187 | 2009-04-07 21:10:58 -0700 | [diff] [blame] | 2718 | W: http://www.harbaum.org/till/i2c_tiny_usb |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 2719 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2720 | F: drivers/i2c/busses/i2c-tiny-usb.c |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 2721 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2722 | i386 BOOT CODE |
H. Peter Anvin | 7f1291f | 2007-07-11 12:18:26 -0700 | [diff] [blame] | 2723 | P: H. Peter Anvin |
| 2724 | M: hpa@zytor.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2725 | L: Linux-Kernel@vger.kernel.org |
| 2726 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2727 | F: arch/x86/boot/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2728 | |
| 2729 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2730 | P: H. Peter Anvin |
| 2731 | M: hpa@zytor.com |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2732 | 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] | 2733 | S: Maintained |
| 2734 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2735 | IA64 (Itanium) PLATFORM |
| 2736 | P: Tony Luck |
| 2737 | M: tony.luck@intel.com |
| 2738 | L: linux-ia64@vger.kernel.org |
| 2739 | W: http://www.ia64-linux.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2740 | 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] | 2741 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2742 | F: arch/ia64/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2743 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2744 | IBM MCA SCSI SUBSYSTEM DRIVER |
| 2745 | P: Michael Lang |
| 2746 | M: langa2@kph.uni-mainz.de |
| 2747 | W: http://www.uni-mainz.de/~langm000/linux.html |
| 2748 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2749 | F: drivers/scsi/ibmmca.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2750 | |
| 2751 | IBM Power Linux RAID adapter |
| 2752 | P: Brian King |
| 2753 | M: brking@us.ibm.com |
| 2754 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2755 | F: drivers/scsi/ipr.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2756 | |
| 2757 | IBM ServeRAID RAID DRIVER |
| 2758 | P: Jack Hammer |
| 2759 | P: Dave Jeffery |
| 2760 | M: ipslinux@adaptec.com |
| 2761 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 2762 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2763 | F: drivers/scsi/ips.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2764 | |
Bartlomiej Zolnierkiewicz | 1e7106f | 2007-01-27 13:46:14 +0100 | [diff] [blame] | 2765 | IDE SUBSYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2766 | P: Bartlomiej Zolnierkiewicz |
Bartlomiej Zolnierkiewicz | 1e7106f | 2007-01-27 13:46:14 +0100 | [diff] [blame] | 2767 | M: bzolnier@gmail.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2768 | L: linux-ide@vger.kernel.org |
Bartlomiej Zolnierkiewicz | b930f96 | 2009-04-23 22:53:45 +0200 | [diff] [blame] | 2769 | 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] | 2770 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2771 | F: Documentation/ide/ |
| 2772 | F: drivers/ide/ |
| 2773 | F: include/linux/ide.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2774 | |
Bartlomiej Zolnierkiewicz | 0f861e8 | 2009-03-31 20:15:31 +0200 | [diff] [blame] | 2775 | IDE/ATAPI DRIVERS |
Borislav Petkov | c404c19 | 2007-12-24 15:23:44 +0100 | [diff] [blame] | 2776 | P: Borislav Petkov |
Borislav Petkov | ef70916 | 2008-02-19 01:41:25 +0100 | [diff] [blame] | 2777 | M: petkovbb@gmail.com |
Jens Axboe | 9c5b0ce | 2007-01-03 18:15:20 +0100 | [diff] [blame] | 2778 | L: linux-ide@vger.kernel.org |
Borislav Petkov | c404c19 | 2007-12-24 15:23:44 +0100 | [diff] [blame] | 2779 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2780 | F: Documentation/cdrom/ide-cd |
| 2781 | F: drivers/ide/ide-cd* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2782 | |
Andy Henroid | 27471fd | 2008-10-09 11:45:22 -0700 | [diff] [blame] | 2783 | IDLE-I7300 |
| 2784 | P: Andy Henroid |
| 2785 | M: andrew.d.henroid@intel.com |
| 2786 | L: linux-pm@lists.linux-foundation.org |
| 2787 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2788 | F: drivers/idle/i7300_idle.c |
Andy Henroid | 27471fd | 2008-10-09 11:45:22 -0700 | [diff] [blame] | 2789 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2790 | IEEE 1394 SUBSYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2791 | P: Ben Collins |
Stefan Richter | f51a5a9 | 2007-04-23 14:41:10 -0700 | [diff] [blame] | 2792 | M: ben.collins@ubuntu.com |
Stefan Richter | 87730d0 | 2006-09-16 12:24:00 +0200 | [diff] [blame] | 2793 | P: Stefan Richter |
| 2794 | M: stefanr@s5r6.in-berlin.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2795 | L: linux1394-devel@lists.sourceforge.net |
| 2796 | W: http://www.linux1394.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2797 | 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] | 2798 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2799 | F: drivers/ieee1394/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2800 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2801 | IEEE 1394 RAW I/O DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2802 | P: Dan Dennedy |
| 2803 | M: dan@dennedy.org |
Stefan Richter | f51a5a9 | 2007-04-23 14:41:10 -0700 | [diff] [blame] | 2804 | P: Stefan Richter |
| 2805 | M: stefanr@s5r6.in-berlin.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2806 | L: linux1394-devel@lists.sourceforge.net |
Jody McIntyre | 105d7b3 | 2005-09-30 11:59:04 -0700 | [diff] [blame] | 2807 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2808 | F: drivers/ieee1394/raw1394* |
Jody McIntyre | 105d7b3 | 2005-09-30 11:59:04 -0700 | [diff] [blame] | 2809 | |
Mimi Zohar | aa7168f | 2009-02-04 09:07:03 -0500 | [diff] [blame] | 2810 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
| 2811 | P: Mimi Zohar |
| 2812 | M: zohar@us.ibm.com |
| 2813 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2814 | F: security/integrity/ima/ |
Mimi Zohar | aa7168f | 2009-02-04 09:07:03 -0500 | [diff] [blame] | 2815 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2816 | IMS TWINTURBO FRAMEBUFFER DRIVER |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2817 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Paul Mundt | 843393d | 2007-11-19 13:11:04 +0900 | [diff] [blame] | 2818 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2819 | F: drivers/video/imsttfb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2820 | |
| 2821 | INFINIBAND SUBSYSTEM |
| 2822 | P: Roland Dreier |
Roland Dreier | 21c121c | 2005-06-27 14:36:47 -0700 | [diff] [blame] | 2823 | M: rolandd@cisco.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2824 | P: Sean Hefty |
Sean Hefty | ed96f2470 | 2008-01-02 12:00:24 -0800 | [diff] [blame] | 2825 | M: sean.hefty@intel.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2826 | P: Hal Rosenstock |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 2827 | M: hal.rosenstock@gmail.com |
Randy Dunlap | 40b0bb1 | 2009-02-04 15:12:13 -0800 | [diff] [blame] | 2828 | L: general@lists.openfabrics.org (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2829 | W: http://www.openib.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2830 | 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] | 2831 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2832 | F: Documentation/infiniband/ |
| 2833 | F: drivers/infiniband/ |
| 2834 | F: include/linux/if_infiniband.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2835 | |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 2836 | INOTIFY |
Cal Peake | 18b36c71 | 2006-12-12 20:18:16 +0100 | [diff] [blame] | 2837 | P: John McCutchan |
John McCutchan | 52af894 | 2008-12-17 17:43:02 -0800 | [diff] [blame] | 2838 | M: john@johnmccutchan.com |
Cal Peake | 18b36c71 | 2006-12-12 20:18:16 +0100 | [diff] [blame] | 2839 | P: Robert Love |
John McCutchan | 52af894 | 2008-12-17 17:43:02 -0800 | [diff] [blame] | 2840 | M: rlove@rlove.org |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 2841 | L: linux-kernel@vger.kernel.org |
| 2842 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2843 | F: Documentation/filesystems/inotify.txt |
| 2844 | F: fs/notify/inotify/ |
| 2845 | F: include/linux/inotify.h |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 2846 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2847 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
| 2848 | P: Dmitry Torokhov |
| 2849 | M: dmitry.torokhov@gmail.com |
| 2850 | M: dtor@mail.ru |
| 2851 | L: linux-input@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2852 | 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] | 2853 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2854 | F: drivers/input/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2855 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 2856 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2857 | P: Sylvain Meyer |
| 2858 | M: sylvain.meyer@worldonline.fr |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2859 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2860 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2861 | F: Documentation/fb/intelfb.txt |
| 2862 | F: drivers/video/intelfb/ |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 2863 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2864 | INTEL 810/815 FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2865 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 2866 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2867 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2868 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2869 | F: drivers/video/i810/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2870 | |
Thomas, Sujith | f4a9bc4 | 2008-11-05 16:15:31 +0530 | [diff] [blame] | 2871 | INTEL MENLOW THERMAL DRIVER |
| 2872 | P: Sujith Thomas |
| 2873 | M: sujith.thomas@intel.com |
| 2874 | L: linux-acpi@vger.kernel.org |
| 2875 | W: http://www.lesswatts.org/projects/acpi/ |
| 2876 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2877 | F: drivers/platform/x86/intel_menlow.c |
Thomas, Sujith | f4a9bc4 | 2008-11-05 16:15:31 +0530 | [diff] [blame] | 2878 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2879 | INTEL IA32 MICROCODE UPDATE SUPPORT |
| 2880 | P: Tigran Aivazian |
Tigran Aivazian | b5b9df6 | 2006-11-08 17:44:46 -0800 | [diff] [blame] | 2881 | M: tigran@aivazian.fsnet.co.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2882 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2883 | F: arch/x86/kernel/microcode_core.c |
| 2884 | F: arch/x86/kernel/microcode_intel.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2885 | |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 2886 | INTEL I/OAT DMA DRIVER |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 2887 | P: Maciej Sosnowski |
| 2888 | M: maciej.sosnowski@intel.com |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 2889 | L: linux-kernel@vger.kernel.org |
| 2890 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2891 | F: drivers/dma/ioat* |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 2892 | |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 2893 | INTEL IOMMU (VT-d) |
| 2894 | P: David Woodhouse |
| 2895 | M: dwmw2@infradead.org |
| 2896 | L: iommu@lists.linux-foundation.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2897 | T: git git://git.infradead.org/iommu-2.6.git |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 2898 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2899 | F: drivers/pci/intel-iommu.c |
| 2900 | F: include/linux/intel-iommu.h |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 2901 | |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 2902 | INTEL IOP-ADMA DMA DRIVER |
| 2903 | P: Dan Williams |
| 2904 | M: dan.j.williams@intel.com |
| 2905 | L: linux-kernel@vger.kernel.org |
| 2906 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2907 | F: drivers/dma/iop-adma.c |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 2908 | |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 2909 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
| 2910 | P: Krzysztof Halasa |
| 2911 | M: khc@pm.waw.pl |
| 2912 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2913 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
| 2914 | F: arch/arm/mach-ixp4xx/include/mach/npe.h |
| 2915 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c |
| 2916 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c |
| 2917 | F: drivers/net/arm/ixp4xx_eth.c |
| 2918 | F: drivers/net/wan/ixp4xx_hss.c |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 2919 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 2920 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
| 2921 | P: Deepak Saxena |
| 2922 | M: dsaxena@plexity.net |
| 2923 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2924 | F: drivers/char/hw_random/ixp4xx-rng.c |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 2925 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 2926 | INTEL IXP2000 ETHERNET DRIVER |
| 2927 | P: Lennert Buytenhek |
| 2928 | M: kernel@wantstofly.org |
| 2929 | L: netdev@vger.kernel.org |
| 2930 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2931 | F: drivers/net/ixp2000/ |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 2932 | |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 2933 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe) |
Jesse Brandeburg | add1878 | 2006-03-14 14:52:13 -0800 | [diff] [blame] | 2934 | P: Jeff Kirsher |
| 2935 | M: jeffrey.t.kirsher@intel.com |
Auke Kok | e0164af | 2008-05-07 13:42:33 -0700 | [diff] [blame] | 2936 | P: Jesse Brandeburg |
| 2937 | M: jesse.brandeburg@intel.com |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 2938 | P: Bruce Allan |
| 2939 | M: bruce.w.allan@intel.com |
Jeff Kirsher | ae7b648 | 2008-06-11 15:15:53 -0700 | [diff] [blame] | 2940 | P: PJ Waskiewicz |
| 2941 | M: peter.p.waskiewicz.jr@intel.com |
Auke Kok | 2042465 | 2008-01-07 21:47:25 -0800 | [diff] [blame] | 2942 | P: John Ronciak |
| 2943 | M: john.ronciak@intel.com |
Auke Kok | dcd01fa | 2007-03-06 08:58:06 -0800 | [diff] [blame] | 2944 | L: e1000-devel@lists.sourceforge.net |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 2945 | W: http://e1000.sourceforge.net/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2946 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2947 | F: drivers/net/e100.c |
| 2948 | F: drivers/net/e1000/ |
| 2949 | F: drivers/net/e1000e/ |
| 2950 | F: drivers/net/igb/ |
| 2951 | F: drivers/net/ixgb/ |
| 2952 | F: drivers/net/ixgbe/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2953 | |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 2954 | INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 2955 | P: Zhu Yi |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 2956 | M: yi.zhu@intel.com |
| 2957 | P: James Ketrenos |
| 2958 | M: jketreno@linux.intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 2959 | P: Reinette Chatre |
| 2960 | M: reinette.chatre@intel.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 2961 | L: linux-wireless@vger.kernel.org |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 2962 | L: ipw2100-devel@lists.sourceforge.net |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 2963 | W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 2964 | W: http://ipw2100.sourceforge.net |
| 2965 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2966 | F: Documentation/networking/README.ipw2100 |
| 2967 | F: drivers/net/wireless/ipw2x00/ipw2100.* |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 2968 | |
| 2969 | INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 2970 | P: Zhu Yi |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 2971 | M: yi.zhu@intel.com |
| 2972 | P: James Ketrenos |
| 2973 | M: jketreno@linux.intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 2974 | P: Reinette Chatre |
| 2975 | M: reinette.chatre@intel.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 2976 | L: linux-wireless@vger.kernel.org |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 2977 | L: ipw2100-devel@lists.sourceforge.net |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 2978 | W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 2979 | W: http://ipw2200.sourceforge.net |
| 2980 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2981 | F: Documentation/networking/README.ipw2200 |
| 2982 | F: drivers/net/wireless/ipw2x00/ipw2200.* |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 2983 | |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 2984 | INTEL WIRELESS WIMAX CONNECTION 2400 |
| 2985 | P: Inaky Perez-Gonzalez |
| 2986 | M: inaky.perez-gonzalez@intel.com |
| 2987 | M: linux-wimax@intel.com |
| 2988 | L: wimax@linuxwimax.org |
| 2989 | S: Supported |
| 2990 | W: http://linuxwimax.org |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2991 | F: Documentation/wimax/README.i2400m |
| 2992 | F: drivers/net/wimax/i2400m/ |
| 2993 | F: include/linux/wimax/i2400m.h |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 2994 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2995 | INTEL WIRELESS WIFI LINK (iwlwifi) |
| 2996 | P: Zhu Yi |
| 2997 | M: yi.zhu@intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 2998 | P: Reinette Chatre |
| 2999 | M: reinette.chatre@intel.com |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3000 | L: linux-wireless@vger.kernel.org |
| 3001 | L: ipw3945-devel@lists.sourceforge.net |
| 3002 | W: http://intellinuxwireless.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3003 | 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] | 3004 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3005 | F: drivers/net/wireless/iwlwifi/ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3006 | |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 3007 | IOC3 ETHERNET DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3008 | P: Ralf Baechle |
| 3009 | M: ralf@linux-mips.org |
| 3010 | L: linux-mips@linux-mips.org |
| 3011 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3012 | F: drivers/net/ioc3-eth.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3013 | |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 3014 | IOC3 SERIAL DRIVER |
| 3015 | P: Pat Gefre |
| 3016 | M: pfg@sgi.com |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 3017 | L: linux-mips@linux-mips.org |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 3018 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3019 | F: drivers/serial/ioc3_serial.c |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 3020 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 3021 | IP MASQUERADING |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3022 | P: Juanjo Ciarlante |
| 3023 | M: jjciarla@raiz.uncu.edu.ar |
| 3024 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3025 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3026 | |
Francois Romieu | 1202d6f | 2007-09-17 17:13:55 -0700 | [diff] [blame] | 3027 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
| 3028 | P: Francois Romieu |
| 3029 | M: romieu@fr.zoreil.com |
| 3030 | P: Sorbica Shieh |
| 3031 | M: sorbica@icplus.com.tw |
| 3032 | P: Jesse Huang |
| 3033 | M: jesse@icplus.com.tw |
| 3034 | L: netdev@vger.kernel.org |
| 3035 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3036 | F: drivers/net/ipg.c |
Francois Romieu | 1202d6f | 2007-09-17 17:13:55 -0700 | [diff] [blame] | 3037 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 3038 | IPATH DRIVER |
Arthur Jones | 18b8c8f | 2008-02-29 10:13:37 -0800 | [diff] [blame] | 3039 | P: Ralph Campbell |
Arthur Jones | f42b647 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 3040 | M: infinipath@qlogic.com |
| 3041 | L: general@lists.openfabrics.org |
| 3042 | T: git git://git.qlogic.com/ipath-linux-2.6 |
Bryan O'Sullivan | 77d8798 | 2006-03-29 15:23:39 -0800 | [diff] [blame] | 3043 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3044 | F: drivers/infiniband/hw/ipath/ |
Bryan O'Sullivan | 77d8798 | 2006-03-29 15:23:39 -0800 | [diff] [blame] | 3045 | |
Corey Minyard | 4409ebe | 2006-04-20 02:43:12 -0700 | [diff] [blame] | 3046 | IPMI SUBSYSTEM |
| 3047 | P: Corey Minyard |
| 3048 | M: minyard@acm.org |
| 3049 | L: openipmi-developer@lists.sourceforge.net |
| 3050 | W: http://openipmi.sourceforge.net/ |
| 3051 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3052 | F: Documentation/IPMI.txt |
| 3053 | F: drivers/char/ipmi/ |
| 3054 | F: include/linux/ipmi* |
Corey Minyard | 4409ebe | 2006-04-20 02:43:12 -0700 | [diff] [blame] | 3055 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3056 | IPS SCSI RAID DRIVER |
| 3057 | P: Adaptec OEM Raid Solutions |
| 3058 | M: aacraid@adaptec.com |
| 3059 | L: linux-scsi@vger.kernel.org |
| 3060 | W: http://www.adaptec.com/ |
| 3061 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3062 | F: drivers/scsi/ips* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3063 | |
| 3064 | IPVS |
| 3065 | P: Wensong Zhang |
| 3066 | M: wensong@linux-vs.org |
| 3067 | P: Simon Horman |
| 3068 | M: horms@verge.net.au |
| 3069 | P: Julian Anastasov |
| 3070 | M: ja@ssi.bg |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 3071 | L: netdev@vger.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3072 | L: lvs-devel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3073 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3074 | F: Documentation/networking/ipvs-sysctl.txt |
| 3075 | F: net/netfilter/ipvs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3076 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 3077 | IPWIRELESS DRIVER |
David Sterba | 099dc4f | 2008-02-07 10:57:12 +0100 | [diff] [blame] | 3078 | P: Jiri Kosina |
| 3079 | M: jkosina@suse.cz |
| 3080 | P: David Sterba |
| 3081 | M: dsterba@suse.cz |
| 3082 | S: Maintained |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3083 | 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] | 3084 | F: drivers/char/pcmcia/ipwireless/ |
David Sterba | 099dc4f | 2008-02-07 10:57:12 +0100 | [diff] [blame] | 3085 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3086 | IPX NETWORK LAYER |
| 3087 | P: Arnaldo Carvalho de Melo |
| 3088 | M: acme@ghostprotocols.net |
| 3089 | L: netdev@vger.kernel.org |
| 3090 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3091 | F: include/linux/ipx.h |
| 3092 | F: include/net/ipx.h |
| 3093 | F: net/ipx/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3094 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3095 | IRDA SUBSYSTEM |
Samuel Ortiz | f353976 | 2006-05-09 15:24:49 -0700 | [diff] [blame] | 3096 | P: Samuel Ortiz |
| 3097 | M: samuel@sortiz.org |
Olaf Hering | a2ac953 | 2005-07-12 13:58:35 -0700 | [diff] [blame] | 3098 | L: irda-users@lists.sourceforge.net (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3099 | W: http://irda.sourceforge.net/ |
Samuel Ortiz | f353976 | 2006-05-09 15:24:49 -0700 | [diff] [blame] | 3100 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3101 | F: Documentation/networking/irda.txt |
| 3102 | F: drivers/net/irda/ |
| 3103 | F: include/net/irda/ |
| 3104 | F: net/irda/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3105 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3106 | ISAPNP |
| 3107 | P: Jaroslav Kysela |
| 3108 | M: perex@perex.cz |
| 3109 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3110 | F: Documentation/isapnp.txt |
| 3111 | F: drivers/pnp/isapnp/ |
| 3112 | F: include/linux/isapnp.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3113 | |
Mike Christie | 14816b1e | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 3114 | ISCSI |
| 3115 | P: Mike Christie |
| 3116 | M: michaelc@cs.wisc.edu |
| 3117 | L: open-iscsi@googlegroups.com |
| 3118 | W: www.open-iscsi.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3119 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
Mike Christie | 14816b1e | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 3120 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3121 | F: drivers/scsi/*iscsi* |
| 3122 | F: include/scsi/*iscsi* |
Mike Christie | 14816b1e | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 3123 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3124 | ISDN SUBSYSTEM |
| 3125 | P: Karsten Keil |
Karsten Keil | fbfd8b5 | 2009-03-01 18:04:53 +0100 | [diff] [blame] | 3126 | M: isdn@linux-pingi.de |
Paul Bolle | d5d5227 | 2008-04-15 00:40:48 -0700 | [diff] [blame] | 3127 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3128 | W: http://www.isdn4linux.de |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3129 | 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] | 3130 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3131 | F: Documentation/isdn/ |
| 3132 | F: drivers/isdn/ |
| 3133 | F: include/linux/isdn.h |
| 3134 | F: include/linux/isdn/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3135 | |
| 3136 | ISDN SUBSYSTEM (Eicon active card driver) |
| 3137 | P: Armin Schindler |
| 3138 | M: mac@melware.de |
Paul Bolle | d5d5227 | 2008-04-15 00:40:48 -0700 | [diff] [blame] | 3139 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3140 | W: http://www.melware.de |
| 3141 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3142 | F: drivers/isdn/hardware/eicon/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3143 | |
Hans Verkuil | 91821ff | 2007-12-02 09:35:33 -0300 | [diff] [blame] | 3144 | IVTV VIDEO4LINUX DRIVER |
| 3145 | P: Hans Verkuil |
| 3146 | M: hverkuil@xs4all.nl |
| 3147 | L: ivtv-devel@ivtvdriver.org |
| 3148 | L: ivtv-users@ivtvdriver.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 3149 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3150 | 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] | 3151 | W: http://www.ivtvdriver.org |
| 3152 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3153 | F: Documentation/video4linux/*.ivtv |
| 3154 | F: drivers/media/video/ivtv/ |
| 3155 | F: include/linux/ivtv* |
Hans Verkuil | 91821ff | 2007-12-02 09:35:33 -0300 | [diff] [blame] | 3156 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3157 | JFS FILESYSTEM |
| 3158 | P: Dave Kleikamp |
| 3159 | M: shaggy@austin.ibm.com |
| 3160 | L: jfs-discussion@lists.sourceforge.net |
| 3161 | W: http://jfs.sourceforge.net/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3162 | 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] | 3163 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3164 | F: Documentation/filesystems/jfs.txt |
| 3165 | F: fs/jfs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3166 | |
Guo-Fu Tseng | 9525223 | 2008-09-16 01:00:11 +0800 | [diff] [blame] | 3167 | JME NETWORK DRIVER |
| 3168 | P: Guo-Fu Tseng |
| 3169 | M: cooldavid@cooldavid.org |
| 3170 | L: netdev@vger.kernel.org |
| 3171 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3172 | F: drivers/net/jme.* |
Guo-Fu Tseng | 9525223 | 2008-09-16 01:00:11 +0800 | [diff] [blame] | 3173 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3174 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
| 3175 | P: David Woodhouse |
| 3176 | M: dwmw2@infradead.org |
David Woodhouse | 6d85d06 | 2007-10-27 10:39:48 -0400 | [diff] [blame] | 3177 | L: linux-mtd@lists.infradead.org |
| 3178 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3179 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3180 | F: fs/jffs2/ |
| 3181 | F: include/linux/jffs2.h |
| 3182 | F: include/mtd/jffs2-user.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3183 | |
Josh Triplett | de456d3 | 2006-07-30 03:04:00 -0700 | [diff] [blame] | 3184 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 3185 | P: Stephen Tweedie |
| 3186 | M: sct@redhat.com |
| 3187 | P: Andrew Morton |
| 3188 | M: akpm@linux-foundation.org |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 3189 | L: linux-ext4@vger.kernel.org |
Theodore Tso | ae0718f | 2006-05-20 15:00:13 -0700 | [diff] [blame] | 3190 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3191 | F: fs/jbd*/ |
| 3192 | F: include/linux/ext*jbd*.h |
| 3193 | F: include/linux/jbd*.h |
Theodore Tso | ae0718f | 2006-05-20 15:00:13 -0700 | [diff] [blame] | 3194 | |
Rudolf Marek | 4660cb3 | 2006-10-08 22:01:26 +0200 | [diff] [blame] | 3195 | K8TEMP HARDWARE MONITORING DRIVER |
| 3196 | P: Rudolf Marek |
| 3197 | M: r.marek@assembler.cz |
| 3198 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3199 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3200 | F: Documentation/hwmon/k8temp |
| 3201 | F: drivers/hwmon/k8temp.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3202 | |
| 3203 | KCONFIG |
| 3204 | P: Roman Zippel |
| 3205 | M: zippel@linux-m68k.org |
Sam Ravnborg | 347d12d | 2007-10-18 13:23:33 +0200 | [diff] [blame] | 3206 | L: linux-kbuild@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3207 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3208 | F: Documentation/kbuild/kconfig-language.txt |
| 3209 | F: scripts/kconfig/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3210 | |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 3211 | KDUMP |
| 3212 | P: Vivek Goyal |
Vivek Goyal | 4200b66c | 2007-12-01 12:16:30 -0800 | [diff] [blame] | 3213 | M: vgoyal@redhat.com |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 3214 | P: Haren Myneni |
| 3215 | M: hbabu@us.ibm.com |
Simon Horman | 3463399 | 2007-05-08 00:31:40 -0700 | [diff] [blame] | 3216 | L: kexec@lists.infradead.org |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 3217 | L: linux-kernel@vger.kernel.org |
| 3218 | W: http://lse.sourceforge.net/kdump/ |
| 3219 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 3220 | F: Documentation/kdump/ |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 3221 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3222 | KERNEL AUTOMOUNTER (AUTOFS) |
| 3223 | P: H. Peter Anvin |
| 3224 | M: hpa@zytor.com |
| 3225 | L: autofs@linux.kernel.org |
| 3226 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3227 | F: fs/autofs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3228 | |
| 3229 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
| 3230 | P: Ian Kent |
| 3231 | M: raven@themaw.net |
| 3232 | L: autofs@linux.kernel.org |
| 3233 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3234 | F: fs/autofs4/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3235 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 3236 | KERNEL BUILD |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3237 | P: Sam Ravnborg |
| 3238 | M: sam@ravnborg.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3239 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git |
| 3240 | 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] | 3241 | L: linux-kbuild@vger.kernel.org |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 3242 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3243 | F: Documentation/kbuild/ |
| 3244 | F: Makefile |
| 3245 | F: scripts/Makefile.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3246 | |
| 3247 | KERNEL JANITORS |
| 3248 | P: Several |
maximilian attems | c3000e0 | 2007-07-06 11:17:32 -0700 | [diff] [blame] | 3249 | L: kernel-janitors@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3250 | W: http://www.kerneljanitors.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3251 | S: Maintained |
| 3252 | |
J. Bruce Fields | e8b4355 | 2008-07-23 08:49:50 -0400 | [diff] [blame] | 3253 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
Neil Brown | a512cd5 | 2007-07-31 00:37:27 -0700 | [diff] [blame] | 3254 | P: J. Bruce Fields |
| 3255 | M: bfields@fieldses.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3256 | P: Neil Brown |
NeilBrown | 98fac23 | 2007-01-26 00:56:57 -0800 | [diff] [blame] | 3257 | M: neilb@suse.de |
Neil Brown | 16141c0 | 2007-12-11 16:16:12 -0800 | [diff] [blame] | 3258 | L: linux-nfs@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3259 | W: http://nfs.sourceforge.net/ |
NeilBrown | 98fac23 | 2007-01-26 00:56:57 -0800 | [diff] [blame] | 3260 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3261 | F: fs/nfsd/ |
| 3262 | F: include/linux/nfsd/ |
| 3263 | F: fs/lockd/ |
| 3264 | F: fs/nfs_common/ |
| 3265 | F: net/sunrpc/ |
| 3266 | F: include/linux/lockd/ |
| 3267 | F: include/linux/sunrpc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3268 | |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 3269 | KERNEL VIRTUAL MACHINE (KVM) |
| 3270 | P: Avi Kivity |
Avi Kivity | 9ea1de4 | 2008-09-19 19:25:30 -0700 | [diff] [blame] | 3271 | M: avi@redhat.com |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 3272 | L: kvm@vger.kernel.org |
| 3273 | W: http://kvm.qumranet.com |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 3274 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3275 | F: Documentation/*/kvm.txt |
| 3276 | F: arch/*/kvm/ |
| 3277 | F: arch/*/include/asm/kvm* |
| 3278 | F: include/linux/kvm* |
| 3279 | F: virt/kvm/ |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 3280 | |
Joerg Roedel | ad8003d | 2008-09-10 20:01:07 +0200 | [diff] [blame] | 3281 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
| 3282 | P: Joerg Roedel |
| 3283 | M: joerg.roedel@amd.com |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3284 | L: kvm@vger.kernel.org |
| 3285 | W: http://kvm.qumranet.com |
| 3286 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3287 | F: arch/x86/include/asm/svm.h |
| 3288 | F: arch/x86/kvm/kvm_svm.h |
| 3289 | F: arch/x86/kvm/svm.c |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3290 | |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 3291 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
| 3292 | P: Hollis Blanchard |
| 3293 | M: hollisb@us.ibm.com |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 3294 | L: kvm-ppc@vger.kernel.org |
| 3295 | W: http://kvm.qumranet.com |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 3296 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3297 | F: arch/powerpc/include/asm/kvm* |
| 3298 | F: arch/powerpc/kvm/ |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 3299 | |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 3300 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
Zhang Xiantao | 920ed9f | 2008-01-31 12:03:39 +0800 | [diff] [blame] | 3301 | P: Xiantao Zhang |
| 3302 | M: xiantao.zhang@intel.com |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 3303 | L: kvm-ia64@vger.kernel.org |
| 3304 | W: http://kvm.qumranet.com |
Zhang Xiantao | 920ed9f | 2008-01-31 12:03:39 +0800 | [diff] [blame] | 3305 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3306 | F: Documentation/ia64/kvm.txt |
| 3307 | F: arch/ia64/include/asm/kvm* |
| 3308 | F: arch/ia64/kvm/ |
Zhang Xiantao | 920ed9f | 2008-01-31 12:03:39 +0800 | [diff] [blame] | 3309 | |
Christian Borntraeger | 85f8fff | 2008-03-25 18:47:41 +0100 | [diff] [blame] | 3310 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
| 3311 | P: Carsten Otte |
| 3312 | M: cotte@de.ibm.com |
| 3313 | P: Christian Borntraeger |
| 3314 | M: borntraeger@de.ibm.com |
| 3315 | M: linux390@de.ibm.com |
| 3316 | L: linux-s390@vger.kernel.org |
| 3317 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 3318 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3319 | F: Documentation/s390/kvm.txt |
| 3320 | F: arch/s390/include/asm/kvm* |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 3321 | F: arch/s390/kvm/ |
Christian Borntraeger | 85f8fff | 2008-03-25 18:47:41 +0100 | [diff] [blame] | 3322 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3323 | KEXEC |
| 3324 | P: Eric Biederman |
| 3325 | M: ebiederm@xmission.com |
Signed-off-by@vergenet.net":Simon | b7c698f | 2007-10-18 03:04:33 -0700 | [diff] [blame] | 3326 | 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] | 3327 | L: linux-kernel@vger.kernel.org |
Simon Horman | 3463399 | 2007-05-08 00:31:40 -0700 | [diff] [blame] | 3328 | L: kexec@lists.infradead.org |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3329 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3330 | F: include/linux/kexec.h |
| 3331 | F: kernel/kexec.c |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3332 | |
Jason Wessel | e3e2aaf | 2008-03-20 13:43:45 -0500 | [diff] [blame] | 3333 | KGDB |
| 3334 | P: Jason Wessel |
| 3335 | M: jason.wessel@windriver.com |
| 3336 | L: kgdb-bugreport@lists.sourceforge.net |
| 3337 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3338 | F: Documentation/DocBook/kgdb.tmpl |
| 3339 | F: drivers/misc/kgdbts.c |
| 3340 | F: drivers/serial/kgdboc.c |
| 3341 | F: include/linux/kgdb.h |
| 3342 | F: kernel/kgdb.c |
Jason Wessel | e3e2aaf | 2008-03-20 13:43:45 -0500 | [diff] [blame] | 3343 | |
Eduard - Gabriel Munteanu | b9ce08c | 2008-08-10 20:14:03 +0300 | [diff] [blame] | 3344 | KMEMTRACE |
| 3345 | P: Eduard - Gabriel Munteanu |
| 3346 | M: eduard.munteanu@linux360.ro |
| 3347 | L: linux-kernel@vger.kernel.org |
| 3348 | S: Maintained |
Joe Perches | dc8c7f8 | 2009-04-21 12:24:45 -0700 | [diff] [blame] | 3349 | F: Documentation/trace/kmemtrace.txt |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3350 | F: include/trace/kmemtrace.h |
| 3351 | F: kernel/trace/kmemtrace.c |
Eduard - Gabriel Munteanu | b9ce08c | 2008-08-10 20:14:03 +0300 | [diff] [blame] | 3352 | |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 3353 | KPROBES |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 3354 | P: Ananth N Mavinakayanahalli |
| 3355 | M: ananth@in.ibm.com |
| 3356 | P: Anil S Keshavamurthy |
| 3357 | M: anil.s.keshavamurthy@intel.com |
| 3358 | P: David S. Miller |
| 3359 | M: davem@davemloft.net |
Masami Hiramatsu | 6edef97 | 2008-03-26 15:53:19 -0400 | [diff] [blame] | 3360 | P: Masami Hiramatsu |
| 3361 | M: mhiramat@redhat.com |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 3362 | L: linux-kernel@vger.kernel.org |
| 3363 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3364 | F: Documentation/kprobes.txt |
| 3365 | F: include/linux/kprobes.h |
| 3366 | F: kernel/kprobes.c |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 3367 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3368 | KS0108 LCD CONTROLLER DRIVER |
| 3369 | P: Miguel Ojeda Sandonis |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 3370 | M: miguel.ojeda.sandonis@gmail.com |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3371 | L: linux-kernel@vger.kernel.org |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 3372 | W: http://miguelojeda.es/auxdisplay.htm |
| 3373 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3374 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3375 | F: Documentation/auxdisplay/ks0108 |
| 3376 | F: drivers/auxdisplay/ks0108.c |
| 3377 | F: include/linux/ks0108.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3378 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3379 | LAPB module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3380 | L: linux-x25@vger.kernel.org |
David S. Miller | bf9915c | 2006-07-21 14:55:17 -0700 | [diff] [blame] | 3381 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3382 | F: Documentation/networking/lapb-module.txt |
| 3383 | F: include/*/lapb.h |
| 3384 | F: net/lapb/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3385 | |
| 3386 | LASI 53c700 driver for PARISC |
| 3387 | P: James E.J. Bottomley |
| 3388 | M: James.Bottomley@HansenPartnership.com |
| 3389 | L: linux-scsi@vger.kernel.org |
| 3390 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3391 | F: Documentation/scsi/53c700.txt |
| 3392 | F: drivers/scsi/53c700* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3393 | |
Richard Purdie | 263de9b | 2006-05-15 09:44:16 -0700 | [diff] [blame] | 3394 | LED SUBSYSTEM |
| 3395 | P: Richard Purdie |
| 3396 | M: rpurdie@rpsys.net |
| 3397 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3398 | F: drivers/leds/ |
| 3399 | F: include/linux/leds.h |
Richard Purdie | 263de9b | 2006-05-15 09:44:16 -0700 | [diff] [blame] | 3400 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3401 | LEGO USB Tower driver |
| 3402 | P: Juergen Stuber |
| 3403 | M: starblue@users.sourceforge.net |
| 3404 | L: legousb-devel@lists.sourceforge.net |
| 3405 | W: http://legousb.sourceforge.net/ |
| 3406 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3407 | F: drivers/usb/misc/legousbtower.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3408 | |
Rusty Russell | 568a17f | 2007-10-25 14:12:24 +1000 | [diff] [blame] | 3409 | LGUEST |
| 3410 | P: Rusty Russell |
| 3411 | M: rusty@rustcorp.com.au |
| 3412 | L: lguest@ozlabs.org |
| 3413 | W: http://lguest.ozlabs.org/ |
| 3414 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3415 | F: Documentation/lguest/ |
| 3416 | F: arch/x86/lguest/ |
| 3417 | F: drivers/lguest/ |
| 3418 | F: include/linux/lguest*.h |
| 3419 | F: arch/x86/include/asm/lguest*.h |
Rusty Russell | 568a17f | 2007-10-25 14:12:24 +1000 | [diff] [blame] | 3420 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3421 | LINUX FOR IBM pSERIES (RS/6000) |
| 3422 | P: Paul Mackerras |
| 3423 | M: paulus@au.ibm.com |
| 3424 | W: http://www.ibm.com/linux/ltc/projects/ppc |
| 3425 | S: Supported |
| 3426 | |
Paul Mackerras | 852bb9f | 2008-07-04 21:04:42 +1000 | [diff] [blame] | 3427 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
Paul Mackerras | 852bb9f | 2008-07-04 21:04:42 +1000 | [diff] [blame] | 3428 | P: Benjamin Herrenschmidt |
| 3429 | M: benh@kernel.crashing.org |
Paul Mackerras | 92cde4d | 2009-01-02 15:40:55 +1100 | [diff] [blame] | 3430 | P: Paul Mackerras |
| 3431 | M: paulus@samba.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3432 | W: http://www.penguinppc.org/ |
| 3433 | L: linuxppc-dev@ozlabs.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3434 | 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] | 3435 | S: Supported |
| 3436 | |
| 3437 | LINUX FOR POWER MACINTOSH |
| 3438 | P: Benjamin Herrenschmidt |
| 3439 | M: benh@kernel.crashing.org |
| 3440 | W: http://www.penguinppc.org/ |
| 3441 | L: linuxppc-dev@ozlabs.org |
| 3442 | S: Maintained |
| 3443 | |
Grant Likely | 77a7636 | 2008-07-12 12:11:43 -0600 | [diff] [blame] | 3444 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
Grant Likely | e1eea9f | 2007-10-09 14:45:26 -0600 | [diff] [blame] | 3445 | P: Grant Likely |
| 3446 | M: grant.likely@secretlab.ca |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3447 | L: linuxppc-dev@ozlabs.org |
Grant Likely | 9d37a90 | 2009-04-28 06:50:15 +0000 | [diff] [blame] | 3448 | T: git git://git.secretlab.ca/git/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3449 | S: Maintained |
| 3450 | |
| 3451 | LINUX FOR POWERPC EMBEDDED PPC4XX |
Josh Boyer | 9a474ff | 2007-09-19 21:19:07 -0500 | [diff] [blame] | 3452 | P: Josh Boyer |
| 3453 | M: jwboyer@linux.vnet.ibm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3454 | P: Matt Porter |
| 3455 | M: mporter@kernel.crashing.org |
| 3456 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 3457 | L: linuxppc-dev@ozlabs.org |
Josh Boyer | 9ae2ccf | 2009-04-24 08:57:47 -0400 | [diff] [blame] | 3458 | 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] | 3459 | S: Maintained |
| 3460 | |
Grant Likely | 260c02a | 2007-10-02 12:15:34 +1000 | [diff] [blame] | 3461 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
| 3462 | P: Grant Likely |
| 3463 | M: grant.likely@secretlab.ca |
Grant Likely | f210d43 | 2007-10-03 23:24:52 -0600 | [diff] [blame] | 3464 | W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex |
Grant Likely | 260c02a | 2007-10-02 12:15:34 +1000 | [diff] [blame] | 3465 | L: linuxppc-dev@ozlabs.org |
Grant Likely | 9d37a90 | 2009-04-28 06:50:15 +0000 | [diff] [blame] | 3466 | T: git git://git.secretlab.ca/git/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3467 | S: Maintained |
| 3468 | |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 3469 | LINUX FOR POWERPC EMBEDDED PPC8XX |
Marcelo Tosatti | dba5baf | 2007-09-10 18:46:01 -0400 | [diff] [blame] | 3470 | P: Vitaly Bordug |
| 3471 | M: vitb@kernel.crashing.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 3472 | P: Marcelo Tosatti |
Marcelo Tosatti | 2e367a8 | 2006-05-15 09:44:08 -0700 | [diff] [blame] | 3473 | M: marcelo@kvack.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 3474 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 3475 | L: linuxppc-dev@ozlabs.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 3476 | S: Maintained |
| 3477 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3478 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3479 | P: Kumar Gala |
| 3480 | M: galak@kernel.crashing.org |
| 3481 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 3482 | L: linuxppc-dev@ozlabs.org |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3483 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3484 | |
Olof Johansson | ab06ff3 | 2006-09-06 14:44:54 -0500 | [diff] [blame] | 3485 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
| 3486 | P: Olof Johansson |
| 3487 | M: olof@lixom.net |
| 3488 | W: http://www.pasemi.com/ |
| 3489 | L: linuxppc-dev@ozlabs.org |
| 3490 | S: Supported |
| 3491 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3492 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
| 3493 | P: Chris Wright |
Chris Wright | 692a206 | 2006-03-11 03:27:19 -0800 | [diff] [blame] | 3494 | M: chrisw@sous-sol.org |
Chris Wright | 1a4520b | 2006-03-11 03:27:20 -0800 | [diff] [blame] | 3495 | L: linux-security-module@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3496 | 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] | 3497 | S: Supported |
| 3498 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3499 | LLC (802.2) |
| 3500 | P: Arnaldo Carvalho de Melo |
| 3501 | M: acme@ghostprotocols.net |
| 3502 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3503 | F: include/linux/llc.h |
| 3504 | F: include/net/llc* |
| 3505 | F: net/llc/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3506 | |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 3507 | LIS3LV02D ACCELEROMETER DRIVER |
| 3508 | P: Eric Piel |
| 3509 | M: eric.piel@tremplin-utc.net |
| 3510 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3511 | F: Documentation/hwmon/lis3lv02d |
| 3512 | F: drivers/hwmon/lis3lv02d.* |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 3513 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3514 | LM83 HARDWARE MONITOR DRIVER |
| 3515 | P: Jean Delvare |
| 3516 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 3517 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3518 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3519 | F: Documentation/hwmon/lm83 |
| 3520 | F: drivers/hwmon/lm83.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3521 | |
| 3522 | LM90 HARDWARE MONITOR DRIVER |
| 3523 | P: Jean Delvare |
| 3524 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 3525 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3526 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3527 | F: Documentation/hwmon/lm90 |
| 3528 | F: drivers/hwmon/lm90.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3529 | |
Peter Zijlstra | 512e67f | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 3530 | LOCKDEP AND LOCKSTAT |
| 3531 | P: Peter Zijlstra |
| 3532 | M: peterz@infradead.org |
| 3533 | P: Ingo Molnar |
| 3534 | M: mingo@redhat.com |
| 3535 | L: linux-kernel@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3536 | 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] | 3537 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3538 | F: Documentation/lockdep*.txt |
| 3539 | F: Documentation/lockstat.txt |
| 3540 | F: include/linux/lockdep.h |
| 3541 | F: kernel/lockdep* |
Peter Zijlstra | 512e67f | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 3542 | |
Anton Altaparmakov | dde3334 | 2007-05-21 09:37:42 +0100 | [diff] [blame] | 3543 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3544 | P: Richard Russon (FlatCap) |
| 3545 | M: ldm@flatcap.org |
Anton Altaparmakov | dde3334 | 2007-05-21 09:37:42 +0100 | [diff] [blame] | 3546 | L: linux-ntfs-dev@lists.sourceforge.net |
| 3547 | W: http://www.linux-ntfs.org/content/view/19/37/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3548 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3549 | F: Documentation/ldm.txt |
| 3550 | F: fs/partitions/ldm.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3551 | |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 3552 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
| 3553 | P: Eric Moore |
Eric Moore | d8a82d7 | 2006-12-29 16:47:43 -0800 | [diff] [blame] | 3554 | M: Eric.Moore@lsi.com |
| 3555 | M: support@lsi.com |
Eric Moore | cec744f | 2007-09-14 19:08:08 -0600 | [diff] [blame] | 3556 | L: DL-MPTFusionLinux@lsi.com |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 3557 | L: linux-scsi@vger.kernel.org |
| 3558 | W: http://www.lsilogic.com/support |
| 3559 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3560 | F: drivers/message/fusion/ |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 3561 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3562 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
| 3563 | P: Matthew Wilcox |
| 3564 | M: matthew@wil.cx |
| 3565 | L: linux-scsi@vger.kernel.org |
| 3566 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3567 | F: drivers/scsi/sym53c8xx_2/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3568 | |
Mike Frysinger | 81365c3 | 2008-10-29 14:01:12 -0700 | [diff] [blame] | 3569 | LTP (Linux Test Project) |
| 3570 | P: Subrata Modak |
| 3571 | M: subrata@linux.vnet.ibm.com |
| 3572 | P: Mike Frysinger |
| 3573 | M: vapier@gentoo.org |
| 3574 | L: ltp-list@lists.sourceforge.net (subscribers-only) |
| 3575 | W: http://ltp.sourceforge.net/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3576 | 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] | 3577 | S: Maintained |
| 3578 | |
Hirokazu Takata | c12a54b | 2007-07-15 23:38:45 -0700 | [diff] [blame] | 3579 | M32R ARCHITECTURE |
| 3580 | P: Hirokazu Takata |
| 3581 | M: takata@linux-m32r.org |
| 3582 | L: linux-m32r@ml.linux-m32r.org |
| 3583 | L: linux-m32r-ja@ml.linux-m32r.org (in Japanese) |
| 3584 | W: http://www.linux-m32r.org/ |
| 3585 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3586 | F: arch/m32r/ |
| 3587 | F: include/asm-m32r/ |
Hirokazu Takata | c12a54b | 2007-07-15 23:38:45 -0700 | [diff] [blame] | 3588 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3589 | M68K ARCHITECTURE |
| 3590 | P: Geert Uytterhoeven |
| 3591 | M: geert@linux-m68k.org |
| 3592 | P: Roman Zippel |
| 3593 | M: zippel@linux-m68k.org |
| 3594 | L: linux-m68k@lists.linux-m68k.org |
| 3595 | W: http://www.linux-m68k.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3596 | 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] | 3597 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3598 | F: arch/m68k/ |
Joe Perches | 9db3518 | 2009-04-08 08:39:56 -0700 | [diff] [blame] | 3599 | F: drivers/zorro/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3600 | |
| 3601 | M68K ON APPLE MACINTOSH |
| 3602 | P: Joshua Thompson |
| 3603 | M: funaho@jurai.org |
| 3604 | W: http://www.mac.linux-m68k.org/ |
Finn Thain | 9bb9f22 | 2007-11-18 11:10:05 +0100 | [diff] [blame] | 3605 | L: linux-m68k@lists.linux-m68k.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3606 | S: Maintained |
Joe Perches | 9db3518 | 2009-04-08 08:39:56 -0700 | [diff] [blame] | 3607 | F: arch/m68k/mac/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3608 | |
| 3609 | M68K ON HP9000/300 |
| 3610 | P: Philip Blundell |
| 3611 | M: philb@gnu.org |
| 3612 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
| 3613 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3614 | F: arch/m68k/hp300/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3615 | |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 3616 | MAC80211 |
Johannes Berg | 31c7cec | 2007-10-23 17:05:25 +0200 | [diff] [blame] | 3617 | P: Johannes Berg |
| 3618 | M: johannes@sipsolutions.net |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 3619 | L: linux-wireless@vger.kernel.org |
| 3620 | W: http://linuxwireless.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3621 | 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] | 3622 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3623 | F: Documentation/networking/mac80211-injection.txt |
| 3624 | F: include/net/mac80211.h |
| 3625 | F: net/mac80211/ |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 3626 | |
Stefano Brivio | 1036d86 | 2007-12-23 04:46:27 +0100 | [diff] [blame] | 3627 | MAC80211 PID RATE CONTROL |
| 3628 | P: Stefano Brivio |
| 3629 | M: stefano.brivio@polimi.it |
| 3630 | P: Mattias Nissler |
| 3631 | M: mattias.nissler@gmx.de |
| 3632 | L: linux-wireless@vger.kernel.org |
| 3633 | W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3634 | 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] | 3635 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3636 | F: net/mac80211/rc80211_pid* |
Stefano Brivio | 1036d86 | 2007-12-23 04:46:27 +0100 | [diff] [blame] | 3637 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 3638 | MACVLAN DRIVER |
| 3639 | P: Patrick McHardy |
| 3640 | M: kaber@trash.net |
| 3641 | L: netdev@vger.kernel.org |
| 3642 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3643 | F: drivers/net/macvlan.c |
| 3644 | F: include/linux/if_macvlan.h |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 3645 | |
Michael Kerrisk | faf1668 | 2005-07-31 22:34:47 -0700 | [diff] [blame] | 3646 | 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] | 3647 | P: Michael Kerrisk |
Michael Kerrisk | 1d7f502 | 2007-10-16 23:30:31 -0700 | [diff] [blame] | 3648 | M: mtk.manpages@gmail.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 3649 | W: http://www.kernel.org/doc/man-pages |
Michael Kerrisk | bd7ebec | 2008-10-03 15:23:44 -0700 | [diff] [blame] | 3650 | L: linux-man@vger.kernel.org |
Michael Kerrisk | 1b53dc7 | 2009-03-12 14:31:32 -0700 | [diff] [blame] | 3651 | S: Maintained |
Michael Kerrisk | faf1668 | 2005-07-31 22:34:47 -0700 | [diff] [blame] | 3652 | |
Stefano Brivio | 74cda16 | 2007-11-19 20:27:46 +0100 | [diff] [blame] | 3653 | MARVELL LIBERTAS WIRELESS DRIVER |
| 3654 | P: Dan Williams |
| 3655 | M: dcbw@redhat.com |
| 3656 | L: libertas-dev@lists.infradead.org |
| 3657 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3658 | F: drivers/net/wireless/libertas/ |
Stefano Brivio | 74cda16 | 2007-11-19 20:27:46 +0100 | [diff] [blame] | 3659 | |
Dale Farnsworth | b60d697 | 2006-01-16 16:45:45 -0700 | [diff] [blame] | 3660 | MARVELL MV643XX ETHERNET DRIVER |
Dale Farnsworth | 85ba9d9 | 2008-06-05 06:10:51 -0700 | [diff] [blame] | 3661 | P: Lennert Buytenhek |
| 3662 | M: buytenh@marvell.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 3663 | L: netdev@vger.kernel.org |
Dale Farnsworth | 85ba9d9 | 2008-06-05 06:10:51 -0700 | [diff] [blame] | 3664 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3665 | F: drivers/net/mv643xx_eth.* |
| 3666 | F: include/linux/mv643xx.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3667 | |
Pierre Ossman | 2a69567 | 2009-03-16 19:52:26 +0100 | [diff] [blame] | 3668 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
| 3669 | P: Nicolas Pitre |
| 3670 | M: nico@cam.org |
| 3671 | L: linux-kernel@vger.kernel.org |
| 3672 | S: Maintained |
| 3673 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3674 | MARVELL YUKON / SYSKONNECT DRIVER |
| 3675 | P: Mirko Lindner |
| 3676 | M: mlindner@syskonnect.de |
| 3677 | P: Ralph Roesler |
| 3678 | M: rroesler@syskonnect.de |
| 3679 | W: http://www.syskonnect.com |
| 3680 | S: Supported |
| 3681 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3682 | MATROX FRAMEBUFFER DRIVER |
| 3683 | P: Petr Vandrovec |
| 3684 | M: vandrove@vc.cvut.cz |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 3685 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3686 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3687 | F: drivers/video/matrox/matroxfb_* |
| 3688 | F: include/linux/matroxfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3689 | |
Hans-Juergen Koch | d20620d | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 3690 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
| 3691 | P: Hans J. Koch |
| 3692 | M: hjk@linutronix.de |
| 3693 | L: lm-sensors@lm-sensors.org |
| 3694 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3695 | F: Documentation/hwmon/max6650 |
| 3696 | F: drivers/hwmon/max6650.c |
Hans-Juergen Koch | d20620d | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 3697 | |
Joe Perches | 127c49a | 2009-04-08 08:34:04 -0700 | [diff] [blame] | 3698 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
| 3699 | P: Mauro Carvalho Chehab |
| 3700 | M: mchehab@infradead.org |
| 3701 | P: LinuxTV.org Project |
| 3702 | L: linux-media@vger.kernel.org |
| 3703 | W: http://linuxtv.org |
| 3704 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
| 3705 | S: Maintained |
| 3706 | F: Documentation/dvb/ |
| 3707 | F: Documentation/video4linux/ |
| 3708 | F: drivers/media/ |
| 3709 | F: include/media/ |
| 3710 | F: include/linux/dvb/ |
| 3711 | F: include/linux/videodev*.h |
Steven Rostedt | 70ea91f | 2006-07-30 03:03:53 -0700 | [diff] [blame] | 3712 | |
| 3713 | MEGARAID SCSI DRIVERS |
David Woodhouse | f4e9ce66c | 2006-04-11 19:29:07 -0400 | [diff] [blame] | 3714 | P: Neela Syam Kolli |
Sumant Patro | bdd0d757 | 2007-05-10 07:22:35 -0700 | [diff] [blame] | 3715 | M: megaraidlinux@lsi.com |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 3716 | L: linux-scsi@vger.kernel.org |
Kolli, Neela Syam | 757e010 | 2005-10-14 15:59:13 -0700 | [diff] [blame] | 3717 | W: http://megaraid.lsilogic.com |
| 3718 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3719 | F: Documentation/scsi/megaraid.txt |
| 3720 | F: drivers/scsi/megaraid.* |
| 3721 | F: drivers/scsi/megaraid/ |
Kolli, Neela Syam | 757e010 | 2005-10-14 15:59:13 -0700 | [diff] [blame] | 3722 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3723 | MEMORY MANAGEMENT |
| 3724 | L: linux-mm@kvack.org |
| 3725 | L: linux-kernel@vger.kernel.org |
| 3726 | W: http://www.linux-mm.org |
| 3727 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3728 | F: include/linux/mm.h |
| 3729 | F: mm/ |
David Woodhouse | f4e9ce66c | 2006-04-11 19:29:07 -0400 | [diff] [blame] | 3730 | |
akpm@linux-foundation.org | 938a920 | 2008-03-04 14:28:29 -0800 | [diff] [blame] | 3731 | MEMORY RESOURCE CONTROLLER |
| 3732 | P: Balbir Singh |
| 3733 | M: balbir@linux.vnet.ibm.com |
| 3734 | P: Pavel Emelyanov |
| 3735 | M: xemul@openvz.org |
| 3736 | P: KAMEZAWA Hiroyuki |
| 3737 | M: kamezawa.hiroyu@jp.fujitsu.com |
| 3738 | L: linux-mm@kvack.org |
| 3739 | L: linux-kernel@vger.kernel.org |
| 3740 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3741 | F: mm/memcontrol.c |
akpm@linux-foundation.org | 938a920 | 2008-03-04 14:28:29 -0800 | [diff] [blame] | 3742 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3743 | MEMORY TECHNOLOGY DEVICES (MTD) |
| 3744 | P: David Woodhouse |
| 3745 | M: dwmw2@infradead.org |
| 3746 | W: http://www.linux-mtd.infradead.org/ |
| 3747 | L: linux-mtd@lists.infradead.org |
Josh Boyer | 2c560ac | 2005-11-23 15:43:57 -0800 | [diff] [blame] | 3748 | T: git git://git.infradead.org/mtd-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3749 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3750 | F: drivers/mtd/ |
| 3751 | F: include/linux/mtd/ |
| 3752 | F: include/mtd/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3753 | |
Michal Simek | c6375b0 | 2009-03-27 14:25:52 +0100 | [diff] [blame] | 3754 | MICROBLAZE ARCHITECTURE |
| 3755 | P: Michal Simek |
| 3756 | M: monstr@monstr.eu |
| 3757 | L: microblaze-uclinux@itee.uq.edu.au |
| 3758 | W: http://www.monstr.eu/fdt/ |
| 3759 | T: git git://git.monstr.eu/linux-2.6-microblaze.git |
| 3760 | S: Supported |
Michal Simek | 0a8c791 | 2009-04-14 11:38:57 +0200 | [diff] [blame] | 3761 | F: arch/microblaze/ |
Michal Simek | c6375b0 | 2009-03-27 14:25:52 +0100 | [diff] [blame] | 3762 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3763 | MICROTEK X6 SCANNER |
| 3764 | P: Oliver Neukum |
| 3765 | M: oliver@neukum.name |
| 3766 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3767 | F: drivers/usb/image/microtek.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3768 | |
| 3769 | MIPS |
| 3770 | P: Ralf Baechle |
| 3771 | M: ralf@linux-mips.org |
Ralf Baechle | d50f7ec | 2005-10-04 13:30:10 +0100 | [diff] [blame] | 3772 | W: http://www.linux-mips.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3773 | L: linux-mips@linux-mips.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3774 | T: git git://git.linux-mips.org/pub/scm/linux.git |
Ralf Baechle | 7425b34 | 2006-03-10 13:47:21 +0000 | [diff] [blame] | 3775 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3776 | F: Documentation/mips/ |
| 3777 | F: arch/mips/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3778 | |
| 3779 | MISCELLANEOUS MCA-SUPPORT |
| 3780 | P: James Bottomley |
James Bottomley | c4e1608 | 2007-11-03 08:40:30 -0500 | [diff] [blame] | 3781 | M: James.Bottomley@HansenPartnership.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3782 | L: linux-kernel@vger.kernel.org |
| 3783 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3784 | F: Documentation/ia64/mca.txt |
| 3785 | F: Documentation/mca.txt |
| 3786 | F: drivers/mca/ |
| 3787 | F: include/linux/mca* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3788 | |
| 3789 | MODULE SUPPORT |
| 3790 | P: Rusty Russell |
| 3791 | M: rusty@rustcorp.com.au |
| 3792 | L: linux-kernel@vger.kernel.org |
| 3793 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3794 | F: include/linux/module.h |
| 3795 | F: kernel/module.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3796 | |
| 3797 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER |
| 3798 | P: Stelian Pop |
| 3799 | M: stelian@popies.net |
| 3800 | W: http://popies.net/meye/ |
| 3801 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3802 | F: Documentation/video4linux/meye.txt |
| 3803 | F: drivers/media/video/meye.* |
| 3804 | F: include/linux/meye.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3805 | |
Pavel Pisa | c58ff04 | 2007-05-16 01:10:41 +0200 | [diff] [blame] | 3806 | MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER |
| 3807 | P: Pavel Pisa |
| 3808 | M: ppisa@pikron.com |
| 3809 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Pavel Pisa | c58ff04 | 2007-05-16 01:10:41 +0200 | [diff] [blame] | 3810 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3811 | F: drivers/mmc/host/imxmmc.* |
Pavel Pisa | c58ff04 | 2007-05-16 01:10:41 +0200 | [diff] [blame] | 3812 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3813 | MOUSE AND MISC DEVICES [GENERAL] |
| 3814 | P: Alessandro Rubini |
| 3815 | M: rubini@ipvvis.unipv.it |
| 3816 | L: linux-kernel@vger.kernel.org |
| 3817 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3818 | F: drivers/input/mouse/ |
| 3819 | F: include/linux/gpio_mouse.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3820 | |
Jiri Slaby | b9705b6 | 2008-04-30 00:53:48 -0700 | [diff] [blame] | 3821 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3822 | P: Jiri Slaby |
| 3823 | M: jirislaby@gmail.com |
| 3824 | L: linux-kernel@vger.kernel.org |
| 3825 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3826 | F: Documentation/serial/moxa-smartio |
| 3827 | F: drivers/char/mxser.* |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3828 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 3829 | MSI LAPTOP SUPPORT |
| 3830 | P: Lennart Poettering |
| 3831 | M: mzxreary@0pointer.de |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 3832 | W: https://tango.0pointer.de/mailman/listinfo/s270-linux |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 3833 | W: http://0pointer.de/lennart/tchibo.html |
| 3834 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3835 | F: drivers/platform/x86/msi-laptop.c |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 3836 | |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 3837 | MULTIFUNCTION DEVICES (MFD) |
| 3838 | P: Samuel Ortiz |
Samuel Ortiz | 895d9f0 | 2009-03-23 00:46:18 +0100 | [diff] [blame] | 3839 | M: sameo@linux.intel.com |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 3840 | L: linux-kernel@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3841 | 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] | 3842 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3843 | F: drivers/mfd/ |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 3844 | |
Pierre Ossman | 5c4e6f1 | 2007-05-21 20:23:20 +0200 | [diff] [blame] | 3845 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
Pierre Ossman | b9f5d80 | 2006-10-17 00:09:30 -0700 | [diff] [blame] | 3846 | P: Pierre Ossman |
Pierre Ossman | 32710e8 | 2009-04-08 20:14:54 +0200 | [diff] [blame] | 3847 | M: pierre@ossman.eu |
Pierre Ossman | b9f5d80 | 2006-10-17 00:09:30 -0700 | [diff] [blame] | 3848 | L: linux-kernel@vger.kernel.org |
| 3849 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3850 | F: drivers/mmc/ |
| 3851 | F: include/linux/mmc/ |
Russell King | baca2da | 2006-06-04 17:36:31 +0100 | [diff] [blame] | 3852 | |
David Brownell | 15a0580 | 2007-08-08 09:12:54 -0700 | [diff] [blame] | 3853 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
| 3854 | P: David Brownell |
| 3855 | M: dbrownell@users.sourceforge.net |
| 3856 | L: linux-kernel@vger.kernel.org |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 3857 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3858 | F: drivers/mmc/host/mmc_spi.c |
| 3859 | F: include/linux/spi/mmc_spi.h |
David Brownell | 15a0580 | 2007-08-08 09:12:54 -0700 | [diff] [blame] | 3860 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3861 | MULTISOUND SOUND DRIVER |
| 3862 | P: Andrew Veliath |
| 3863 | M: andrewtv@usa.net |
| 3864 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3865 | F: Documentation/sound/oss/MultiSound |
| 3866 | F: sound/oss/msnd* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3867 | |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3868 | MULTITECH MULTIPORT CARD (ISICOM) |
| 3869 | P: Jiri Slaby |
| 3870 | M: jirislaby@gmail.com |
| 3871 | L: linux-kernel@vger.kernel.org |
| 3872 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3873 | F: drivers/char/isicom.c |
| 3874 | F: include/linux/isicom.h |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3875 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 3876 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 3877 | P: Felipe Balbi |
| 3878 | M: felipe.balbi@nokia.com |
| 3879 | L: linux-usb@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3880 | T: git git://gitorious.org/musb/mainline.git |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 3881 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3882 | F: drivers/usb/musb/ |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 3883 | |
Brice Goglin | 2d3cf58 | 2008-05-17 12:45:36 +0200 | [diff] [blame] | 3884 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
| 3885 | P: Andrew Gallatin |
| 3886 | M: gallatin@myri.com |
| 3887 | P: Brice Goglin |
| 3888 | M: brice@myri.com |
| 3889 | L: netdev@vger.kernel.org |
| 3890 | W: http://www.myri.com/scs/download-Myri10GE.html |
| 3891 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3892 | F: drivers/net/myri10ge/ |
Brice Goglin | 2d3cf58 | 2008-05-17 12:45:36 +0200 | [diff] [blame] | 3893 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3894 | NATSEMI ETHERNET DRIVER (DP8381x) |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 3895 | P: Tim Hockin |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3896 | M: thockin@hockin.org |
| 3897 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3898 | F: drivers/net/natsemi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3899 | |
| 3900 | NCP FILESYSTEM |
| 3901 | P: Petr Vandrovec |
| 3902 | M: vandrove@vc.cvut.cz |
| 3903 | L: linware@sh.cvut.cz |
| 3904 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3905 | F: fs/ncpfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3906 | |
| 3907 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
| 3908 | P: James E.J. Bottomley |
| 3909 | M: James.Bottomley@HansenPartnership.com |
| 3910 | L: linux-scsi@vger.kernel.org |
| 3911 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3912 | F: drivers/scsi/NCR_D700.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3913 | |
Glenn Streiff | 3c2d774 | 2008-02-04 20:20:45 -0800 | [diff] [blame] | 3914 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
| 3915 | P: Faisal Latif |
Roland Dreier | 7b49d95 | 2008-10-16 15:39:14 -0700 | [diff] [blame] | 3916 | M: faisal.latif@intel.com |
Chien Tung | 5f62560 | 2008-05-26 15:23:32 -0700 | [diff] [blame] | 3917 | P: Chien Tung |
Roland Dreier | 7b49d95 | 2008-10-16 15:39:14 -0700 | [diff] [blame] | 3918 | M: chien.tin.tung@intel.com |
Glenn Streiff | 3c2d774 | 2008-02-04 20:20:45 -0800 | [diff] [blame] | 3919 | L: general@lists.openfabrics.org |
| 3920 | W: http://www.neteffect.com |
| 3921 | S: Supported |
| 3922 | F: drivers/infiniband/hw/nes/ |
| 3923 | |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 3924 | NETEM NETWORK EMULATOR |
| 3925 | P: Stephen Hemminger |
Stephen Hemminger | 65ebe634 | 2007-01-23 11:38:57 -0800 | [diff] [blame] | 3926 | M: shemminger@linux-foundation.org |
David Brownell | f318a63 | 2007-04-23 14:41:06 -0700 | [diff] [blame] | 3927 | L: netem@lists.linux-foundation.org |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 3928 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3929 | F: net/sched/sch_netem.c |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 3930 | |
Ramkrishna Vepa | b136d1c | 2009-04-01 18:14:25 +0000 | [diff] [blame] | 3931 | NETERION (S2IO) 10GbE DRIVER (xframe/vxge) |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 3932 | P: Ramkrishna Vepa |
| 3933 | M: ram.vepa@neterion.com |
| 3934 | P: Rastapur Santosh |
| 3935 | M: santosh.rastapur@neterion.com |
| 3936 | P: Sivakumar Subramani |
| 3937 | M: sivakumar.subramani@neterion.com |
| 3938 | P: Sreenivasa Honnur |
| 3939 | M: sreenivasa.honnur@neterion.com |
Ramkrishna Vepa | b136d1c | 2009-04-01 18:14:25 +0000 | [diff] [blame] | 3940 | P: Anil Murthy |
| 3941 | M: anil.murthy@neterion.com |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 3942 | L: netdev@vger.kernel.org |
Ramkrishna Vepa | b136d1c | 2009-04-01 18:14:25 +0000 | [diff] [blame] | 3943 | W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous |
| 3944 | W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 3945 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3946 | F: Documentation/networking/s2io.txt |
| 3947 | F: drivers/net/s2io* |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 3948 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3949 | NETFILTER/IPTABLES/IPCHAINS |
| 3950 | P: Rusty Russell |
| 3951 | P: Marc Boucher |
| 3952 | P: James Morris |
| 3953 | P: Harald Welte |
| 3954 | P: Jozsef Kadlecsik |
Patrick McHardy | 82b9854 | 2006-10-12 14:08:55 -0700 | [diff] [blame] | 3955 | P: Patrick McHardy |
| 3956 | M: kaber@trash.net |
Patrick McHardy | 1a03b81 | 2007-09-18 13:19:26 -0700 | [diff] [blame] | 3957 | L: netfilter-devel@vger.kernel.org |
| 3958 | L: netfilter@vger.kernel.org |
Patrick McHardy | 82b9854 | 2006-10-12 14:08:55 -0700 | [diff] [blame] | 3959 | L: coreteam@netfilter.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3960 | W: http://www.netfilter.org/ |
| 3961 | W: http://www.iptables.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3962 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3963 | F: include/linux/netfilter* |
| 3964 | F: include/linux/netfilter/ |
| 3965 | F: include/net/netfilter/ |
| 3966 | F: net/*/netfilter.c |
| 3967 | F: net/*/netfilter/ |
| 3968 | F: net/netfilter/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3969 | |
Paul Moore | 4cc6773 | 2006-09-25 15:57:13 -0700 | [diff] [blame] | 3970 | NETLABEL |
| 3971 | P: Paul Moore |
| 3972 | M: paul.moore@hp.com |
| 3973 | W: http://netlabel.sf.net |
| 3974 | L: netdev@vger.kernel.org |
| 3975 | S: Supported |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 3976 | F: Documentation/netlabel/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3977 | F: include/net/netlabel.h |
| 3978 | F: net/netlabel/ |
Paul Moore | 4cc6773 | 2006-09-25 15:57:13 -0700 | [diff] [blame] | 3979 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3980 | NETROM NETWORK LAYER |
| 3981 | P: Ralf Baechle |
| 3982 | M: ralf@linux-mips.org |
| 3983 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 3984 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3985 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3986 | F: include/linux/netrom.h |
| 3987 | F: include/net/netrom.h |
| 3988 | F: net/netrom/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3989 | |
Pavel Machek | 5ddb88c | 2006-09-29 02:01:29 -0700 | [diff] [blame] | 3990 | NETWORK BLOCK DEVICE (NBD) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3991 | P: Paul Clements |
| 3992 | M: Paul.Clements@steeleye.com |
| 3993 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3994 | F: Documentation/blockdev/nbd.txt |
| 3995 | F: drivers/block/nbd.c |
| 3996 | F: include/linux/nbd.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3997 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3998 | NETWORKING [GENERAL] |
Ben Hutchings | 48f6e89 | 2009-04-09 05:47:41 +0000 | [diff] [blame] | 3999 | P: David S. Miller |
| 4000 | M: davem@davemloft.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 4001 | L: netdev@vger.kernel.org |
Joe Perches | b1e8fd5 | 2009-04-16 09:38:46 +0000 | [diff] [blame] | 4002 | W: http://www.linuxfoundation.org/en/Net |
| 4003 | 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] | 4004 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4005 | F: net/ |
| 4006 | F: include/net/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4007 | |
| 4008 | NETWORKING [IPv4/IPv6] |
| 4009 | P: David S. Miller |
| 4010 | M: davem@davemloft.net |
| 4011 | P: Alexey Kuznetsov |
| 4012 | M: kuznet@ms2.inr.ac.ru |
| 4013 | P: Pekka Savola (ipv6) |
| 4014 | M: pekkas@netcore.fi |
| 4015 | P: James Morris |
James Morris | 48de5be | 2005-08-08 10:29:08 -0400 | [diff] [blame] | 4016 | M: jmorris@namei.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4017 | P: Hideaki YOSHIFUJI |
| 4018 | M: yoshfuji@linux-ipv6.org |
| 4019 | P: Patrick McHardy |
Patrick McHardy | 1a03b81 | 2007-09-18 13:19:26 -0700 | [diff] [blame] | 4020 | M: kaber@trash.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 4021 | L: netdev@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4022 | 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] | 4023 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4024 | F: net/ipv4/ |
| 4025 | F: net/ipv6/ |
| 4026 | F: include/net/ip* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4027 | |
James Morris | 10e2ff1 | 2007-08-25 14:41:28 -0700 | [diff] [blame] | 4028 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
| 4029 | P: Paul Moore |
| 4030 | M: paul.moore@hp.com |
| 4031 | L: netdev@vger.kernel.org |
| 4032 | S: Maintained |
| 4033 | |
John W. Linville | 29f8f63 | 2006-01-18 14:52:48 -0800 | [diff] [blame] | 4034 | NETWORKING [WIRELESS] |
| 4035 | P: John W. Linville |
| 4036 | M: linville@tuxdriver.com |
Randy Dunlap | 2cb4abd | 2007-02-07 15:52:36 -0800 | [diff] [blame] | 4037 | L: linux-wireless@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4038 | 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] | 4039 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4040 | F: net/wireless/ |
| 4041 | F: include/net/ieee80211* |
| 4042 | F: include/net/wireless.h |
John W. Linville | 29f8f63 | 2006-01-18 14:52:48 -0800 | [diff] [blame] | 4043 | |
Joe Perches | 788873a | 2009-04-16 09:38:45 +0000 | [diff] [blame] | 4044 | NETWORKING DRIVERS |
| 4045 | L: netdev@vger.kernel.org |
| 4046 | W: http://www.linuxfoundation.org/en/Net |
| 4047 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git |
| 4048 | S: Odd Fixes |
| 4049 | F: drivers/net/ |
| 4050 | |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 4051 | NETXEN (1/10) GbE SUPPORT |
dhananjay@netxen.com | d230ce3 | 2007-12-26 10:23:53 -0800 | [diff] [blame] | 4052 | P: Dhananjay Phadke |
| 4053 | M: dhananjay@netxen.com |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 4054 | L: netdev@vger.kernel.org |
| 4055 | W: http://www.netxen.com |
| 4056 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4057 | F: drivers/net/netxen/ |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 4058 | |
J. Bruce Fields | e8b4355 | 2008-07-23 08:49:50 -0400 | [diff] [blame] | 4059 | NFS, SUNRPC, AND LOCKD CLIENTS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4060 | P: Trond Myklebust |
Trond Myklebust | 78f5815 | 2007-12-12 20:16:06 -0500 | [diff] [blame] | 4061 | M: Trond.Myklebust@netapp.com |
| 4062 | L: linux-nfs@vger.kernel.org |
| 4063 | W: http://client.linux-nfs.org |
| 4064 | 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] | 4065 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4066 | F: fs/lockd/ |
| 4067 | F: fs/nfs/ |
| 4068 | F: fs/nfs_common/ |
| 4069 | F: net/sunrpc/ |
| 4070 | F: include/linux/lockd/ |
| 4071 | F: include/linux/nfs* |
| 4072 | F: include/linux/sunrpc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4073 | |
| 4074 | NI5010 NETWORK DRIVER |
Andreas Mohr | 5b552b1 | 2006-06-30 02:25:07 -0700 | [diff] [blame] | 4075 | P: Jan-Pascal van Best |
| 4076 | M: janpascal@vanbest.org |
| 4077 | P: Andreas Mohr |
| 4078 | M: andi@lisas.de |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 4079 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4080 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4081 | F: drivers/net/ni5010.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4082 | |
Ryusuke Konishi | 85ef9ce | 2009-04-06 19:01:46 -0700 | [diff] [blame] | 4083 | NILFS2 FILESYSTEM |
| 4084 | P: KONISHI Ryusuke |
| 4085 | M: konishi.ryusuke@lab.ntt.co.jp |
| 4086 | L: users@nilfs.org |
| 4087 | W: http://www.nilfs.org/en/ |
| 4088 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4089 | F: Documentation/filesystems/nilfs2.txt |
| 4090 | F: fs/nilfs2/ |
| 4091 | F: include/linux/nilfs2_fs.h |
Ryusuke Konishi | 85ef9ce | 2009-04-06 19:01:46 -0700 | [diff] [blame] | 4092 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4093 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
| 4094 | P: YOKOTA Hiroshi |
| 4095 | M: yokota@netlab.is.tsukuba.ac.jp |
| 4096 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
| 4097 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4098 | F: Documentation/scsi/NinjaSCSI.txt |
| 4099 | F: drivers/scsi/pcmcia/nsp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4100 | |
| 4101 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER |
| 4102 | P: GOTO Masanori |
| 4103 | M: gotom@debian.or.jp |
| 4104 | P: YOKOTA Hiroshi |
| 4105 | M: yokota@netlab.is.tsukuba.ac.jp |
| 4106 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
| 4107 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4108 | F: Documentation/scsi/NinjaSCSI.txt |
| 4109 | F: drivers/scsi/nsp32* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4111 | NTFS FILESYSTEM |
| 4112 | P: Anton Altaparmakov |
| 4113 | M: aia21@cantab.net |
| 4114 | L: linux-ntfs-dev@lists.sourceforge.net |
| 4115 | L: linux-kernel@vger.kernel.org |
Adrian Bunk | 169ccbd | 2008-09-02 14:35:37 -0700 | [diff] [blame] | 4116 | W: http://www.linux-ntfs.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4117 | 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] | 4118 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4119 | F: Documentation/filesystems/ntfs.txt |
| 4120 | F: fs/ntfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4121 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 4122 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4123 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 4124 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 4125 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4126 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4127 | F: drivers/video/riva/ |
| 4128 | F: drivers/video/nvidia/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4129 | |
Bob Copeland | 0ad122d | 2008-07-25 19:45:18 -0700 | [diff] [blame] | 4130 | OMFS FILESYSTEM |
| 4131 | P: Bob Copeland |
| 4132 | M: me@bobcopeland.com |
| 4133 | L: linux-karma-devel@lists.sourceforge.net |
| 4134 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4135 | F: Documentation/filesystems/omfs.txt |
| 4136 | F: fs/omfs/ |
Bob Copeland | 0ad122d | 2008-07-25 19:45:18 -0700 | [diff] [blame] | 4137 | |
Harald Welte | c1986ee | 2005-11-13 16:06:29 -0800 | [diff] [blame] | 4138 | OMNIKEY CARDMAN 4000 DRIVER |
| 4139 | P: Harald Welte |
| 4140 | M: laforge@gnumonks.org |
| 4141 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4142 | F: drivers/char/pcmcia/cm4000_cs.c |
| 4143 | F: include/linux/cm4000_cs.h |
Harald Welte | c1986ee | 2005-11-13 16:06:29 -0800 | [diff] [blame] | 4144 | |
Harald Welte | 77c44ab | 2005-11-13 16:06:26 -0800 | [diff] [blame] | 4145 | OMNIKEY CARDMAN 4040 DRIVER |
| 4146 | P: Harald Welte |
| 4147 | M: laforge@gnumonks.org |
| 4148 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4149 | F: drivers/char/pcmcia/cm4040_cs.* |
Harald Welte | 77c44ab | 2005-11-13 16:06:26 -0800 | [diff] [blame] | 4150 | |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 4151 | OMNIVISION OV7670 SENSOR DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 4152 | P: Jonathan Corbet |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 4153 | M: corbet@lwn.net |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 4154 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4155 | 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] | 4156 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4157 | F: drivers/media/video/ov7670.c |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 4158 | |
Thomas Gleixner | 431bca7 | 2007-05-02 09:31:35 +0200 | [diff] [blame] | 4159 | ONENAND FLASH DRIVER |
| 4160 | P: Kyungmin Park |
| 4161 | M: kyungmin.park@samsung.com |
| 4162 | L: linux-mtd@lists.infradead.org |
| 4163 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4164 | F: drivers/mtd/onenand/ |
| 4165 | F: include/linux/mtd/onenand*.h |
Thomas Gleixner | 431bca7 | 2007-05-02 09:31:35 +0200 | [diff] [blame] | 4166 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4167 | ONSTREAM SCSI TAPE DRIVER |
| 4168 | P: Willem Riede |
| 4169 | M: osst@riede.org |
| 4170 | L: osst-users@lists.sourceforge.net |
| 4171 | L: linux-scsi@vger.kernel.org |
| 4172 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4173 | F: drivers/scsi/osst* |
| 4174 | F: drivers/scsi/st* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4175 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4176 | OPENCORES I2C BUS DRIVER |
| 4177 | P: Peter Korsgaard |
| 4178 | M: jacmet@sunsite.dk |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 4179 | L: linux-i2c@vger.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4180 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4181 | F: Documentation/i2c/busses/i2c-ocores |
| 4182 | F: drivers/i2c/busses/i2c-ocores.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4183 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4184 | OPROFILE |
Robert Richter | d1a5d19 | 2008-07-12 13:47:57 -0700 | [diff] [blame] | 4185 | P: Robert Richter |
| 4186 | M: robert.richter@amd.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4187 | L: oprofile-list@lists.sf.net |
| 4188 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4189 | F: arch/*/oprofile/ |
| 4190 | F: drivers/oprofile/ |
| 4191 | F: include/linux/oprofile.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4192 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4193 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
| 4194 | P: Mark Fasheh |
| 4195 | M: mfasheh@suse.com |
| 4196 | P: Joel Becker |
| 4197 | M: joel.becker@oracle.com |
| 4198 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
| 4199 | W: http://oss.oracle.com/projects/ocfs2/ |
Joel Becker | 2191aeb | 2009-04-17 15:58:50 -0700 | [diff] [blame] | 4200 | 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] | 4201 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4202 | F: Documentation/filesystems/ocfs2.txt |
| 4203 | F: Documentation/filesystems/dlmfs.txt |
| 4204 | F: fs/ocfs2/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4206 | ORINOCO DRIVER |
| 4207 | P: Pavel Roskin |
| 4208 | M: proski@gnu.org |
| 4209 | P: David Gibson |
| 4210 | M: hermes@gibson.dropbear.id.au |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 4211 | L: linux-wireless@vger.kernel.org |
Pavel Roskin | ecffdde | 2005-05-05 16:16:01 -0700 | [diff] [blame] | 4212 | L: orinoco-users@lists.sourceforge.net |
| 4213 | L: orinoco-devel@lists.sourceforge.net |
| 4214 | W: http://www.nongnu.org/orinoco/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4215 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4216 | F: drivers/net/wireless/orinoco/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4217 | |
Boaz Harrosh | 6827479 | 2009-01-25 17:24:14 +0200 | [diff] [blame] | 4218 | OSD LIBRARY |
| 4219 | P: Boaz Harrosh |
| 4220 | M: bharrosh@panasas.com |
| 4221 | P: Benny Halevy |
| 4222 | M: bhalevy@panasas.com |
| 4223 | L: osd-dev@open-osd.org |
| 4224 | W: http://open-osd.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4225 | T: git git://git.open-osd.org/open-osd.git |
Boaz Harrosh | 6827479 | 2009-01-25 17:24:14 +0200 | [diff] [blame] | 4226 | S: Maintained |
| 4227 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4228 | P54 WIRELESS DRIVER |
| 4229 | P: Michael Wu |
| 4230 | M: flamingice@sourmilk.net |
| 4231 | L: linux-wireless@vger.kernel.org |
| 4232 | W: http://prism54.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4233 | 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] | 4234 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4235 | F: drivers/net/wireless/p54/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4236 | |
Olof Johansson | f5cd787 | 2007-01-31 21:43:54 -0600 | [diff] [blame] | 4237 | PA SEMI ETHERNET DRIVER |
| 4238 | P: Olof Johansson |
| 4239 | M: olof@lixom.net |
| 4240 | L: netdev@vger.kernel.org |
| 4241 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4242 | F: drivers/net/pasemi_mac.* |
Olof Johansson | f5cd787 | 2007-01-31 21:43:54 -0600 | [diff] [blame] | 4243 | |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 4244 | PA SEMI SMBUS DRIVER |
| 4245 | P: Olof Johansson |
| 4246 | M: olof@lixom.net |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 4247 | L: linux-i2c@vger.kernel.org |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 4248 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4249 | F: drivers/i2c/busses/i2c-pasemi.c |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 4250 | |
Harald Welte | 709ee53 | 2008-09-23 17:46:57 +0200 | [diff] [blame] | 4251 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
| 4252 | P: Harald Welte |
| 4253 | M: laforge@gnumonks.org |
| 4254 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4255 | F: drivers/platform/x86/panasonic-laptop.c |
Harald Welte | 709ee53 | 2008-09-23 17:46:57 +0200 | [diff] [blame] | 4256 | |
David Howells | 4fa9718 | 2008-10-13 10:42:44 +0100 | [diff] [blame] | 4257 | PANASONIC MN10300/AM33 PORT |
| 4258 | P: David Howells |
| 4259 | M: dhowells@redhat.com |
| 4260 | P: Koichi Yasutake |
| 4261 | M: yasutake.koichi@jp.panasonic.com |
| 4262 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
| 4263 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ |
| 4264 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4265 | F: Documentation/mn10300/ |
| 4266 | F: arch/mn10300/ |
David Howells | 4fa9718 | 2008-10-13 10:42:44 +0100 | [diff] [blame] | 4267 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4268 | PARALLEL PORT SUPPORT |
Randy Dunlap | 3dd1a32 | 2007-05-16 22:11:12 -0700 | [diff] [blame] | 4269 | L: linux-parport@lists.infradead.org (subscribers-only) |
David Brownell | 5fdc2ab | 2007-03-05 00:30:13 -0800 | [diff] [blame] | 4270 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4271 | F: drivers/parport/ |
| 4272 | F: include/linux/parport*.h |
| 4273 | F: drivers/char/ppdev.c |
| 4274 | F: include/linux/ppdev.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4275 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4276 | PARAVIRT_OPS INTERFACE |
| 4277 | P: Jeremy Fitzhardinge |
| 4278 | M: jeremy@xensource.com |
| 4279 | P: Chris Wright |
| 4280 | M: chrisw@sous-sol.org |
Zachary Amsden | 8cbb5bc | 2009-02-20 11:27:46 -0800 | [diff] [blame] | 4281 | P: Alok Kataria |
| 4282 | M: akataria@vmware.com |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4283 | P: Rusty Russell |
| 4284 | M: rusty@rustcorp.com.au |
| 4285 | L: virtualization@lists.osdl.org |
| 4286 | L: linux-kernel@vger.kernel.org |
| 4287 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4288 | F: Documentation/ia64/paravirt_ops.txt |
| 4289 | F: arch/*/kernel/paravirt* |
| 4290 | F: arch/*/include/asm/paravirt.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4291 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4292 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
| 4293 | P: Tim Waugh |
| 4294 | M: tim@cyberelk.net |
Randy Dunlap | 3dd1a32 | 2007-05-16 22:11:12 -0700 | [diff] [blame] | 4295 | L: linux-parport@lists.infradead.org (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4296 | W: http://www.torque.net/linux-pp.html |
| 4297 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4298 | F: Documentation/blockdev/paride.txt |
| 4299 | F: drivers/block/paride/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4300 | |
| 4301 | PARISC ARCHITECTURE |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 4302 | P: Kyle McMartin |
Kyle McMartin | 42a5a8a | 2008-06-06 17:16:17 -0400 | [diff] [blame] | 4303 | M: kyle@mcmartin.ca |
Grant Grundler | 76346119 | 2008-12-01 00:21:35 -0700 | [diff] [blame] | 4304 | P: Helge Deller |
| 4305 | M: deller@gmx.de |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 4306 | L: linux-parisc@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4307 | W: http://www.parisc-linux.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4308 | 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] | 4309 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4310 | F: arch/parisc/ |
| 4311 | F: drivers/parisc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4312 | |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 4313 | PC87360 HARDWARE MONITORING DRIVER |
| 4314 | P: Jim Cromie |
| 4315 | M: jim.cromie@gmail.com |
| 4316 | L: lm-sensors@lm-sensors.org |
| 4317 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4318 | F: Documentation/hwmon/pc87360 |
| 4319 | F: drivers/hwmon/pc87360.c |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 4320 | |
| 4321 | PC8736x GPIO DRIVER |
| 4322 | P: Jim Cromie |
| 4323 | M: jim.cromie@gmail.com |
| 4324 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4325 | F: drivers/char/pc8736x_gpio.c |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 4326 | |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 4327 | PCA9532 LED DRIVER |
| 4328 | P: Riku Voipio |
| 4329 | M: riku.voipio@iki.fi |
| 4330 | S: Maintained |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 4331 | F: drivers/leds/leds-pca9532.c |
| 4332 | F: include/linux/leds-pca9532.h |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 4333 | |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 4334 | PCI ERROR RECOVERY |
| 4335 | P: Linas Vepstas |
| 4336 | M: linas@austin.ibm.com |
| 4337 | L: linux-kernel@vger.kernel.org |
Jesse Barnes | c1f69db | 2008-05-19 15:28:16 -0700 | [diff] [blame] | 4338 | L: linux-pci@vger.kernel.org |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 4339 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4340 | F: Documentation/PCI/pci-error-recovery.txt |
| 4341 | F: Documentation/powerpc/eeh-pci-error-recovery.txt |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 4342 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4343 | PCI SUBSYSTEM |
Greg Kroah-Hartman | af40b48 | 2008-04-17 10:22:27 -0700 | [diff] [blame] | 4344 | P: Jesse Barnes |
| 4345 | M: jbarnes@virtuousgeek.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4346 | L: linux-kernel@vger.kernel.org |
Jesse Barnes | 2905474 | 2008-05-03 08:35:49 -0700 | [diff] [blame] | 4347 | L: linux-pci@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4348 | 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] | 4349 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4350 | F: Documentation/PCI/ |
| 4351 | F: drivers/pci/ |
| 4352 | F: include/linux/pci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4353 | |
Kristen Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 4354 | PCIE HOTPLUG DRIVER |
| 4355 | P: Kristen Carlson Accardi |
| 4356 | M: kristen.c.accardi@intel.com |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 4357 | L: linux-pci@vger.kernel.org |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 4358 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4359 | F: drivers/pci/pcie/ |
Kristen Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 4360 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4361 | PCMCIA SUBSYSTEM |
Dominik Brodowski | 4230dfc | 2005-07-07 17:59:06 -0700 | [diff] [blame] | 4362 | P: Linux PCMCIA Team |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 4363 | L: linux-pcmcia@lists.infradead.org |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 4364 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4365 | 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] | 4366 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4367 | F: Documentation/pcmcia/ |
| 4368 | F: drivers/pcmcia/ |
| 4369 | F: include/pcmcia/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4370 | |
| 4371 | PCNET32 NETWORK DRIVER |
pcnet32@verizon.net | 04ce094 | 2007-02-16 10:07:12 -0600 | [diff] [blame] | 4372 | P: Don Fry |
| 4373 | M: pcnet32@verizon.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 4374 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4375 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4376 | F: drivers/net/pcnet32.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4377 | |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 4378 | PER-TASK DELAY ACCOUNTING |
Balbir Singh | abc5f23 | 2008-07-04 09:59:42 -0700 | [diff] [blame] | 4379 | P: Balbir Singh |
| 4380 | M: balbir@linux.vnet.ibm.com |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 4381 | L: linux-kernel@vger.kernel.org |
| 4382 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4383 | F: include/linux/delayacct.h |
| 4384 | F: kernel/delayacct.c |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 4385 | |
Jim Cromie | dd49d0f | 2006-03-24 18:08:17 +0100 | [diff] [blame] | 4386 | PERSONALITY HANDLING |
| 4387 | P: Christoph Hellwig |
| 4388 | M: hch@infradead.org |
| 4389 | L: linux-abi-devel@lists.sourceforge.net |
| 4390 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4391 | F: include/linux/personality.h |
Jim Cromie | dd49d0f | 2006-03-24 18:08:17 +0100 | [diff] [blame] | 4392 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4393 | PHRAM MTD DRIVER |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 4394 | P: Joern Engel |
| 4395 | M: joern@lazybastard.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4396 | L: linux-mtd@lists.infradead.org |
| 4397 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4398 | F: drivers/mtd/devices/phram.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4399 | |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 4400 | PKTCDVD DRIVER |
| 4401 | P: Peter Osterlund |
| 4402 | M: petero2@telia.com |
| 4403 | L: linux-kernel@vger.kernel.org |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 4404 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4405 | F: drivers/block/pktcdvd.c |
| 4406 | F: include/linux/pktcdvd.h |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 4407 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4408 | POSIX CLOCKS and TIMERS |
Ingo Molnar | aa781ae | 2007-07-19 01:48:32 -0700 | [diff] [blame] | 4409 | P: Thomas Gleixner |
| 4410 | M: tglx@linutronix.de |
Horms | f1c3ddf | 2006-01-15 02:18:28 +0100 | [diff] [blame] | 4411 | L: linux-kernel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4412 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4413 | F: fs/timerfd.c |
| 4414 | F: include/linux/timer* |
| 4415 | F: kernel/*timer* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4416 | |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 4417 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
| 4418 | P: Anton Vorontsov |
| 4419 | M: cbou@mail.ru |
| 4420 | P: David Woodhouse |
| 4421 | M: dwmw2@infradead.org |
| 4422 | L: linux-kernel@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4423 | T: git git://git.infradead.org/battery-2.6.git |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 4424 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4425 | F: include/linux/power_supply.h |
| 4426 | F: drivers/power/power_supply* |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 4427 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4428 | PNP SUPPORT |
| 4429 | P: Adam Belay |
Bjorn Helgaas | 2d59f6a | 2008-08-01 10:01:12 -0600 | [diff] [blame] | 4430 | M: abelay@mit.edu |
| 4431 | P: Bjorn Helgaas |
| 4432 | M: bjorn.helgaas@hp.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4433 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4434 | F: drivers/pnp/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4435 | |
Vitaly Wool | 999445d | 2007-01-04 13:07:03 +0100 | [diff] [blame] | 4436 | PNXxxxx I2C DRIVER |
| 4437 | P: Vitaly Wool |
| 4438 | M: vitalywool@gmail.com |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 4439 | L: linux-i2c@vger.kernel.org |
Vitaly Wool | 999445d | 2007-01-04 13:07:03 +0100 | [diff] [blame] | 4440 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4441 | F: drivers/i2c/busses/i2c-pnx.c |
Vitaly Wool | 999445d | 2007-01-04 13:07:03 +0100 | [diff] [blame] | 4442 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4443 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
| 4444 | P: Paul Mackerras |
| 4445 | M: paulus@samba.org |
| 4446 | L: linux-ppp@vger.kernel.org |
| 4447 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4448 | F: drivers/net/ppp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4449 | |
| 4450 | PPP OVER ATM (RFC 2364) |
| 4451 | P: Mitchell Blank Jr |
| 4452 | M: mitch@sfgoth.com |
| 4453 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4454 | F: net/atm/pppoatm.c |
| 4455 | F: include/linux/atmppp.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4456 | |
| 4457 | PPP OVER ETHERNET |
| 4458 | P: Michal Ostrowski |
Chris Wright | 5e70b7f3 | 2008-06-09 16:07:28 -0700 | [diff] [blame] | 4459 | M: mostrows@earthlink.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4460 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4461 | F: drivers/net/pppoe.c |
| 4462 | F: drivers/net/pppox.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4463 | |
James Chapman | a6d2370 | 2007-06-27 15:53:17 -0700 | [diff] [blame] | 4464 | PPP OVER L2TP |
| 4465 | P: James Chapman |
| 4466 | M: jchapman@katalix.com |
| 4467 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4468 | F: drivers/net/pppol2tp.c |
| 4469 | F: include/linux/if_pppol2tp.h |
James Chapman | a6d2370 | 2007-06-27 15:53:17 -0700 | [diff] [blame] | 4470 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4471 | PREEMPTIBLE KERNEL |
| 4472 | P: Robert Love |
| 4473 | M: rml@tech9.net |
| 4474 | L: linux-kernel@vger.kernel.org |
| 4475 | L: kpreempt-tech@lists.sourceforge.net |
| 4476 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel |
| 4477 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4478 | F: Documentation/preempt-locking.txt |
| 4479 | F: include/linux/preempt.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4480 | |
| 4481 | PRISM54 WIRELESS DRIVER |
Luis R. Rodriguez | e88b34b | 2007-06-01 00:46:57 -0700 | [diff] [blame] | 4482 | P: Luis R. Rodriguez |
| 4483 | M: mcgrof@gmail.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 4484 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4485 | W: http://prism54.org |
| 4486 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4487 | F: drivers/net/wireless/prism54/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4488 | |
| 4489 | PROMISE DC4030 CACHING DISK CONTROLLER DRIVER |
| 4490 | P: Peter Denison |
| 4491 | M: promise@pnd-pc.demon.co.uk |
| 4492 | W: http://www.pnd-pc.demon.co.uk/promise/ |
| 4493 | S: Maintained |
| 4494 | |
Mikael Pettersson | b3277df | 2007-01-10 09:33:53 +0100 | [diff] [blame] | 4495 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
| 4496 | P: Mikael Pettersson |
| 4497 | M: mikpe@it.uu.se |
| 4498 | L: linux-ide@vger.kernel.org |
| 4499 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4500 | F: drivers/ata/sata_promise.* |
Mikael Pettersson | b3277df | 2007-01-10 09:33:53 +0100 | [diff] [blame] | 4501 | |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 4502 | PS3 NETWORK SUPPORT |
| 4503 | P: Masakazu Mokuno |
| 4504 | M: mokuno@sm.sony.co.jp |
| 4505 | L: netdev@vger.kernel.org |
| 4506 | L: cbe-oss-dev@ozlabs.org |
| 4507 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4508 | F: drivers/net/ps3_gelic_net.* |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 4509 | |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 4510 | PS3 PLATFORM SUPPORT |
| 4511 | P: Geoff Levand |
| 4512 | M: geoffrey.levand@am.sony.com |
| 4513 | L: linuxppc-dev@ozlabs.org |
| 4514 | L: cbe-oss-dev@ozlabs.org |
| 4515 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4516 | F: arch/powerpc/boot/ps3* |
| 4517 | F: arch/powerpc/include/asm/lv1call.h |
| 4518 | F: arch/powerpc/include/asm/ps3*.h |
| 4519 | F: arch/powerpc/platforms/ps3/ |
| 4520 | F: drivers/*/ps3* |
| 4521 | F: drivers/ps3/ |
Geoff Levand | fec629b | 2009-04-16 09:05:40 +0000 | [diff] [blame] | 4522 | F: drivers/rtc/rtc-ps3.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4523 | F: drivers/usb/host/*ps3.c |
Geoff Levand | fec629b | 2009-04-16 09:05:40 +0000 | [diff] [blame] | 4524 | F: sound/ppc/snd_ps3* |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 4525 | |
Jim Paris | cffb4add | 2009-01-06 11:32:10 +0000 | [diff] [blame] | 4526 | PS3VRAM DRIVER |
| 4527 | P: Jim Paris |
| 4528 | M: jim@jtan.com |
| 4529 | L: cbe-oss-dev@ozlabs.org |
| 4530 | S: Maintained |
| 4531 | |
Christoph Hellwig | cf94a4d | 2009-04-30 15:08:12 -0700 | [diff] [blame] | 4532 | PTRACE SUPPORT |
| 4533 | P: Roland McGrath |
| 4534 | M: roland@redhat.com |
| 4535 | P: Oleg Nesterov |
| 4536 | M: oleg@redhat.com |
| 4537 | L: linux-kernel@vger.kernel.org |
| 4538 | S: Maintained |
| 4539 | F: include/asm-generic/syscall.h |
| 4540 | F: include/linux/ptrace.h |
| 4541 | F: include/linux/regset.h |
| 4542 | F: include/linux/tracehook.h |
| 4543 | F: kernel/ptrace.c |
| 4544 | |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 4545 | PVRUSB2 VIDEO4LINUX DRIVER |
| 4546 | P: Mike Isely |
| 4547 | M: isely@pobox.com |
Mike Isely | 16e9495 | 2007-01-03 18:08:06 -0300 | [diff] [blame] | 4548 | L: pvrusb2@isely.net (subscribers-only) |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 4549 | L: linux-media@vger.kernel.org |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 4550 | W: http://www.isely.net/pvrusb2/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4551 | 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] | 4552 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4553 | F: Documentation/video4linux/README.pvrusb2 |
| 4554 | F: drivers/media/video/pvrusb2/ |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 4555 | |
Eric Miao | 30ec261 | 2008-06-12 15:21:41 -0700 | [diff] [blame] | 4556 | PXA2xx/PXA3xx SUPPORT |
| 4557 | P: Eric Miao |
| 4558 | M: eric.miao@marvell.com |
| 4559 | P: Russell King |
| 4560 | M: linux@arm.linux.org.uk |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 4561 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4562 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4563 | F: arch/arm/mach-pxa/ |
| 4564 | F: drivers/pcmcia/pxa2xx* |
| 4565 | F: drivers/spi/pxa2xx* |
| 4566 | F: drivers/usb/gadget/pxa2* |
| 4567 | F: include/sound/pxa2xx-lib.h |
| 4568 | F: sound/soc/pxa/pxa2xx* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4569 | |
Eric Miao | a6bb4ba | 2009-02-19 21:13:21 +0800 | [diff] [blame] | 4570 | PXA168 SUPPORT |
| 4571 | P: Eric Miao |
| 4572 | M: eric.miao@marvell.com |
| 4573 | P: Jason Chagas |
| 4574 | M: jason.chagas@marvell.com |
| 4575 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4576 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git |
Eric Miao | a6bb4ba | 2009-02-19 21:13:21 +0800 | [diff] [blame] | 4577 | S: Supported |
| 4578 | |
Eric Miao | 5fa82eb | 2009-03-20 12:52:24 +0800 | [diff] [blame] | 4579 | PXA910 SUPPORT |
| 4580 | P: Eric Miao |
| 4581 | M: eric.miao@marvell.com |
| 4582 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4583 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git |
Eric Miao | 5fa82eb | 2009-03-20 12:52:24 +0800 | [diff] [blame] | 4584 | S: Supported |
| 4585 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 4586 | PXA MMCI DRIVER |
| 4587 | S: Orphan |
| 4588 | |
Robert Jarzmik | 57f63bc | 2009-02-11 13:04:19 -0800 | [diff] [blame] | 4589 | PXA RTC DRIVER |
| 4590 | P: Robert Jarzmik |
| 4591 | M: robert.jarzmik@free.fr |
| 4592 | L: rtc-linux@googlegroups.com |
| 4593 | S: Maintained |
| 4594 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4595 | QLOGIC QLA2XXX FC-SCSI DRIVER |
| 4596 | P: Andrew Vasquez |
Andrew Vasquez | 95e6a85 | 2006-03-14 14:41:04 -0800 | [diff] [blame] | 4597 | M: linux-driver@qlogic.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4598 | L: linux-scsi@vger.kernel.org |
| 4599 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4600 | F: Documentation/scsi/LICENSE.qla2xxx |
| 4601 | F: drivers/scsi/qla2xxx/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4602 | |
Ron Mercer | 5a4faa87 | 2006-07-25 00:40:21 -0700 | [diff] [blame] | 4603 | QLOGIC QLA3XXX NETWORK DRIVER |
| 4604 | P: Ron Mercer |
| 4605 | M: linux-driver@qlogic.com |
| 4606 | L: netdev@vger.kernel.org |
| 4607 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4608 | F: Documentation/networking/LICENSE.qla3xxx |
| 4609 | F: drivers/net/qla3xxx.* |
Ron Mercer | 5a4faa87 | 2006-07-25 00:40:21 -0700 | [diff] [blame] | 4610 | |
Ron Mercer | c4e84bd | 2008-09-18 11:56:28 -0400 | [diff] [blame] | 4611 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
| 4612 | P: Ron Mercer |
| 4613 | M: linux-driver@qlogic.com |
| 4614 | M: ron.mercer@qlogic.com |
| 4615 | L: netdev@vger.kernel.org |
| 4616 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4617 | F: drivers/net/qlge/ |
Ron Mercer | c4e84bd | 2008-09-18 11:56:28 -0400 | [diff] [blame] | 4618 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4619 | QNX4 FILESYSTEM |
| 4620 | P: Anders Larsen |
| 4621 | M: al@alarsen.net |
| 4622 | L: linux-kernel@vger.kernel.org |
| 4623 | W: http://www.alarsen.net/linux/qnx4fs/ |
| 4624 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 4625 | F: fs/qnx4/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4626 | F: include/linux/qnx4_fs.h |
| 4627 | F: include/linux/qnxtypes.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4628 | |
| 4629 | RADEON FRAMEBUFFER DISPLAY DRIVER |
Benjamin Herrenschmidt | 187a278 | 2005-04-16 15:26:40 -0700 | [diff] [blame] | 4630 | P: Benjamin Herrenschmidt |
| 4631 | M: benh@kernel.crashing.org |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 4632 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4633 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4634 | F: drivers/video/aty/radeon* |
| 4635 | F: include/linux/radeonfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4636 | |
| 4637 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
Benjamin Herrenschmidt | 187a278 | 2005-04-16 15:26:40 -0700 | [diff] [blame] | 4638 | P: Paul Mackerras |
| 4639 | M: paulus@samba.org |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 4640 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4641 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4642 | F: drivers/video/aty/aty128fb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4643 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 4644 | RALINK RT2X00 WIRELESS LAN DRIVER |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 4645 | P: rt2x00 project |
| 4646 | L: linux-wireless@vger.kernel.org |
Ivo van Doorn | 6d5eaaf | 2009-03-17 11:29:19 +0100 | [diff] [blame] | 4647 | L: users@rt2x00.serialmonkey.com |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 4648 | W: http://rt2x00.serialmonkey.com/ |
| 4649 | S: Maintained |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4650 | 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] | 4651 | F: drivers/net/wireless/rt2x00/ |
| 4652 | |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 4653 | RAMDISK RAM BLOCK DEVICE DRIVER |
| 4654 | P: Nick Piggin |
| 4655 | M: npiggin@suse.de |
| 4656 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4657 | F: Documentation/blockdev/ramdisk.txt |
| 4658 | F: drivers/block/brd.c |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 4659 | |
Matt Mackall | 9e95ce2 | 2005-04-16 15:25:56 -0700 | [diff] [blame] | 4660 | RANDOM NUMBER DRIVER |
| 4661 | P: Matt Mackall |
| 4662 | M: mpm@selenic.com |
| 4663 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4664 | F: drivers/char/random.c |
Matt Mackall | 9e95ce2 | 2005-04-16 15:25:56 -0700 | [diff] [blame] | 4665 | |
Matt Porter | 394b701 | 2005-11-07 01:00:15 -0800 | [diff] [blame] | 4666 | RAPIDIO SUBSYSTEM |
| 4667 | P: Matt Porter |
| 4668 | M: mporter@kernel.crashing.org |
| 4669 | L: linux-kernel@vger.kernel.org |
| 4670 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4671 | F: drivers/rapidio/ |
Matt Porter | 394b701 | 2005-11-07 01:00:15 -0800 | [diff] [blame] | 4672 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4673 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
| 4674 | P: Corey Thomas |
| 4675 | M: coreythomas@charter.net |
| 4676 | L: linux-wireless@vger.kernel.org |
| 4677 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4678 | F: drivers/net/wireless/ray* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4679 | |
| 4680 | RCUTORTURE MODULE |
| 4681 | P: Josh Triplett |
| 4682 | M: josh@freedesktop.org |
| 4683 | L: linux-kernel@vger.kernel.org |
| 4684 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4685 | F: Documentation/RCU/torture.txt |
| 4686 | F: kernel/rcutorture.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4687 | |
Florian Fainelli | c1f766b | 2008-02-06 22:39:44 +0100 | [diff] [blame] | 4688 | RDC R-321X SoC |
| 4689 | P: Florian Fainelli |
Florian Fainelli | 1e50cc9 | 2009-04-30 15:08:10 -0700 | [diff] [blame] | 4690 | M: florian@openwrt.org |
Florian Fainelli | c1f766b | 2008-02-06 22:39:44 +0100 | [diff] [blame] | 4691 | L: linux-kernel@vger.kernel.org |
| 4692 | S: Maintained |
| 4693 | |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 4694 | RDC R6040 FAST ETHERNET DRIVER |
| 4695 | P: Florian Fainelli |
Florian Fainelli | 1e50cc9 | 2009-04-30 15:08:10 -0700 | [diff] [blame] | 4696 | M: florian@openwrt.org |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 4697 | L: netdev@vger.kernel.org |
| 4698 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4699 | F: drivers/net/r6040.c |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 4700 | |
Andy Grover | a09ed66 | 2009-02-24 15:30:41 +0000 | [diff] [blame] | 4701 | RDS - RELIABLE DATAGRAM SOCKETS |
| 4702 | P: Andy Grover |
| 4703 | M: andy.grover@oracle.com |
| 4704 | L: rds-devel@oss.oracle.com |
| 4705 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4706 | F: net/rds/ |
Andy Grover | a09ed66 | 2009-02-24 15:30:41 +0000 | [diff] [blame] | 4707 | |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 4708 | READ-COPY UPDATE (RCU) |
| 4709 | P: Dipankar Sarma |
| 4710 | M: dipankar@in.ibm.com |
| 4711 | W: http://www.rdrop.com/users/paulmck/rclock/ |
| 4712 | L: linux-kernel@vger.kernel.org |
| 4713 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4714 | F: Documentation/RCU/rcu.txt |
| 4715 | F: Documentation/RCU/rcuref.txt |
| 4716 | F: include/linux/rcupdate.h |
| 4717 | F: include/linux/srcu.h |
| 4718 | F: kernel/rcupdate.c |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 4719 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4720 | REAL TIME CLOCK DRIVER |
| 4721 | P: Paul Gortmaker |
| 4722 | M: p_gortmaker@yahoo.com |
| 4723 | L: linux-kernel@vger.kernel.org |
| 4724 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4725 | F: Documentation/rtc.txt |
| 4726 | F: drivers/rtc/ |
| 4727 | F: include/linux/rtc.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4728 | |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 4729 | REAL TIME CLOCK (RTC) SUBSYSTEM |
| 4730 | P: Alessandro Zummo |
| 4731 | M: a.zummo@towertech.it |
Alessandro Zummo | 7646549 | 2006-12-10 02:19:06 -0800 | [diff] [blame] | 4732 | L: rtc-linux@googlegroups.com |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 4733 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4734 | F: Documentation/rtc.txt |
| 4735 | F: drivers/rtc/ |
| 4736 | F: include/linux/rtc.h |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 4737 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4738 | REISERFS FILE SYSTEM |
Jeff Mahoney | 76c4e5e | 2007-06-08 13:47:02 -0700 | [diff] [blame] | 4739 | L: reiserfs-devel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4740 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4741 | F: fs/reiserfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4742 | |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 4743 | RFKILL |
| 4744 | P: Ivo van Doorn |
| 4745 | M: IvDoorn@gmail.com |
| 4746 | L: netdev@vger.kernel.org |
| 4747 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 4748 | F Documentation/rfkill.txt |
| 4749 | F: net/rfkill/ |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 4750 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4751 | RISCOM8 DRIVER |
| 4752 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4753 | F: Documentation/serial/riscom8.txt |
| 4754 | F: drivers/char/riscom8* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4755 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4756 | ROCKETPORT DRIVER |
| 4757 | P: Comtrol Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4758 | W: http://www.comtrol.com |
| 4759 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4760 | F: Documentation/serial/rocket.txt |
| 4761 | F: drivers/char/rocket* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4762 | |
| 4763 | ROSE NETWORK LAYER |
| 4764 | P: Ralf Baechle |
| 4765 | M: ralf@linux-mips.org |
| 4766 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 4767 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4768 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4769 | F: include/linux/rose.h |
| 4770 | F: include/net/rose.h |
| 4771 | F: net/rose/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4772 | |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 4773 | RTL8180 WIRELESS DRIVER |
John W. Linville | 96dd603 | 2008-11-12 14:51:56 -0500 | [diff] [blame] | 4774 | P: John W. Linville |
| 4775 | M: linville@tuxdriver.com |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 4776 | L: linux-wireless@vger.kernel.org |
| 4777 | W: http://linuxwireless.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4778 | 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] | 4779 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4780 | F: drivers/net/wireless/rtl818* |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 4781 | |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 4782 | RTL8187 WIRELESS DRIVER |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 4783 | P: Herton Ronaldo Krzesinski |
| 4784 | M: herton@mandriva.com.br |
| 4785 | P: Hin-Tak Leung |
| 4786 | M: htl10@users.sourceforge.net |
| 4787 | P: Larry Finger |
| 4788 | M: Larry.Finger@lwfinger.net |
| 4789 | L: linux-wireless@vger.kernel.org |
| 4790 | W: http://linuxwireless.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4791 | 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] | 4792 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4793 | F: drivers/net/wireless/rtl818x/rtl8187* |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 4794 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 4795 | S3 SAVAGE FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4796 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 4797 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 4798 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4799 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4800 | F: drivers/video/savage/ |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 4801 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4802 | S390 |
| 4803 | P: Martin Schwidefsky |
| 4804 | M: schwidefsky@de.ibm.com |
Martin Schwidefsky | 8301425 | 2006-09-20 15:58:58 +0200 | [diff] [blame] | 4805 | P: Heiko Carstens |
| 4806 | M: heiko.carstens@de.ibm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4807 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 4808 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4809 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 4810 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4811 | F: arch/s390/ |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4812 | |
| 4813 | S390 NETWORK DRIVERS |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 4814 | P: Ursula Braun |
Ursula Braun | 23fcc8d | 2008-07-18 15:24:58 +0200 | [diff] [blame] | 4815 | M: ursula.braun@de.ibm.com |
Ursula Braun | b9192ad | 2007-10-22 16:16:15 +0200 | [diff] [blame] | 4816 | P: Frank Blaschka |
| 4817 | M: blaschka@linux.vnet.ibm.com |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4818 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 4819 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4820 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 4821 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4822 | F: drivers/s390/net/ |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4823 | |
Felix Beck | feed9b6 | 2009-03-26 15:24:23 +0100 | [diff] [blame] | 4824 | S390 ZCRYPT DRIVER |
| 4825 | P: Felix Beck |
| 4826 | M: felix.beck@de.ibm.com |
| 4827 | P: Ralph Wuerthner |
| 4828 | M: ralph.wuerthner@de.ibm.com |
| 4829 | M: linux390@de.ibm.com |
| 4830 | L: linux-s390@vger.kernel.org |
| 4831 | S: Supported |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 4832 | F: drivers/s390/crypto/ |
Felix Beck | feed9b6 | 2009-03-26 15:24:23 +0100 | [diff] [blame] | 4833 | |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4834 | S390 ZFCP DRIVER |
Swen Schillig | 0033bb4 | 2007-12-18 11:16:14 +0100 | [diff] [blame] | 4835 | P: Christof Schmitt |
| 4836 | M: christof.schmitt@de.ibm.com |
| 4837 | P: Martin Peschke |
| 4838 | M: mp3@de.ibm.com |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4839 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 4840 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 4841 | W: http://www.ibm.com/developerworks/linux/linux390/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4842 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4843 | F: Documentation/s390/zfcpdump.txt |
| 4844 | F: drivers/s390/scsi/zfcp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4845 | |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 4846 | S390 IUCV NETWORK LAYER |
| 4847 | P: Ursula Braun |
Ursula Braun | 23fcc8d | 2008-07-18 15:24:58 +0200 | [diff] [blame] | 4848 | M: ursula.braun@de.ibm.com |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 4849 | M: linux390@de.ibm.com |
| 4850 | L: linux-s390@vger.kernel.org |
| 4851 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 4852 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4853 | F: drivers/s390/net/*iucv* |
| 4854 | F: include/net/iucv/ |
| 4855 | F: net/iucv/ |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 4856 | |
Ben Dooks | 4dde7f7 | 2008-06-30 22:40:38 +0100 | [diff] [blame] | 4857 | S3C24XX SD/MMC Driver |
| 4858 | P: Ben Dooks |
| 4859 | M: ben-linux@fluff.org |
| 4860 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 4861 | L: linux-kernel@vger.kernel.org |
| 4862 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4863 | F: drivers/mmc/host/s3cmci.* |
Ben Dooks | 4dde7f7 | 2008-06-30 22:40:38 +0100 | [diff] [blame] | 4864 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4865 | SAA7146 VIDEO4LINUX-2 DRIVER |
| 4866 | P: Michael Hunold |
| 4867 | M: michael@mihu.de |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 4868 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4869 | 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] | 4870 | W: http://www.mihu.de/linux/saa7146 |
| 4871 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4872 | F: drivers/media/common/saa7146* |
| 4873 | F: drivers/media/video/*7146* |
| 4874 | F: include/media/*7146* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4875 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4876 | SC1200 WDT DRIVER |
| 4877 | P: Zwane Mwaikambo |
Zwane Mwaikambo | 3c7bf1e | 2005-08-18 11:24:07 -0700 | [diff] [blame] | 4878 | M: zwane@arm.linux.org.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4879 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4880 | F: drivers/watchdog/sc1200wdt.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4881 | |
| 4882 | SCHEDULER |
| 4883 | P: Ingo Molnar |
| 4884 | M: mingo@elte.hu |
Ingo Molnar | 01fad98 | 2009-04-08 17:27:59 +0200 | [diff] [blame] | 4885 | P: Peter Zijlstra |
| 4886 | M: peterz@infradead.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4887 | L: linux-kernel@vger.kernel.org |
| 4888 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4889 | F: kernel/sched* |
| 4890 | F: include/linux/sched.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4891 | |
| 4892 | SCSI CDROM DRIVER |
| 4893 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 4894 | M: axboe@kernel.dk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4895 | L: linux-scsi@vger.kernel.org |
| 4896 | W: http://www.kernel.dk |
| 4897 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4898 | F: drivers/scsi/sr* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4899 | |
| 4900 | SCSI SG DRIVER |
| 4901 | P: Doug Gilbert |
| 4902 | M: dgilbert@interlog.com |
| 4903 | L: linux-scsi@vger.kernel.org |
| 4904 | W: http://www.torque.net/sg |
| 4905 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4906 | F: drivers/scsi/sg.c |
| 4907 | F: include/scsi/sg.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4908 | |
| 4909 | SCSI SUBSYSTEM |
| 4910 | P: James E.J. Bottomley |
James Bottomley | c4e1608 | 2007-11-03 08:40:30 -0500 | [diff] [blame] | 4911 | M: James.Bottomley@HansenPartnership.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4912 | L: linux-scsi@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4913 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
| 4914 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git |
| 4915 | 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] | 4916 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4917 | F: drivers/scsi/ |
| 4918 | F: include/scsi/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4919 | |
| 4920 | SCSI TAPE DRIVER |
John Anthony Kazos Jr | dd4ef01 | 2007-05-09 08:06:37 +0200 | [diff] [blame] | 4921 | P: Kai Mäkisara |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4922 | M: Kai.Makisara@kolumbus.fi |
| 4923 | L: linux-scsi@vger.kernel.org |
| 4924 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4925 | F: Documentation/scsi/st.txt |
| 4926 | F: drivers/scsi/st* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4927 | |
| 4928 | SCTP PROTOCOL |
Sridhar Samudrala | 5f85813 | 2007-03-23 11:39:51 -0700 | [diff] [blame] | 4929 | P: Vlad Yasevich |
| 4930 | M: vladislav.yasevich@hp.com |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4931 | P: Sridhar Samudrala |
| 4932 | M: sri@us.ibm.com |
Vlad Yasevich | 1a41879 | 2008-04-12 18:55:42 -0700 | [diff] [blame] | 4933 | L: linux-sctp@vger.kernel.org |
Sridhar Samudrala | 5f85813 | 2007-03-23 11:39:51 -0700 | [diff] [blame] | 4934 | W: http://lksctp.sourceforge.net |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4935 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4936 | F: Documentation/networking/sctp.txt |
| 4937 | F: include/linux/sctp.h |
| 4938 | F: include/net/sctp/ |
| 4939 | F: net/sctp/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4940 | |
| 4941 | SCx200 CPU SUPPORT |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 4942 | P: Jim Cromie |
| 4943 | M: jim.cromie@gmail.com |
| 4944 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4945 | F: Documentation/i2c/busses/scx200_acb |
| 4946 | F: arch/x86/kernel/scx200_32.c |
| 4947 | F: drivers/watchdog/scx200_wdt.c |
| 4948 | F: drivers/i2c/busses/scx200* |
| 4949 | F: drivers/mtd/maps/scx200_docflash.c |
| 4950 | F: include/linux/scx200.h |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 4951 | |
| 4952 | SCx200 GPIO DRIVER |
| 4953 | P: Jim Cromie |
| 4954 | M: jim.cromie@gmail.com |
| 4955 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4956 | F: drivers/char/scx200_gpio.c |
| 4957 | F: include/linux/scx200_gpio.h |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 4958 | |
| 4959 | SCx200 HRT CLOCKSOURCE DRIVER |
| 4960 | P: Jim Cromie |
| 4961 | M: jim.cromie@gmail.com |
| 4962 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4963 | F: drivers/clocksource/scx200_hrt.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4964 | |
Sascha Sommer | 6a36913 | 2008-07-15 14:21:29 +0200 | [diff] [blame] | 4965 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
| 4966 | P: Sascha Sommer |
| 4967 | M: saschasommer@freenet.de |
| 4968 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
| 4969 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4970 | F: drivers/mmc/host/sdricoh_cs.c |
Sascha Sommer | 6a36913 | 2008-07-15 14:21:29 +0200 | [diff] [blame] | 4971 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 4972 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4973 | P: Pierre Ossman |
Pierre Ossman | 32710e8 | 2009-04-08 20:14:54 +0200 | [diff] [blame] | 4974 | M: pierre@ossman.eu |
Pierre Ossman | b8e2006 | 2009-03-14 21:17:32 +0100 | [diff] [blame] | 4975 | L: sdhci-devel@lists.ossman.eu |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4976 | S: Maintained |
| 4977 | |
Anton Vorontsov | 3085e9c | 2009-03-17 00:14:05 +0300 | [diff] [blame] | 4978 | SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) |
| 4979 | P: Anton Vorontsov |
| 4980 | M: avorontsov@ru.mvista.com |
| 4981 | L: linuxppc-dev@ozlabs.org |
| 4982 | L: sdhci-devel@lists.ossman.eu |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4983 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4984 | F: drivers/mmc/host/sdhci.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4985 | |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 4986 | SECURITY SUBSYSTEM |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 4987 | P: James Morris |
| 4988 | M: jmorris@namei.org |
| 4989 | L: linux-kernel@vger.kernel.org |
| 4990 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4991 | 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] | 4992 | W: http://security.wiki.kernel.org/ |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 4993 | S: Supported |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 4994 | F: security/ |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 4995 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4996 | SECURITY CONTACT |
| 4997 | P: Security Officers |
| 4998 | M: security@kernel.org |
| 4999 | S: Supported |
| 5000 | |
| 5001 | SELINUX SECURITY MODULE |
| 5002 | P: Stephen Smalley |
| 5003 | M: sds@tycho.nsa.gov |
| 5004 | P: James Morris |
| 5005 | M: jmorris@namei.org |
Stephen Smalley | 588a315 | 2007-02-23 09:20:09 -0500 | [diff] [blame] | 5006 | P: Eric Paris |
| 5007 | M: eparis@parisplace.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5008 | L: linux-kernel@vger.kernel.org (kernel issues) |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 5009 | L: selinux@tycho.nsa.gov (subscribers-only, general discussion) |
Stephen Smalley | f058925 | 2008-09-11 09:20:26 -0400 | [diff] [blame] | 5010 | W: http://selinuxproject.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5011 | 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] | 5012 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5013 | F: include/linux/selinux* |
| 5014 | F: security/selinux/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5015 | |
Jiri Slaby | cef2cf0 | 2007-05-08 00:31:45 -0700 | [diff] [blame] | 5016 | SENSABLE PHANTOM |
| 5017 | P: Jiri Slaby |
| 5018 | M: jirislaby@gmail.com |
| 5019 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5020 | F: drivers/misc/phantom.c |
| 5021 | F: include/linux/phantom.h |
Jiri Slaby | cef2cf0 | 2007-05-08 00:31:45 -0700 | [diff] [blame] | 5022 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 5023 | SERIAL ATA (SATA) SUBSYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5024 | P: Jeff Garzik |
| 5025 | M: jgarzik@pobox.com |
| 5026 | L: linux-ide@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5027 | 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] | 5028 | S: Supported |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 5029 | F: drivers/ata/ |
| 5030 | F: include/linux/ata.h |
| 5031 | F: include/linux/libata.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5032 | |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 5033 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
| 5034 | P: Sathya Perla |
| 5035 | M: sathyap@serverengines.com |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 5036 | P: Subbu Seetharaman |
| 5037 | M: subbus@serverengines.com |
| 5038 | L: netdev@vger.kernel.org |
| 5039 | W: http://www.serverengines.com |
| 5040 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5041 | F: drivers/net/benet/ |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 5042 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 5043 | SFC NETWORK DRIVER |
| 5044 | P: Steve Hodgson |
| 5045 | P: Ben Hutchings |
| 5046 | P: Robert Stonehouse |
| 5047 | M: linux-net-drivers@solarflare.com |
| 5048 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5049 | F: drivers/net/sfc/ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 5050 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5051 | SGI GRU DRIVER |
| 5052 | P: Jack Steiner |
| 5053 | M: steiner@sgi.com |
| 5054 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5055 | F: drivers/misc/sgi-gru/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5056 | |
| 5057 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER |
| 5058 | P: Pat Gefre |
| 5059 | M: pfg@sgi.com |
| 5060 | L: linux-ia64@vger.kernel.org |
| 5061 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5062 | F: Documentation/ia64/serial.txt |
| 5063 | F: drivers/serial/ioc?_serial.c |
| 5064 | F: include/linux/ioc?.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5065 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5066 | SGI VISUAL WORKSTATION 320 AND 540 |
| 5067 | P: Andrey Panin |
| 5068 | M: pazke@donpac.ru |
| 5069 | L: linux-visws-devel@lists.sf.net |
| 5070 | W: http://linux-visws.sf.net |
| 5071 | S: Maintained for 2.6. |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5072 | F: Documentation/sgi-visws.txt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5073 | |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 5074 | SGI XP/XPC/XPNET DRIVER |
Robin Holt | a06bba4 | 2009-04-13 14:40:17 -0700 | [diff] [blame] | 5075 | P: Robin Holt |
| 5076 | M: holt@sgi.com |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 5077 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5078 | F: drivers/misc/sgi-xp/ |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 5079 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5080 | SHARP LH SUPPORT (LH7952X & LH7A40X) |
| 5081 | P: Marc Singer |
| 5082 | M: elf@buici.com |
| 5083 | W: http://projects.buici.com/arm |
| 5084 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 5085 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5086 | F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen |
| 5087 | F: arch/arm/mach-lh7a40x/ |
| 5088 | F: drivers/serial/serial_lh7a40x.c |
| 5089 | F: drivers/usb/gadget/lh7a40* |
| 5090 | F: drivers/usb/host/ohci-lh7a40* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5091 | |
| 5092 | SHPC HOTPLUG DRIVER |
| 5093 | P: Kristen Carlson Accardi |
| 5094 | M: kristen.c.accardi@intel.com |
| 5095 | L: linux-pci@vger.kernel.org |
| 5096 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5097 | F: drivers/pci/hotplug/shpchp* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5098 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5099 | SIMTEC EB110ATX (Chalice CATS) |
| 5100 | P: Ben Dooks |
| 5101 | P: Vincent Sanders |
| 5102 | M: support@simtec.co.uk |
| 5103 | W: http://www.simtec.co.uk/products/EB110ATX/ |
| 5104 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5105 | F: arch/arm/mach-ebsa110/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5106 | |
| 5107 | SIMTEC EB2410ITX (BAST) |
| 5108 | P: Ben Dooks |
| 5109 | P: Vincent Sanders |
| 5110 | M: support@simtec.co.uk |
| 5111 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
| 5112 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5113 | F: arch/arm/mach-s3c2410/ |
| 5114 | F: drivers/*/*s3c2410* |
| 5115 | F: drivers/*/*/*s3c2410* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5116 | |
Francois Romieu | 92aab3c | 2005-07-30 13:11:18 +0200 | [diff] [blame] | 5117 | SIS 190 ETHERNET DRIVER |
| 5118 | P: Francois Romieu |
| 5119 | M: romieu@fr.zoreil.com |
| 5120 | L: netdev@vger.kernel.org |
| 5121 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5122 | F: drivers/net/sis190.c |
Francois Romieu | 92aab3c | 2005-07-30 13:11:18 +0200 | [diff] [blame] | 5123 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5124 | SIS 900/7016 FAST ETHERNET DRIVER |
| 5125 | P: Daniele Venzano |
| 5126 | M: venza@brownhat.org |
| 5127 | W: http://www.brownhat.org/sis900.html |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 5128 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5129 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5130 | F: drivers/net/sis900.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5131 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5132 | SIS 96X I2C/SMBUS DRIVER |
| 5133 | P: Mark M. Hoffman |
| 5134 | M: mhoffman@lightlink.com |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 5135 | L: linux-i2c@vger.kernel.org |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5136 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5137 | F: Documentation/i2c/busses/i2c-sis96x |
| 5138 | F: drivers/i2c/busses/i2c-sis96x.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5139 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5140 | SIS FRAMEBUFFER DRIVER |
| 5141 | P: Thomas Winischhofer |
| 5142 | M: thomas@winischhofer.net |
| 5143 | W: http://www.winischhofer.net/linuxsisvga.shtml |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 5144 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5145 | F: Documentation/fb/sisfb.txt |
| 5146 | F: drivers/video/sis/ |
| 5147 | F: include/video/sisfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5148 | |
| 5149 | SIS USB2VGA DRIVER |
| 5150 | P: Thomas Winischhofer |
| 5151 | M: thomas@winischhofer.net |
| 5152 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
| 5153 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5154 | F: drivers/usb/misc/sisusbvga/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5155 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5156 | SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS |
| 5157 | P: Stephen Hemminger |
| 5158 | M: shemminger@linux-foundation.org |
| 5159 | L: netdev@vger.kernel.org |
| 5160 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5161 | F: drivers/net/skge.* |
| 5162 | F: drivers/net/sky2.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5163 | |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 5164 | SLAB ALLOCATOR |
| 5165 | P: Christoph Lameter |
Christoph Lameter | cde5353 | 2008-07-04 09:59:22 -0700 | [diff] [blame] | 5166 | M: cl@linux-foundation.org |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 5167 | P: Pekka Enberg |
| 5168 | M: penberg@cs.helsinki.fi |
Pekka Enberg | c76d118 | 2008-02-11 23:52:47 +0200 | [diff] [blame] | 5169 | P: Matt Mackall |
| 5170 | M: mpm@selenic.com |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 5171 | L: linux-mm@kvack.org |
| 5172 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5173 | F: include/linux/sl?b*.h |
| 5174 | F: mm/sl?b.c |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 5175 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5176 | SMC91x ETHERNET DRIVER |
| 5177 | P: Nicolas Pitre |
| 5178 | M: nico@cam.org |
| 5179 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5180 | F: drivers/net/smc91x.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5181 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5182 | SMSC47B397 HARDWARE MONITOR DRIVER |
| 5183 | P: Mark M. Hoffman |
| 5184 | M: mhoffman@lightlink.com |
| 5185 | L: lm-sensors@lm-sensors.org |
| 5186 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5187 | F: Documentation/hwmon/smsc47b397 |
| 5188 | F: drivers/hwmon/smsc47b397.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5189 | |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 5190 | SMSC911x ETHERNET DRIVER |
| 5191 | P: Steve Glendinning |
| 5192 | M: steve.glendinning@smsc.com |
| 5193 | L: netdev@vger.kernel.org |
| 5194 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5195 | F: include/linux/smsc911x.h |
| 5196 | F: drivers/net/smsc911x.* |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 5197 | |
Steve Glendinning | 2cb3772 | 2008-12-11 20:54:30 -0800 | [diff] [blame] | 5198 | SMSC9420 PCI ETHERNET DRIVER |
| 5199 | P: Steve Glendinning |
| 5200 | M: steve.glendinning@smsc.com |
| 5201 | L: netdev@vger.kernel.org |
| 5202 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5203 | F: drivers/net/smsc9420.* |
Steve Glendinning | 2cb3772 | 2008-12-11 20:54:30 -0800 | [diff] [blame] | 5204 | |
Ben Nizette | b54f286 | 2008-03-13 22:27:30 +1100 | [diff] [blame] | 5205 | SMX UIO Interface |
| 5206 | P: Ben Nizette |
| 5207 | M: bn@niasdigital.com |
| 5208 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5209 | F: drivers/uio/uio_smx.c |
Ben Nizette | b54f286 | 2008-03-13 22:27:30 +1100 | [diff] [blame] | 5210 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5211 | SN-IA64 (Itanium) SUB-PLATFORM |
| 5212 | P: Jes Sorensen |
| 5213 | M: jes@sgi.com |
| 5214 | L: linux-altix@sgi.com |
| 5215 | L: linux-ia64@vger.kernel.org |
| 5216 | W: http://www.sgi.com/altix |
| 5217 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5218 | F: arch/ia64/sn/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5219 | |
Guennadi Liakhovetski | 668acf3 | 2008-07-19 07:54:43 -0300 | [diff] [blame] | 5220 | SOC-CAMERA V4L2 SUBSYSTEM |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5221 | P: Guennadi Liakhovetski |
| 5222 | M: g.liakhovetski@gmx.de |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 5223 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5224 | 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] | 5225 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5226 | F: include/media/v4l2* |
| 5227 | F: drivers/media/video/v4l2* |
Guennadi Liakhovetski | 668acf3 | 2008-07-19 07:54:43 -0300 | [diff] [blame] | 5228 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5229 | SOEKRIS NET48XX LED SUPPORT |
| 5230 | P: Chris Boot |
| 5231 | M: bootc@bootc.net |
| 5232 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5233 | F: drivers/leds/leds-net48xx.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5234 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5235 | SOFTWARE RAID (Multiple Disks) SUPPORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5236 | P: Neil Brown |
NeilBrown | 524418b | 2007-01-26 00:57:01 -0800 | [diff] [blame] | 5237 | M: neilb@suse.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5238 | L: linux-raid@vger.kernel.org |
NeilBrown | 524418b | 2007-01-26 00:57:01 -0800 | [diff] [blame] | 5239 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5240 | F: drivers/md/ |
| 5241 | F: include/linux/raid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5242 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5243 | SONIC NETWORK DRIVER |
| 5244 | P: Thomas Bogendoerfer |
| 5245 | M: tsbogend@alpha.franken.de |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 5246 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5247 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5248 | F: drivers/net/sonic.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5249 | |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 5250 | SONICS SILICON BACKPLANE DRIVER (SSB) |
| 5251 | P: Michael Buesch |
| 5252 | M: mb@bu3sch.de |
| 5253 | L: netdev@vger.kernel.org |
| 5254 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5255 | F: drivers/ssb/ |
| 5256 | F: include/linux/ssb/ |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 5257 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5258 | SONY VAIO CONTROL DEVICE DRIVER |
Mattia Dongili | 0d477fa | 2007-02-08 20:16:40 +0100 | [diff] [blame] | 5259 | P: Mattia Dongili |
| 5260 | M: malattia@linux.it |
Mattia Dongili | 5b18167 | 2007-03-12 21:43:57 +0100 | [diff] [blame] | 5261 | L: linux-acpi@vger.kernel.org |
| 5262 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5263 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5264 | F: Documentation/laptops/sony-laptop.txt |
| 5265 | F: drivers/char/sonypi.c |
| 5266 | F: drivers/platform/x86/sony-laptop.c |
| 5267 | F: include/linux/sony-laptop.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5268 | |
Alex Dubov | baf8532 | 2008-02-09 10:20:54 -0800 | [diff] [blame] | 5269 | SONY MEMORYSTICK CARD SUPPORT |
| 5270 | P: Alex Dubov |
| 5271 | M: oakad@yahoo.com |
| 5272 | L: linux-kernel@vger.kernel.org |
| 5273 | W: http://tifmxx.berlios.de/ |
| 5274 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5275 | F: drivers/memstick/host/tifm_ms.c |
Alex Dubov | baf8532 | 2008-02-09 10:20:54 -0800 | [diff] [blame] | 5276 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5277 | SOUND |
| 5278 | P: Jaroslav Kysela |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 5279 | M: perex@perex.cz |
Takashi Iwai | 281712f | 2008-08-19 13:10:04 +0200 | [diff] [blame] | 5280 | P: Takashi Iwai |
| 5281 | M: tiwai@suse.de |
Takashi Iwai | 8262204 | 2007-04-16 12:32:52 +0200 | [diff] [blame] | 5282 | L: alsa-devel@alsa-project.org (subscribers-only) |
Joe Perches | 3126a17 | 2009-04-15 23:38:45 -0700 | [diff] [blame] | 5283 | W: http://www.alsa-project.org/ |
| 5284 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git |
| 5285 | T: git git://git.alsa-project.org/alsa-kernel.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5286 | S: Maintained |
Joe Perches | 3126a17 | 2009-04-15 23:38:45 -0700 | [diff] [blame] | 5287 | F: Documentation/sound/ |
| 5288 | F: include/sound/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5289 | F: sound/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5290 | |
Mark Brown | bd903bd | 2008-11-19 19:16:05 +0000 | [diff] [blame] | 5291 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 5292 | P: Liam Girdwood |
Liam Girdwood | b0b8daf | 2008-09-18 14:36:37 +0100 | [diff] [blame] | 5293 | M: lrg@slimlogic.co.uk |
Mark Brown | 2cad0ad | 2008-01-10 14:33:07 +0100 | [diff] [blame] | 5294 | P: Mark Brown |
| 5295 | M: broonie@opensource.wolfsonmicro.com |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5296 | T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc |
Takashi Iwai | 8262204 | 2007-04-16 12:32:52 +0200 | [diff] [blame] | 5297 | L: alsa-devel@alsa-project.org (subscribers-only) |
Liam Girdwood | b0b8daf | 2008-09-18 14:36:37 +0100 | [diff] [blame] | 5298 | W: http://alsa-project.org/main/index.php/ASoC |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 5299 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5300 | F: sound/soc/ |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 5301 | |
Sam Ravnborg | 473321f | 2009-01-04 15:47:49 -0800 | [diff] [blame] | 5302 | SPARC + UltraSPARC (sparc/sparc64) |
| 5303 | P: David S. Miller |
| 5304 | M: davem@davemloft.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5305 | L: sparclinux@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5306 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git |
| 5307 | 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] | 5308 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5309 | F: arch/sparc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5310 | |
| 5311 | SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER |
| 5312 | P: Roger Wolff |
| 5313 | M: R.E.Wolff@BitWizard.nl |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 5314 | L: linux-kernel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5315 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5316 | F: Documentation/serial/specialix.txt |
| 5317 | F: drivers/char/specialix* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5318 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5319 | SPI SUBSYSTEM |
| 5320 | P: David Brownell |
| 5321 | M: dbrownell@users.sourceforge.net |
| 5322 | L: spi-devel-general@lists.sourceforge.net |
| 5323 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5324 | F: Documentation/spi/ |
| 5325 | F: drivers/spi/ |
| 5326 | F: include/linux/spi/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5327 | |
Jim Lewis | 2752e401 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 5328 | SPIDERNET NETWORK DRIVER for CELL |
Jens Osterkamp | cb8da8a | 2008-01-11 13:44:35 +0100 | [diff] [blame] | 5329 | P: Ishizaki Kou |
| 5330 | M: kou.ishizaki@toshiba.co.jp |
| 5331 | P: Jens Osterkamp |
| 5332 | M: jens@de.ibm.com |
Jim Lewis | 2752e401 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 5333 | L: netdev@vger.kernel.org |
| 5334 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5335 | F: Documentation/networking/spider_net.txt |
| 5336 | F: drivers/net/spider_net* |
Jim Lewis | 2752e401 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 5337 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5338 | SPU FILE SYSTEM |
| 5339 | P: Jeremy Kerr |
| 5340 | M: jk@ozlabs.org |
| 5341 | L: linuxppc-dev@ozlabs.org |
| 5342 | L: cbe-oss-dev@ozlabs.org |
| 5343 | W: http://www.ibm.com/developerworks/power/cell/ |
| 5344 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5345 | F: Documentation/filesystems/spufs.txt |
| 5346 | F: arch/powerpc/platforms/cell/spufs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5347 | |
Phillip Lougher | fc55584 | 2009-01-05 08:46:29 +0000 | [diff] [blame] | 5348 | SQUASHFS FILE SYSTEM |
| 5349 | P: Phillip Lougher |
| 5350 | M: phillip@lougher.demon.co.uk |
| 5351 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
| 5352 | W: http://squashfs.org.uk |
| 5353 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5354 | F: Documentation/filesystems/squashfs.txt |
| 5355 | F: fs/squashfs/ |
Phillip Lougher | fc55584 | 2009-01-05 08:46:29 +0000 | [diff] [blame] | 5356 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5357 | SRM (Alpha) environment access |
| 5358 | P: Jan-Benedict Glaw |
| 5359 | M: jbglaw@lug-owl.de |
| 5360 | L: linux-kernel@vger.kernel.org |
| 5361 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5362 | F: arch/alpha/kernel/srm_env.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5363 | |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 5364 | STABLE BRANCH |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5365 | P: Greg Kroah-Hartman |
| 5366 | M: greg@kroah.com |
| 5367 | P: Chris Wright |
| 5368 | M: chrisw@sous-sol.org |
| 5369 | L: stable@kernel.org |
| 5370 | S: Maintained |
| 5371 | |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 5372 | STAGING SUBSYSTEM |
| 5373 | P: Greg Kroah-Hartman |
| 5374 | M: gregkh@suse.de |
| 5375 | L: linux-kernel@vger.kernel.org |
| 5376 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
| 5377 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5378 | F: drivers/staging/ |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 5379 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5380 | STARFIRE/DURALAN NETWORK DRIVER |
| 5381 | P: Ion Badulescu |
| 5382 | M: ionut@cs.columbia.edu |
| 5383 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5384 | F: drivers/net/starfire* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5385 | |
| 5386 | STARMODE RADIO IP (STRIP) PROTOCOL DRIVER |
| 5387 | W: http://mosquitonet.Stanford.EDU/strip.html |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 5388 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5389 | F: drivers/net/wireless/strip.c |
| 5390 | F: include/linux/if_strip.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5391 | |
| 5392 | STRADIS MPEG-2 DECODER DRIVER |
| 5393 | P: Nathan Laredo |
| 5394 | M: laredo@gnu.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5395 | W: http://www.stradis.com/ |
| 5396 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5397 | F: drivers/media/video/stradis.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5398 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5399 | SUN3/3X |
| 5400 | P: Sam Creasey |
| 5401 | M: sammy@sammy.net |
| 5402 | W: http://sammy.net/sun3/ |
| 5403 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5404 | F: arch/m68k/kernel/*sun3* |
| 5405 | F: arch/m68k/sun3*/ |
| 5406 | F: arch/m68k/include/asm/sun3* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5407 | |
Paul Mundt | 2cbb12a | 2007-11-19 13:08:37 +0900 | [diff] [blame] | 5408 | SUPERH |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5409 | P: Paul Mundt |
| 5410 | M: lethal@linux-sh.org |
Paul Mundt | 2cbb12a | 2007-11-19 13:08:37 +0900 | [diff] [blame] | 5411 | L: linux-sh@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5412 | W: http://www.linux-sh.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5413 | 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] | 5414 | S: Supported |
Paul Mundt | 066069e | 2009-04-14 06:32:08 +0900 | [diff] [blame] | 5415 | F: Documentation/sh/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5416 | F: arch/sh/ |
Paul Mundt | 066069e | 2009-04-14 06:32:08 +0900 | [diff] [blame] | 5417 | F: drivers/sh/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5418 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 5419 | SUSPEND TO RAM |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5420 | P: Len Brown |
| 5421 | M: len.brown@intel.com |
| 5422 | P: Pavel Machek |
Pavel Machek | ef35ce2 | 2009-02-18 14:48:16 -0800 | [diff] [blame] | 5423 | M: pavel@ucw.cz |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5424 | P: Rafael J. Wysocki |
| 5425 | M: rjw@sisk.pl |
| 5426 | L: linux-pm@lists.linux-foundation.org |
| 5427 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5428 | F: Documentation/power/ |
| 5429 | F: arch/x86/kernel/acpi/ |
| 5430 | F: drivers/base/power/ |
| 5431 | F: kernel/power/ |
| 5432 | F: include/linux/suspend.h |
| 5433 | F: include/linux/freezer.h |
| 5434 | F: include/linux/pm.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5435 | |
| 5436 | SVGA HANDLING |
| 5437 | P: Martin Mares |
| 5438 | M: mj@ucw.cz |
| 5439 | L: linux-video@atrey.karlin.mff.cuni.cz |
| 5440 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5441 | F: Documentation/svga.txt |
| 5442 | F: arch/x86/boot/video* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5443 | |
| 5444 | SYSV FILESYSTEM |
| 5445 | P: Christoph Hellwig |
| 5446 | M: hch@infradead.org |
| 5447 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5448 | F: Documentation/filesystems/sysv-fs.txt |
| 5449 | F: fs/sysv/ |
| 5450 | F: include/linux/sysv_fs.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5451 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5452 | TASKSTATS STATISTICS INTERFACE |
Balbir Singh | abc5f23 | 2008-07-04 09:59:42 -0700 | [diff] [blame] | 5453 | P: Balbir Singh |
| 5454 | M: balbir@linux.vnet.ibm.com |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5455 | L: linux-kernel@vger.kernel.org |
| 5456 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5457 | F: Documentation/accounting/taskstats* |
| 5458 | F: include/linux/taskstats* |
| 5459 | F: kernel/taskstats.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5460 | |
Stephen Hemminger | 781b456a | 2006-07-10 20:25:29 -0700 | [diff] [blame] | 5461 | TC CLASSIFIER |
| 5462 | P: Jamal Hadi Salim |
| 5463 | M: hadi@cyberus.ca |
| 5464 | L: netdev@vger.kernel.org |
| 5465 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5466 | F: include/linux/pkt_cls.h |
| 5467 | F: include/net/pkt_cls.h |
| 5468 | F: net/sched/ |
Stephen Hemminger | 781b456a | 2006-07-10 20:25:29 -0700 | [diff] [blame] | 5469 | |
Wong Hoi Sing Edison | 5067f08 | 2006-09-13 20:31:13 -0700 | [diff] [blame] | 5470 | TCP LOW PRIORITY MODULE |
| 5471 | P: Wong Hoi Sing, Edison |
| 5472 | M: hswong3i@gmail.com |
| 5473 | P: Hung Hing Lun, Mike |
| 5474 | M: hlhung3i@gmail.com |
| 5475 | W: http://tcp-lp-mod.sourceforge.net/ |
| 5476 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5477 | F: net/ipv4/tcp_lp.c |
Wong Hoi Sing Edison | 5067f08 | 2006-09-13 20:31:13 -0700 | [diff] [blame] | 5478 | |
Andy Gospodarek | 1a348cc | 2007-09-17 18:50:36 -0700 | [diff] [blame] | 5479 | TEHUTI ETHERNET DRIVER |
| 5480 | P: Alexander Indenbaum |
| 5481 | M: baum@tehutinetworks.net |
| 5482 | P: Andy Gospodarek |
| 5483 | M: andy@greyhouse.net |
| 5484 | L: netdev@vger.kernel.org |
| 5485 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5486 | F: drivers/net/tehuti* |
Andy Gospodarek | 1a348cc | 2007-09-17 18:50:36 -0700 | [diff] [blame] | 5487 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5488 | Telecom Clock Driver for MCPL0010 |
| 5489 | P: Mark Gross |
| 5490 | M: mark.gross@intel.com |
| 5491 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5492 | F: drivers/char/tlclk.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5493 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 5494 | TENSILICA XTENSA PORT (xtensa) |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5495 | P: Chris Zankel |
| 5496 | M: chris@zankel.net |
| 5497 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5498 | F: arch/xtensa/ |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5499 | |
| 5500 | THINKPAD ACPI EXTRAS DRIVER |
| 5501 | P: Henrique de Moraes Holschuh |
| 5502 | M: ibm-acpi@hmh.eng.br |
| 5503 | L: ibm-acpi-devel@lists.sourceforge.net |
| 5504 | W: http://ibm-acpi.sourceforge.net |
| 5505 | W: http://thinkwiki.org/wiki/Ibm-acpi |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5506 | 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] | 5507 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5508 | F: drivers/platform/x86/thinkpad_acpi.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5509 | |
Alex Dubov | 4020f2d | 2006-10-04 02:15:37 -0700 | [diff] [blame] | 5510 | TI FLASH MEDIA INTERFACE DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5511 | P: Alex Dubov |
| 5512 | M: oakad@yahoo.com |
| 5513 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5514 | F: drivers/misc/tifm* |
| 5515 | F: drivers/mmc/host/tifm_sd.c |
| 5516 | F: include/linux/tifm.h |
Alex Dubov | 4020f2d | 2006-10-04 02:15:37 -0700 | [diff] [blame] | 5517 | |
Syed Khasim | 9f9c24f | 2007-05-16 01:07:22 +0200 | [diff] [blame] | 5518 | TI OMAP MMC INTERFACE DRIVER |
| 5519 | P: Carlos Aguiar, Anderson Briglia and Syed Khasim |
Dirk Behme | b6a7e4c | 2007-12-15 07:47:46 +0100 | [diff] [blame] | 5520 | M: linux-omap@vger.kernel.org |
Syed Khasim | 9f9c24f | 2007-05-16 01:07:22 +0200 | [diff] [blame] | 5521 | W: http://linux.omap.com |
| 5522 | W: http://www.muru.com/linux/omap/ |
| 5523 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5524 | F: drivers/mmc/host/omap.c |
Syed Khasim | 9f9c24f | 2007-05-16 01:07:22 +0200 | [diff] [blame] | 5525 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 5526 | TI OMAP RANDOM NUMBER GENERATOR SUPPORT |
| 5527 | P: Deepak Saxena |
| 5528 | M: dsaxena@plexity.net |
| 5529 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5530 | F: drivers/char/hw_random/omap-rng.c |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 5531 | |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5532 | TIPC NETWORK LAYER |
| 5533 | P: Per Liden |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 5534 | M: per.liden@ericsson.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5535 | P: Jon Maloy |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 5536 | M: jon.maloy@ericsson.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5537 | P: Allan Stephens |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 5538 | M: allan.stephens@windriver.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5539 | L: tipc-discussion@lists.sourceforge.net |
| 5540 | W: http://tipc.sourceforge.net/ |
| 5541 | W: http://tipc.cslab.ericsson.net/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5542 | T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5543 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5544 | F: include/linux/tipc*.h |
| 5545 | F: include/net/tipc/ |
| 5546 | F: net/tipc/ |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5547 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5548 | TLAN NETWORK DRIVER |
| 5549 | P: Samuel Chessman |
| 5550 | M: chessman@tux.org |
Gabriel Craciunescu | 88c07dd | 2007-11-22 19:43:36 +0800 | [diff] [blame] | 5551 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5552 | W: http://sourceforge.net/projects/tlan/ |
| 5553 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5554 | F: Documentation/networking/tlan.txt |
| 5555 | F: drivers/net/tlan.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5556 | |
Kentaro Takeda | d74db3b | 2009-02-05 17:18:18 +0900 | [diff] [blame] | 5557 | TOMOYO SECURITY MODULE |
| 5558 | P: Kentaro Takeda |
| 5559 | M: takedakn@nttdata.co.jp |
| 5560 | P: Tetsuo Handa |
| 5561 | M: penguin-kernel@I-love.SAKURA.ne.jp |
| 5562 | L: linux-kernel@vger.kernel.org (kernel issues) |
| 5563 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English) |
| 5564 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
| 5565 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) |
| 5566 | W: http://tomoyo.sourceforge.jp/ |
| 5567 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/ |
| 5568 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5569 | F: security/tomoyo/ |
Kentaro Takeda | d74db3b | 2009-02-05 17:18:18 +0900 | [diff] [blame] | 5570 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5571 | TOSHIBA ACPI EXTRAS DRIVER |
Johannes Berg | 1506553 | 2009-03-30 12:02:35 +0200 | [diff] [blame] | 5572 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5573 | F: drivers/platform/x86/toshiba_acpi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5574 | |
| 5575 | TOSHIBA SMM DRIVER |
| 5576 | P: Jonathan Buzzard |
| 5577 | M: jonathan@buzzard.org.uk |
| 5578 | L: tlinux-users@tce.toshiba-dme.co.jp |
| 5579 | W: http://www.buzzard.org.uk/toshiba/ |
| 5580 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5581 | F: drivers/char/toshiba.c |
| 5582 | F: include/linux/toshiba.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5583 | |
Pierre Ossman | d719f90 | 2009-03-24 21:06:09 +0100 | [diff] [blame] | 5584 | TMIO MMC DRIVER |
| 5585 | P: Ian Molton |
| 5586 | M: ian@mnementh.co.uk |
| 5587 | S: Maintained |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 5588 | F: drivers/mmc/host/tmio_mmc.* |
Pierre Ossman | d719f90 | 2009-03-24 21:06:09 +0100 | [diff] [blame] | 5589 | |
Hugh Dickins | 98f3260 | 2009-05-21 20:33:58 +0100 | [diff] [blame] | 5590 | TMPFS (SHMEM FILESYSTEM) |
| 5591 | P: Hugh Dickins |
| 5592 | M: hugh.dickins@tiscali.co.uk |
| 5593 | L: linux-mm@kvack.org |
| 5594 | S: Maintained |
| 5595 | F: include/linux/shmem_fs.h |
| 5596 | F: mm/shmem.c |
| 5597 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5598 | TPM DEVICE DRIVER |
Rajiv Andrade | 141c024 | 2008-07-21 14:21:37 -0700 | [diff] [blame] | 5599 | P: Debora Velarde |
| 5600 | M: debora@linux.vnet.ibm.com |
| 5601 | P: Rajiv Andrade |
| 5602 | M: srajiv@linux.vnet.ibm.com |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5603 | W: http://tpmdd.sourceforge.net |
| 5604 | P: Marcel Selhorst |
Marcel Selhorst | 7dcce13 | 2009-02-11 13:04:27 -0800 | [diff] [blame] | 5605 | M: m.selhorst@sirrix.com |
| 5606 | W: http://www.sirrix.com |
Rajiv Andrade | 63a10df | 2008-10-15 22:04:36 -0700 | [diff] [blame] | 5607 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5608 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5609 | F: drivers/char/tpm/ |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5610 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5611 | TRIVIAL PATCHES |
Jiri Kosina | 2b6a2f5 | 2008-11-14 11:55:03 +0100 | [diff] [blame] | 5612 | P: Jiri Kosina |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 5613 | M: trivial@kernel.org |
| 5614 | L: linux-kernel@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5615 | 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] | 5616 | S: Maintained |
| 5617 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5618 | TTY LAYER |
| 5619 | P: Alan Cox |
| 5620 | M: alan@lxorguk.ukuu.org.uk |
| 5621 | L: linux-kernel@vger.kernel.org |
| 5622 | S: Maintained |
| 5623 | |
Grant Grundler | 740db6d | 2008-02-17 11:53:49 -0700 | [diff] [blame] | 5624 | TULIP NETWORK DRIVERS |
| 5625 | P: Grant Grundler |
| 5626 | M: grundler@parisc-linux.org |
| 5627 | P: Kyle McMartin |
Kyle McMartin | 42a5a8a | 2008-06-06 17:16:17 -0400 | [diff] [blame] | 5628 | M: kyle@mcmartin.ca |
Grant Grundler | 740db6d | 2008-02-17 11:53:49 -0700 | [diff] [blame] | 5629 | L: netdev@vger.kernel.org |
| 5630 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5631 | F: drivers/net/tulip/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5632 | |
| 5633 | TUN/TAP driver |
| 5634 | P: Maxim Krasnyansky |
Dave Jones | 66777b7 | 2006-03-25 03:07:53 -0800 | [diff] [blame] | 5635 | M: maxk@qualcomm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5636 | L: vtun@office.satix.net |
| 5637 | W: http://vtun.sourceforge.net/tun |
| 5638 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5639 | F: Documentation/networking/tuntap.txt |
| 5640 | F: arch/um/os-Linux/drivers/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5641 | |
Maciej W. Rozycki | b454cc6 | 2007-02-05 16:28:25 -0800 | [diff] [blame] | 5642 | TURBOCHANNEL SUBSYSTEM |
| 5643 | P: Maciej W. Rozycki |
| 5644 | M: macro@linux-mips.org |
| 5645 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5646 | F: drivers/tc/ |
| 5647 | F: include/linux/tc.h |
Maciej W. Rozycki | b454cc6 | 2007-02-05 16:28:25 -0800 | [diff] [blame] | 5648 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5649 | U14-34F SCSI DRIVER |
| 5650 | P: Dario Ballabio |
| 5651 | M: ballabio_dario@emc.com |
| 5652 | L: linux-scsi@vger.kernel.org |
| 5653 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5654 | F: drivers/scsi/u14-34f.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5655 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5656 | UBI FILE SYSTEM (UBIFS) |
| 5657 | P: Artem Bityutskiy |
| 5658 | M: dedekind@infradead.org |
| 5659 | P: Adrian Hunter |
| 5660 | M: ext-adrian.hunter@nokia.com |
| 5661 | L: linux-mtd@lists.infradead.org |
Artem Bityutskiy | e2966cb | 2008-10-25 18:54:04 +0300 | [diff] [blame] | 5662 | T: git git://git.infradead.org/ubifs-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5663 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
| 5664 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5665 | F: Documentation/filesystems/ubifs.txt |
| 5666 | F: fs/ubifs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5667 | |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5668 | UCLINUX (AND M68KNOMMU) |
| 5669 | P: Greg Ungerer |
| 5670 | M: gerg@uclinux.org |
| 5671 | W: http://www.uclinux.org/ |
| 5672 | L: uclinux-dev@uclinux.org (subscribers-only) |
| 5673 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5674 | F: arch/m68knommu/ |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5675 | |
Robert P. J. Day | 14fadca | 2009-04-21 12:24:47 -0700 | [diff] [blame] | 5676 | UCLINUX FOR RENESAS H8/300 (H8300) |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5677 | P: Yoshinori Sato |
| 5678 | M: ysato@users.sourceforge.jp |
| 5679 | W: http://uclinux-h8.sourceforge.jp/ |
| 5680 | S: Supported |
| 5681 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5682 | UDF FILESYSTEM |
Jan Kara | 800fdfb | 2008-02-08 04:20:51 -0800 | [diff] [blame] | 5683 | P: Jan Kara |
| 5684 | M: jack@suse.cz |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5685 | W: http://linux-udf.sourceforge.net |
| 5686 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5687 | F: Documentation/filesystems/udf.txt |
| 5688 | F: fs/udf/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5689 | |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5690 | UFS FILESYSTEM |
| 5691 | P: Evgeniy Dushistov |
| 5692 | M: dushistov@mail.ru |
| 5693 | L: linux-kernel@vger.kernel.org |
| 5694 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5695 | F: Documentation/filesystems/ufs.txt |
| 5696 | F: fs/ufs/ |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5697 | |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 5698 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
| 5699 | P: David Vrabel |
| 5700 | M: david.vrabel@csr.com |
| 5701 | L: linux-usb@vger.kernel.org |
| 5702 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5703 | F: drivers/uwb/* |
| 5704 | F: include/linux/uwb.h |
| 5705 | F: include/linux/uwb/ |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 5706 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5707 | UNIFORM CDROM DRIVER |
| 5708 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 5709 | M: axboe@kernel.dk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5710 | L: linux-kernel@vger.kernel.org |
| 5711 | W: http://www.kernel.dk |
| 5712 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5713 | F: Documentation/cdrom/ |
| 5714 | F: drivers/cdrom/cdrom.c |
| 5715 | F: include/linux/cdrom.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5716 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5717 | UNSORTED BLOCK IMAGES (UBI) |
| 5718 | P: Artem Bityutskiy |
| 5719 | M: dedekind@infradead.org |
| 5720 | W: http://www.linux-mtd.infradead.org/ |
| 5721 | L: linux-mtd@lists.infradead.org |
Artem Bityutskiy | e2966cb | 2008-10-25 18:54:04 +0300 | [diff] [blame] | 5722 | T: git git://git.infradead.org/ubi-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5723 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 5724 | F: drivers/mtd/ubi/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5725 | F: include/linux/mtd/ubi.h |
| 5726 | F: include/mtd/ubi-user.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5727 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5728 | USB ACM DRIVER |
| 5729 | P: Oliver Neukum |
| 5730 | M: oliver@neukum.name |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 5731 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5732 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5733 | F: Documentation/usb/acm.txt |
| 5734 | F: drivers/usb/class/cdc-acm.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5735 | |
| 5736 | USB BLOCK DRIVER (UB ub) |
| 5737 | P: Pete Zaitcev |
| 5738 | M: zaitcev@redhat.com |
| 5739 | L: linux-kernel@vger.kernel.org |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5740 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5741 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5742 | F: drivers/block/ub.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5743 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5744 | USB CDC ETHERNET DRIVER |
| 5745 | P: Greg Kroah-Hartman |
| 5746 | M: greg@kroah.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5747 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5748 | S: Maintained |
| 5749 | W: http://www.kroah.com/linux-usb/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5750 | F: drivers/net/usb/cdc_*.c |
| 5751 | F: include/linux/usb/cdc.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5752 | |
Peter Korsgaard | b02b371 | 2008-04-27 08:59:44 +0200 | [diff] [blame] | 5753 | USB CYPRESS C67X00 DRIVER |
| 5754 | P: Peter Korsgaard |
| 5755 | M: jacmet@sunsite.dk |
| 5756 | L: linux-usb@vger.kernel.org |
| 5757 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5758 | F: drivers/usb/c67x00/ |
Peter Korsgaard | b02b371 | 2008-04-27 08:59:44 +0200 | [diff] [blame] | 5759 | |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 5760 | USB DAVICOM DM9601 DRIVER |
| 5761 | P: Peter Korsgaard |
| 5762 | M: jacmet@sunsite.dk |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 5763 | L: netdev@vger.kernel.org |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 5764 | W: http://www.linux-usb.org/usbnet |
| 5765 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5766 | F: drivers/net/usb/dm9601.c |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 5767 | |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5768 | USB DIAMOND RIO500 DRIVER |
| 5769 | P: Cesar Miquel |
| 5770 | M: miquel@df.uba.ar |
| 5771 | L: rio500-users@lists.sourceforge.net |
| 5772 | W: http://rio500.sourceforge.net |
| 5773 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5774 | F: drivers/usb/misc/rio500* |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5775 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5776 | USB EHCI DRIVER |
| 5777 | P: David Brownell |
| 5778 | M: dbrownell@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5779 | L: linux-usb@vger.kernel.org |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 5780 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5781 | F: Documentation/usb/ehci.txt |
| 5782 | F: drivers/usb/host/ehci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5783 | |
Luca Risolia | 7ce08c9 | 2006-01-11 02:06:59 +0000 | [diff] [blame] | 5784 | USB ET61X[12]51 DRIVER |
| 5785 | P: Luca Risolia |
| 5786 | M: luca.risolia@studio.unibo.it |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5787 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 5788 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5789 | 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] | 5790 | W: http://www.linux-projects.org |
| 5791 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5792 | F: drivers/media/video/et61x251/ |
Luca Risolia | 7ce08c9 | 2006-01-11 02:06:59 +0000 | [diff] [blame] | 5793 | |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 5794 | USB GADGET/PERIPHERAL SUBSYSTEM |
| 5795 | P: David Brownell |
| 5796 | M: dbrownell@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5797 | L: linux-usb@vger.kernel.org |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 5798 | W: http://www.linux-usb.org/gadget |
| 5799 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5800 | F: drivers/usb/gadget/ |
| 5801 | F: include/linux/usb/gadget* |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 5802 | |
Jiri Kosina | 2dea64b | 2007-07-11 12:12:11 +0200 | [diff] [blame] | 5803 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
Jiri Kosina | 641266fd | 2007-01-15 09:56:21 +0100 | [diff] [blame] | 5804 | P: Jiri Kosina |
| 5805 | M: jkosina@suse.cz |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5806 | L: linux-usb@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5807 | 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] | 5808 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5809 | F: Documentation/usb/hiddev.txt |
| 5810 | F: drivers/hid/usbhid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5811 | |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 5812 | USB ISP116X DRIVER |
| 5813 | P: Olav Kongas |
| 5814 | M: ok@artecdesign.ee |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5815 | L: linux-usb@vger.kernel.org |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 5816 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5817 | F: drivers/usb/host/isp116x* |
| 5818 | F: include/linux/usb/isp116x.h |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 5819 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5820 | USB KAWASAKI LSI DRIVER |
| 5821 | P: Oliver Neukum |
| 5822 | M: oliver@neukum.name |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5823 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5824 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5825 | F: drivers/usb/serial/kl5kusb105.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5826 | |
| 5827 | USB MASS STORAGE DRIVER |
| 5828 | P: Matthew Dharm |
| 5829 | M: mdharm-usb@one-eyed-alien.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5830 | L: linux-usb@vger.kernel.org |
Matthew Dharm | 8836aeb | 2005-12-04 22:03:47 -0800 | [diff] [blame] | 5831 | L: usb-storage@lists.one-eyed-alien.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5832 | S: Maintained |
| 5833 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5834 | F: drivers/usb/storage/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5835 | |
| 5836 | USB OHCI DRIVER |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 5837 | P: David Brownell |
| 5838 | M: dbrownell@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5839 | L: linux-usb@vger.kernel.org |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 5840 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5841 | F: Documentation/usb/ohci.txt |
| 5842 | F: drivers/usb/host/ohci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5843 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 5844 | USB OPTION-CARD DRIVER |
| 5845 | P: Matthias Urlichs |
| 5846 | M: smurf@smurf.noris.de |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5847 | L: linux-usb@vger.kernel.org |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 5848 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5849 | F: drivers/usb/serial/option.c |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 5850 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5851 | USB OV511 DRIVER |
| 5852 | P: Mark McClelland |
| 5853 | M: mmcclell@bigfoot.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5854 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5855 | W: http://alpha.dyndns.org/ov511/ |
| 5856 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5857 | F: drivers/media/video/ov511.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5858 | |
| 5859 | USB PEGASUS DRIVER |
| 5860 | P: Petko Manolov |
| 5861 | M: petkan@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5862 | L: linux-usb@vger.kernel.org |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 5863 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5864 | W: http://pegasus2.sourceforge.net/ |
| 5865 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5866 | F: drivers/net/usb/pegasus.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5867 | |
Pete Zaitcev | 73e4fb3 | 2007-06-21 15:18:35 -0700 | [diff] [blame] | 5868 | USB PRINTER DRIVER (usblp) |
| 5869 | P: Pete Zaitcev |
| 5870 | M: zaitcev@redhat.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5871 | L: linux-usb@vger.kernel.org |
Pete Zaitcev | 73e4fb3 | 2007-06-21 15:18:35 -0700 | [diff] [blame] | 5872 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5873 | F: drivers/usb/class/usblp.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5874 | |
| 5875 | USB RTL8150 DRIVER |
| 5876 | P: Petko Manolov |
| 5877 | M: petkan@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5878 | L: linux-usb@vger.kernel.org |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 5879 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5880 | W: http://pegasus2.sourceforge.net/ |
| 5881 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5882 | F: drivers/net/usb/rtl8150.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5883 | |
| 5884 | USB SE401 DRIVER |
| 5885 | P: Jeroen Vreeken |
| 5886 | M: pe1rxq@amsat.org |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5887 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5888 | W: http://www.chello.nl/~j.vreeken/se401/ |
| 5889 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5890 | F: Documentation/video4linux/se401.txt |
| 5891 | F: drivers/media/video/se401.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5892 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5893 | USB SERIAL BELKIN F5U103 DRIVER |
| 5894 | P: William Greathouse |
| 5895 | M: wgreathouse@smva.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5896 | L: linux-usb@vger.kernel.org |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5897 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5898 | F: drivers/usb/serial/belkin_sa.* |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5899 | |
| 5900 | USB SERIAL CYPRESS M8 DRIVER |
| 5901 | P: Lonnie Mendez |
| 5902 | M: dignome@gmail.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5903 | L: linux-usb@vger.kernel.org |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5904 | S: Maintained |
| 5905 | W: http://geocities.com/i0xox0i |
| 5906 | W: http://firstlight.net/cvs |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5907 | F: drivers/usb/serial/cypress_m8.* |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5908 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5909 | USB SERIAL CYBERJACK DRIVER |
| 5910 | P: Matthias Bruestle and Harald Welte |
| 5911 | M: support@reiner-sct.com |
| 5912 | W: http://www.reiner-sct.de/support/treiber_cyberjack.php |
| 5913 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5914 | F: drivers/usb/serial/cyberjack.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5915 | |
| 5916 | USB SERIAL DIGI ACCELEPORT DRIVER |
| 5917 | P: Peter Berger and Al Borchers |
| 5918 | M: pberger@brimson.com |
| 5919 | M: alborchers@steinerpoint.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5920 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5921 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5922 | F: drivers/usb/serial/digi_acceleport.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5923 | |
| 5924 | USB SERIAL DRIVER |
| 5925 | P: Greg Kroah-Hartman |
| 5926 | M: gregkh@suse.de |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5927 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5928 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5929 | F: Documentation/usb/usb-serial.txt |
| 5930 | F: drivers/usb/serial/generic.c |
| 5931 | F: drivers/usb/serial/usb-serial.c |
| 5932 | F: include/linux/usb/serial.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5933 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5934 | USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER |
| 5935 | P: Gary Brubaker |
| 5936 | M: xavyer@ix.netcom.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5937 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5938 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5939 | F: drivers/usb/serial/empeg.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5940 | |
| 5941 | USB SERIAL KEYSPAN DRIVER |
| 5942 | P: Greg Kroah-Hartman |
| 5943 | M: greg@kroah.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5944 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5945 | W: http://www.kroah.com/linux/ |
| 5946 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5947 | F: drivers/usb/serial/*keyspan* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5948 | |
| 5949 | USB SERIAL WHITEHEAT DRIVER |
Stuart MacDonald | 8bc8493 | 2007-05-04 16:00:03 -0400 | [diff] [blame] | 5950 | P: Support Department |
| 5951 | M: support@connecttech.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5952 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5953 | W: http://www.connecttech.com |
| 5954 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5955 | F: drivers/usb/serial/whiteheat* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5956 | |
Steve Glendinning | 2f7ca80 | 2008-10-02 05:27:57 +0000 | [diff] [blame] | 5957 | USB SMSC95XX ETHERNET DRIVER |
| 5958 | P: Steve Glendinning |
| 5959 | M: steve.glendinning@smsc.com |
| 5960 | L: netdev@vger.kernel.org |
| 5961 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5962 | F: drivers/net/usb/smsc95xx.* |
Steve Glendinning | 2f7ca80 | 2008-10-02 05:27:57 +0000 | [diff] [blame] | 5963 | |
Luca Risolia | f423b9a | 2007-03-26 16:12:04 -0300 | [diff] [blame] | 5964 | USB SN9C1xx DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5965 | P: Luca Risolia |
| 5966 | M: luca.risolia@studio.unibo.it |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5967 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 5968 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5969 | 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] | 5970 | W: http://www.linux-projects.org |
| 5971 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5972 | F: Documentation/video4linux/sn9c102.txt |
| 5973 | F: drivers/media/video/sn9c102/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5974 | |
| 5975 | USB SUBSYSTEM |
| 5976 | P: Greg Kroah-Hartman |
| 5977 | M: gregkh@suse.de |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5978 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5979 | W: http://www.linux-usb.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 5980 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5981 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5982 | F: Documentation/usb/ |
| 5983 | F: drivers/net/usb/ |
| 5984 | F: drivers/usb/ |
| 5985 | F: include/linux/usb.h |
| 5986 | F: include/linux/usb/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5987 | |
| 5988 | USB UHCI DRIVER |
| 5989 | P: Alan Stern |
| 5990 | M: stern@rowland.harvard.edu |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5991 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5992 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5993 | F: drivers/usb/host/uhci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5994 | |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 5995 | USB "USBNET" DRIVER FRAMEWORK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5996 | P: David Brownell |
| 5997 | M: dbrownell@users.sourceforge.net |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 5998 | L: netdev@vger.kernel.org |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 5999 | W: http://www.linux-usb.org/usbnet |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6000 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6001 | F: drivers/net/usb/usbnet.c |
| 6002 | F: include/linux/usb/usbnet.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6003 | |
Laurent Pinchart | c0efd23 | 2008-06-30 15:04:50 -0300 | [diff] [blame] | 6004 | USB VIDEO CLASS |
| 6005 | P: Laurent Pinchart |
| 6006 | M: laurent.pinchart@skynet.be |
Jiri Slaby | a67534a | 2008-12-10 09:09:27 -0300 | [diff] [blame] | 6007 | L: linux-uvc-devel@lists.berlios.de (subscribers-only) |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6008 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6009 | 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] | 6010 | W: http://linux-uvc.berlios.de |
| 6011 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6012 | F: drivers/media/video/uvc/ |
Laurent Pinchart | c0efd23 | 2008-06-30 15:04:50 -0300 | [diff] [blame] | 6013 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6014 | USB W996[87]CF DRIVER |
| 6015 | P: Luca Risolia |
| 6016 | M: luca.risolia@studio.unibo.it |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6017 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6018 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6019 | 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] | 6020 | W: http://www.linux-projects.org |
| 6021 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6022 | F: Documentation/video4linux/w9968cf.txt |
| 6023 | F: drivers/media/video/w996* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6024 | |
Jussi Kivilinna | bf164cc | 2008-01-26 00:51:51 +0200 | [diff] [blame] | 6025 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
| 6026 | P: Jussi Kivilinna |
| 6027 | M: jussi.kivilinna@mbnet.fi |
| 6028 | L: linux-wireless@vger.kernel.org |
| 6029 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6030 | F: drivers/net/wireless/rndis_wlan.c |
Jussi Kivilinna | bf164cc | 2008-01-26 00:51:51 +0200 | [diff] [blame] | 6031 | |
Luca Risolia | 60f7805 | 2006-02-06 16:29:35 +0000 | [diff] [blame] | 6032 | USB ZC0301 DRIVER |
| 6033 | P: Luca Risolia |
| 6034 | M: luca.risolia@studio.unibo.it |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6035 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6036 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6037 | 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] | 6038 | W: http://www.linux-projects.org |
| 6039 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6040 | F: Documentation/video4linux/zc0301.txt |
| 6041 | F: drivers/media/video/zc0301/ |
Luca Risolia | 60f7805 | 2006-02-06 16:29:35 +0000 | [diff] [blame] | 6042 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6043 | USB ZD1201 DRIVER |
| 6044 | P: Jeroen Vreeken |
| 6045 | M: pe1rxq@amsat.org |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6046 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6047 | W: http://linux-lc100020.sourceforge.net |
| 6048 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6049 | F: drivers/net/wireless/zd1201.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6050 | |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 6051 | USB ZR364XX DRIVER |
| 6052 | P: Antoine Jacquet |
| 6053 | M: royale@zerezo.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6054 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6055 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6056 | 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] | 6057 | W: http://royale.zerezo.com/zr364xx/ |
| 6058 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6059 | F: Documentation/video4linux/zr364xx.txt |
| 6060 | F: drivers/media/video/zr364xx.c |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 6061 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 6062 | USER-MODE LINUX (UML) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6063 | P: Jeff Dike |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 6064 | M: jdike@addtoit.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6065 | L: user-mode-linux-devel@lists.sourceforge.net |
| 6066 | L: user-mode-linux-user@lists.sourceforge.net |
| 6067 | W: http://user-mode-linux.sourceforge.net |
| 6068 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6069 | F: Documentation/uml/ |
| 6070 | F: arch/um/ |
| 6071 | F: fs/hostfs/ |
| 6072 | F: fs/hppfs/ |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 6073 | |
Hans-Jürgen Koch | e5f114e | 2007-12-05 15:08:07 +0100 | [diff] [blame] | 6074 | USERSPACE I/O (UIO) |
| 6075 | P: Hans J. Koch |
| 6076 | M: hjk@linutronix.de |
| 6077 | P: Greg Kroah-Hartman |
| 6078 | M: gregkh@suse.de |
| 6079 | L: linux-kernel@vger.kernel.org |
| 6080 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6081 | F: Documentation/DocBook/uio-howto.tmpl |
| 6082 | F: drivers/uio/ |
| 6083 | F: include/linux/uio*.h |
Hans-Jürgen Koch | e5f114e | 2007-12-05 15:08:07 +0100 | [diff] [blame] | 6084 | |
Karel Zak | f899b0a | 2008-05-23 13:04:21 -0700 | [diff] [blame] | 6085 | UTIL-LINUX-NG PACKAGE |
| 6086 | P: Karel Zak |
| 6087 | M: kzak@redhat.com |
| 6088 | L: util-linux-ng@vger.kernel.org |
| 6089 | W: http://kernel.org/~kzak/util-linux-ng/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6090 | 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] | 6091 | S: Maintained |
| 6092 | |
Michal Januszewski | c1fd1c0 | 2008-10-15 22:03:48 -0700 | [diff] [blame] | 6093 | UVESAFB DRIVER |
| 6094 | P: Michal Januszewski |
| 6095 | M: spock@gentoo.org |
| 6096 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 6097 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
| 6098 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6099 | F: Documentation/fb/uvesafb.txt |
| 6100 | F: drivers/video/uvesafb.* |
Michal Januszewski | c1fd1c0 | 2008-10-15 22:03:48 -0700 | [diff] [blame] | 6101 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 6102 | VFAT/FAT/MSDOS FILESYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6103 | P: OGAWA Hirofumi |
| 6104 | M: hirofumi@mail.parknet.co.jp |
| 6105 | L: linux-kernel@vger.kernel.org |
| 6106 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6107 | F: Documentation/filesystems/vfat.txt |
| 6108 | F: fs/fat/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6110 | VIA RHINE NETWORK DRIVER |
| 6111 | P: Roger Luethi |
| 6112 | M: rl@hellgate.ch |
| 6113 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6114 | F: drivers/net/via-rhine.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6115 | |
Jean Delvare | 32c0a52 | 2005-09-22 21:47:58 +0200 | [diff] [blame] | 6116 | VIAPRO SMBUS DRIVER |
| 6117 | P: Jean Delvare |
| 6118 | M: khali@linux-fr.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 6119 | L: linux-i2c@vger.kernel.org |
Jean Delvare | 32c0a52 | 2005-09-22 21:47:58 +0200 | [diff] [blame] | 6120 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6121 | F: Documentation/i2c/busses/i2c-viapro |
| 6122 | F: drivers/i2c/busses/i2c-viapro.c |
Jean Delvare | 32c0a52 | 2005-09-22 21:47:58 +0200 | [diff] [blame] | 6123 | |
Joseph Chan | 69e4a7c | 2008-10-15 22:03:31 -0700 | [diff] [blame] | 6124 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
| 6125 | P: Joseph Chan |
| 6126 | M: JosephChan@via.com.tw |
| 6127 | P: Scott Fang |
| 6128 | M: ScottFang@viatech.com.cn |
| 6129 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 6130 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6131 | F: drivers/video/via/ |
Joseph Chan | 69e4a7c | 2008-10-15 22:03:31 -0700 | [diff] [blame] | 6132 | |
Francois Romieu | 01f2073 | 2007-01-26 00:57:17 -0800 | [diff] [blame] | 6133 | VIA VELOCITY NETWORK DRIVER |
| 6134 | P: Francois Romieu |
| 6135 | M: romieu@fr.zoreil.com |
| 6136 | L: netdev@vger.kernel.org |
| 6137 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6138 | F: drivers/net/via-velocity.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6139 | |
Patrick McHardy | be7f827 | 2007-10-23 20:26:36 -0700 | [diff] [blame] | 6140 | VLAN (802.1Q) |
| 6141 | P: Patrick McHardy |
| 6142 | M: kaber@trash.net |
| 6143 | L: netdev@vger.kernel.org |
| 6144 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6145 | F: drivers/net/macvlan.c |
| 6146 | F: include/linux/if_*vlan.h |
| 6147 | F: net/8021q/ |
Patrick McHardy | be7f827 | 2007-10-23 20:26:36 -0700 | [diff] [blame] | 6148 | |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 6149 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
| 6150 | P: Liam Girdwood |
Liam Girdwood | 8a62ab4 | 2008-09-14 17:40:21 +0100 | [diff] [blame] | 6151 | M: lrg@slimlogic.co.uk |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 6152 | P: Mark Brown |
| 6153 | M: broonie@opensource.wolfsonmicro.com |
| 6154 | W: http://opensource.wolfsonmicro.com/node/15 |
Liam Girdwood | 1dd68f0 | 2009-02-02 21:43:31 +0000 | [diff] [blame] | 6155 | W: http://www.slimlogic.co.uk/?p=48 |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6156 | 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] | 6157 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6158 | F: drivers/regulator/ |
| 6159 | F: include/linux/regulator/ |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 6160 | |
Juerg Haefliger | ab41319 | 2006-09-24 20:54:04 +0200 | [diff] [blame] | 6161 | VT1211 HARDWARE MONITOR DRIVER |
| 6162 | P: Juerg Haefliger |
| 6163 | M: juergh@gmail.com |
| 6164 | L: lm-sensors@lm-sensors.org |
| 6165 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6166 | F: Documentation/hwmon/vt1211 |
| 6167 | F: drivers/hwmon/vt1211.c |
Juerg Haefliger | ab41319 | 2006-09-24 20:54:04 +0200 | [diff] [blame] | 6168 | |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 6169 | VT8231 HARDWARE MONITOR DRIVER |
| 6170 | P: Roger Lucas |
Roger Lucas | af86576 | 2008-02-13 07:52:06 -0500 | [diff] [blame] | 6171 | M: vt8231@hiddenengine.co.uk |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 6172 | L: lm-sensors@lm-sensors.org |
| 6173 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6174 | F: drivers/hwmon/vt8231.c |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 6175 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6176 | W1 DALLAS'S 1-WIRE BUS |
| 6177 | P: Evgeniy Polyakov |
| 6178 | M: johnpol@2ka.mipt.ru |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6179 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6180 | F: Documentation/w1/ |
| 6181 | F: drivers/w1/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6182 | |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 6183 | W83791D HARDWARE MONITORING DRIVER |
Marc Hulsman | 25845c2 | 2008-06-08 10:59:41 -0400 | [diff] [blame] | 6184 | P: Marc Hulsman |
| 6185 | M: m.hulsman@tudelft.nl |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 6186 | L: lm-sensors@lm-sensors.org |
Marc Hulsman | 25845c2 | 2008-06-08 10:59:41 -0400 | [diff] [blame] | 6187 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6188 | F: Documentation/hwmon/w83791d |
| 6189 | F: drivers/hwmon/w83791d.c |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 6190 | |
Rudolf Marek | 61db011 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 6191 | W83793 HARDWARE MONITORING DRIVER |
| 6192 | P: Rudolf Marek |
| 6193 | M: r.marek@assembler.cz |
| 6194 | L: lm-sensors@lm-sensors.org |
| 6195 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6196 | F: Documentation/hwmon/w83793 |
| 6197 | F: drivers/hwmon/w83793.c |
Rudolf Marek | 61db011 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 6198 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6199 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
| 6200 | P: Pierre Ossman |
Pierre Ossman | 32710e8 | 2009-04-08 20:14:54 +0200 | [diff] [blame] | 6201 | M: pierre@ossman.eu |
Pierre Ossman | fac8899 | 2007-01-27 13:18:26 +0100 | [diff] [blame] | 6202 | L: linux-kernel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6203 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6204 | F: drivers/mmc/host/wbsd.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6205 | |
Wim Van Sebroeck | 3527761 | 2006-01-15 21:21:14 +0100 | [diff] [blame] | 6206 | WATCHDOG DEVICE DRIVERS |
| 6207 | P: Wim Van Sebroeck |
| 6208 | M: wim@iguana.be |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6209 | 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] | 6210 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6211 | F: Documentation/watchdog/ |
| 6212 | F: drivers/watchdog/ |
| 6213 | F: include/linux/watchdog.h |
Wim Van Sebroeck | 3527761 | 2006-01-15 21:21:14 +0100 | [diff] [blame] | 6214 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6215 | WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS |
| 6216 | P: Jean Tourrilhes |
| 6217 | M: jt@hpl.hp.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 6218 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6219 | W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/ |
| 6220 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6221 | F: Documentation/networking/wavelan.txt |
| 6222 | F: drivers/net/wireless/wavelan* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6223 | |
| 6224 | WD7000 SCSI DRIVER |
| 6225 | P: Miroslav Zagorac |
| 6226 | M: zaga@fly.cc.fer.hr |
| 6227 | L: linux-scsi@vger.kernel.org |
| 6228 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6229 | F: drivers/scsi/wd7000.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6230 | |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 6231 | WIMAX STACK |
| 6232 | P: Inaky Perez-Gonzalez |
| 6233 | M: inaky.perez-gonzalez@intel.com |
| 6234 | M: linux-wimax@intel.com |
| 6235 | L: wimax@linuxwimax.org |
| 6236 | S: Supported |
| 6237 | W: http://linuxwimax.org |
| 6238 | |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 6239 | WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM |
| 6240 | P: David Vrabel |
| 6241 | M: david.vrabel@csr.com |
| 6242 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6243 | F: include/linux/wlp.h |
| 6244 | F: drivers/uwb/wlp/ |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 6245 | |
Dmitry Torokhov | 5fc14680 | 2005-11-20 00:50:06 -0500 | [diff] [blame] | 6246 | WISTRON LAPTOP BUTTON DRIVER |
| 6247 | P: Miloslav Trmac |
| 6248 | M: mitr@volny.cz |
| 6249 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6250 | F: drivers/input/misc/wistron_btns.c |
Dmitry Torokhov | 5fc14680 | 2005-11-20 00:50:06 -0500 | [diff] [blame] | 6251 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6252 | WL3501 WIRELESS PCMCIA CARD DRIVER |
| 6253 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 6254 | M: acme@ghostprotocols.net |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 6255 | L: linux-wireless@vger.kernel.org |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 6256 | W: http://oops.ghostprotocols.net:81/blog |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6257 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6258 | F: drivers/net/wireless/wl3501* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6259 | |
Mark Brown | febf1df | 2008-04-02 00:51:09 -0400 | [diff] [blame] | 6260 | WM97XX TOUCHSCREEN DRIVERS |
| 6261 | P: Mark Brown |
| 6262 | M: broonie@opensource.wolfsonmicro.com |
| 6263 | P: Liam Girdwood |
Liam Girdwood | b8d055a | 2008-10-13 23:00:15 -0400 | [diff] [blame] | 6264 | M: lrg@slimlogic.co.uk |
Mark Brown | febf1df | 2008-04-02 00:51:09 -0400 | [diff] [blame] | 6265 | L: linux-input@vger.kernel.org |
| 6266 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch |
| 6267 | W: http://opensource.wolfsonmicro.com/node/7 |
| 6268 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6269 | F: drivers/input/touchscreen/*wm97* |
| 6270 | F: include/linux/wm97xx.h |
Mark Brown | febf1df | 2008-04-02 00:51:09 -0400 | [diff] [blame] | 6271 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6272 | X.25 NETWORK LAYER |
| 6273 | P: Henner Eisen |
| 6274 | M: eis@baty.hanse.de |
| 6275 | L: linux-x25@vger.kernel.org |
| 6276 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6277 | F: Documentation/networking/x25* |
| 6278 | F: include/net/x25* |
| 6279 | F: net/x25/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6280 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6281 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
| 6282 | P: Thomas Gleixner |
| 6283 | M: tglx@linutronix.de |
| 6284 | P: Ingo Molnar |
| 6285 | M: mingo@redhat.com |
| 6286 | P: H. Peter Anvin |
| 6287 | M: hpa@zytor.com |
H. Peter Anvin | bcde563 | 2009-02-02 21:42:40 -0800 | [diff] [blame] | 6288 | M: x86@kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6289 | L: linux-kernel@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6290 | 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] | 6291 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6292 | F: Documentation/x86/ |
| 6293 | F: arch/x86/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6294 | |
Jeremy Fitzhardinge | 4cdf6bc | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 6295 | XEN HYPERVISOR INTERFACE |
| 6296 | P: Jeremy Fitzhardinge |
| 6297 | M: jeremy@xensource.com |
| 6298 | P: Chris Wright |
| 6299 | M: chrisw@sous-sol.org |
| 6300 | L: virtualization@lists.osdl.org |
| 6301 | L: xen-devel@lists.xensource.com |
| 6302 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6303 | F: arch/x86/xen/ |
| 6304 | F: drivers/*/xen-*front.c |
| 6305 | F: drivers/xen/ |
| 6306 | F: arch/x86/include/asm/xen/ |
| 6307 | F: include/xen/ |
Jeremy Fitzhardinge | 4cdf6bc | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 6308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6309 | XFS FILESYSTEM |
| 6310 | P: Silicon Graphics Inc |
Felix Blyakher | b58a4cc | 2009-02-03 15:37:18 -0600 | [diff] [blame] | 6311 | P: Felix Blyakher |
| 6312 | M: felixb@sgi.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6313 | M: xfs-masters@oss.sgi.com |
Nathan Scott | d7ede1a | 2006-06-13 16:28:11 +1000 | [diff] [blame] | 6314 | L: xfs@oss.sgi.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6315 | W: http://oss.sgi.com/projects/xfs |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6316 | T: git git://oss.sgi.com/xfs/xfs.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6317 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6318 | F: Documentation/filesystems/xfs.txt |
| 6319 | F: fs/xfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6320 | |
Grant Likely | c9d3d8e | 2007-10-01 16:33:51 +0200 | [diff] [blame] | 6321 | XILINX SYSTEMACE DRIVER |
| 6322 | P: Grant Likely |
| 6323 | M: grant.likely@secretlab.ca |
| 6324 | W: http://www.secretlab.ca/ |
| 6325 | L: linux-kernel@vger.kernel.org |
| 6326 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6327 | F: drivers/block/xsysace.c |
Grant Likely | c9d3d8e | 2007-10-01 16:33:51 +0200 | [diff] [blame] | 6328 | |
Peter Korsgaard | 238b872 | 2006-12-06 20:35:17 -0800 | [diff] [blame] | 6329 | XILINX UARTLITE SERIAL DRIVER |
| 6330 | P: Peter Korsgaard |
| 6331 | M: jacmet@sunsite.dk |
| 6332 | L: linux-serial@vger.kernel.org |
| 6333 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6334 | F: drivers/serial/uartlite.c |
Peter Korsgaard | 238b872 | 2006-12-06 20:35:17 -0800 | [diff] [blame] | 6335 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6336 | YAM DRIVER FOR AX.25 |
| 6337 | P: Jean-Paul Roubelat |
| 6338 | M: jpr@f6fbb.org |
| 6339 | L: linux-hams@vger.kernel.org |
| 6340 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6341 | F: drivers/net/hamradio/yam* |
| 6342 | F: include/linux/yam.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6343 | |
Henk | af64a5e | 2005-10-12 15:02:56 +0200 | [diff] [blame] | 6344 | YEALINK PHONE DRIVER |
| 6345 | P: Henk Vergonet |
| 6346 | M: Henk.Vergonet@gmail.com |
| 6347 | L: usbb2k-api-dev@nongnu.org |
| 6348 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6349 | F: Documentation/input/yealink.txt |
| 6350 | F: drivers/input/misc/yealink.* |
Henk | af64a5e | 2005-10-12 15:02:56 +0200 | [diff] [blame] | 6351 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6352 | Z8530 DRIVER FOR AX.25 |
| 6353 | P: Joerg Reuter |
| 6354 | M: jreuter@yaina.de |
| 6355 | W: http://yaina.de/jreuter/ |
| 6356 | W: http://www.qsl.net/dl1bke/ |
| 6357 | L: linux-hams@vger.kernel.org |
| 6358 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6359 | F: Documentation/networking/z8530drv.txt |
| 6360 | F: drivers/net/hamradio/*scc.c |
| 6361 | F: drivers/net/hamradio/z8530.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6362 | |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 6363 | ZD1211RW WIRELESS DRIVER |
| 6364 | P: Daniel Drake |
| 6365 | M: dsd@gentoo.org |
| 6366 | P: Ulrich Kunitz |
| 6367 | M: kune@deine-taler.de |
| 6368 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 6369 | L: linux-wireless@vger.kernel.org |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 6370 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
| 6371 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6372 | F: drivers/net/wireless/zd1211rw/ |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 6373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6374 | ZR36067 VIDEO FOR LINUX DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6375 | L: mjpeg-users@lists.sourceforge.net |
Trent Piepho | f63145e | 2009-01-24 20:52:41 -0300 | [diff] [blame] | 6376 | L: linux-media@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6377 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
Trent Piepho | f63145e | 2009-01-24 20:52:41 -0300 | [diff] [blame] | 6378 | T: Mercurial http://linuxtv.org/hg/v4l-dvb |
| 6379 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6380 | F: drivers/media/video/zoran/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6381 | |
Maciej W. Rozycki | 8b4a408 | 2007-07-18 00:49:11 -0700 | [diff] [blame] | 6382 | ZS DECSTATION Z85C30 SERIAL DRIVER |
| 6383 | P: Maciej W. Rozycki |
| 6384 | M: macro@linux-mips.org |
| 6385 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6386 | F: drivers/serial/zs.* |
Maciej W. Rozycki | 8b4a408 | 2007-07-18 00:49:11 -0700 | [diff] [blame] | 6387 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6388 | THE REST |
| 6389 | P: Linus Torvalds |
Joe Perches | cfe81f7 | 2009-04-07 21:09:58 -0700 | [diff] [blame] | 6390 | 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] | 6391 | S: Buried alive in reporters |